diff options
Diffstat (limited to 'scripts/live-bottom/20xconfig')
| -rwxr-xr-x | scripts/live-bottom/20xconfig | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/scripts/live-bottom/20xconfig b/scripts/live-bottom/20xconfig index a662333..161215b 100755 --- a/scripts/live-bottom/20xconfig +++ b/scripts/live-bottom/20xconfig @@ -1,24 +1,30 @@ #!/bin/sh -PREREQ="" -DESCRIPTION="Configuring X..." +#set -e -. /scripts/live-functions +# initramfs-tools header + +PREREQ="" prereqs() { - echo "$PREREQ" + echo "${PREREQ}" } -case $1 in -# get pre-requisites -prereqs) - prereqs - exit 0 - ;; +case "${1}" in + prereqs) + prereqs + exit 0 + ;; esac -log_begin_msg "$DESCRIPTION" +# live-initramfs header + +. /scripts/live-functions + +log_begin_msg "Configuring X..." + +# live-initramfs script if [ "$TERM_TYPE" = "serial" ]; then # Don't bother trying to configure or start X on a serial console |
