From e3dd6e6b0b6b2e06cd5b42c25b3bd2320c2af530 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Fri, 18 Aug 2006 16:39:49 +0000 Subject: 'upgpkg: removed unneeded base hook, updated init to use replace' git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@160 880c04e9-e011-0410-abf7-b926e227c9cd --- init | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) (limited to 'init') diff --git a/init b/init index b12f269..8faab99 100644 --- a/init +++ b/init @@ -20,22 +20,26 @@ for cmd in $CMDLINE; do case "$cmd" in [0123456Ss]) export runlevel="$cmd" ;; single) export runlevel="S" ;; #some people use 'single' - *.*) ;; #do nothing if it contains a dot - *=*) export "${cmd}" ;; - *) export "${cmd}=y" ;; + # only export stuff that does work with dash :) + *=*) cmd="$(replace "${cmd}" '.' '_')" + cmd="$(replace "${cmd}" '-' '_')" + export "${cmd}" + ;; + *) cmd="$(replace "${cmd}" '.' '_')" + cmd="$(replace "${cmd}" '-' '_')" + export "${cmd}=y" + ;; esac done if [ "x${disablehooks}" != "x" ]; then - k="$(replace -q "${disablehooks}" '-' '_')" - for d in $(replace "${k}" ','); do + for d in $(replace "${disablehooks}" ','); do export "hook_${d}=disabled" done fi if [ "x${disablemodules}" != "x" ]; then - k="$(replace "${disablemodules}" '-' '_')" - for d in $(replace "${k}" ','); do + for d in $(replace "${disablemodules}" ','); do export "mod_${d}=disabled" done fi -- cgit v1.2.3-24-g4f1b