diff options
Diffstat (limited to 'scripts/live-bottom/19keyboard')
| -rwxr-xr-x | scripts/live-bottom/19keyboard | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/scripts/live-bottom/19keyboard b/scripts/live-bottom/19keyboard index 31cdfaa..4bc7c3f 100755 --- a/scripts/live-bottom/19keyboard +++ b/scripts/live-bottom/19keyboard @@ -1,24 +1,30 @@ #!/bin/sh -PREREQ="" -DESCRIPTION="Setting up console keyboard..." +#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 "Setting up console keyboard..." + +# live-initramfs script kbd= cslayout= |
