diff options
Diffstat (limited to 'modules.d')
-rwxr-xr-x | modules.d/95dasd/module-setup.sh | 2 | ||||
-rwxr-xr-x | modules.d/95dasd/parse-dasd.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/modules.d/95dasd/module-setup.sh b/modules.d/95dasd/module-setup.sh index 88dfc6d5..74efc7b2 100755 --- a/modules.d/95dasd/module-setup.sh +++ b/modules.d/95dasd/module-setup.sh @@ -18,7 +18,7 @@ installkernel() { install() { inst_hook cmdline 30 "$moddir/parse-dasd.sh" - dracut_install tr dasdinfo dasdconf.sh + dracut_install tr dasdinfo dasdconf.sh normalize_dasd_arg if [[ $hostonly ]]; then inst /etc/dasd.conf fi diff --git a/modules.d/95dasd/parse-dasd.sh b/modules.d/95dasd/parse-dasd.sh index 4aeecd5d..b3d18fa2 100755 --- a/modules.d/95dasd/parse-dasd.sh +++ b/modules.d/95dasd/parse-dasd.sh @@ -1,10 +1,10 @@ #!/bin/sh # -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*- # ex: ts=8 sw=4 sts=4 et filetype=sh -for dasd_arg in $(getargs rd.dasd 'rd_DASD='); do +for dasd_arg in $(getargs rd.dasd= rd_DASD= DASD=); do ( IFS="," set $dasd_arg - echo "$@" >> /etc/dasd.conf + echo "$@" | normalize_dasd_arg >> /etc/dasd.conf ) done |