From f486b7ed6f8e289c8d897fcaeac7a0f52c7493c0 Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Fri, 5 May 2006 16:36:55 +0000 Subject: kinit param handling change to match kinit patch (cmdline.patch) git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@68 880c04e9-e011-0410-abf7-b926e227c9cd --- hooks/encrypt | 13 ------------- hooks/filesystems | 1 + init | 5 ++++- install/encrypt | 2 +- 4 files changed, 6 insertions(+), 15 deletions(-) diff --git a/hooks/encrypt b/hooks/encrypt index 9ae2d45..30dfc12 100644 --- a/hooks/encrypt +++ b/hooks/encrypt @@ -3,17 +3,6 @@ # encryption schemes run_hook () { - replace_root () - { - newcmdline="" - for cmd in $CMDLINE; do - case "$cmd" in - root=*) newcmdline="${newcmdline} root=${1}" ;; - *) newcmdline="${newcmdline} ${cmd}" ;; - esac - done - export CMDLINE="${newcmdline}" - } mkdevice () { /bin/mknod "/dev/mapper/control" c ${1} ${2}; } /bin/modprobe -a -q dm-crypt >/dev/null 2>&1 @@ -33,7 +22,6 @@ run_hook () done if [ -e "/dev/mapper/root" ]; then export root="/dev/mapper/root" - replace_root ${root} else err "Password succeeded, but root creation failed, aborting..." exit 1 @@ -69,7 +57,6 @@ run_hook () else if [ -e "/dev/mapper/root" ]; then export root="/dev/mapper/root" - replace_root ${root} else err "Password succeeded, but root creation failed, aborting..." exit 1 diff --git a/hooks/filesystems b/hooks/filesystems index 4fe655c..55d6725 100644 --- a/hooks/filesystems +++ b/hooks/filesystems @@ -22,5 +22,6 @@ run_hook () fi fi msg " ${FSTYPE}" + kinit_params="${kinit_params} rootfstype=${FSTYPE}" /bin/modprobe -q "${FSTYPE}" >/dev/null 2>&1 } diff --git a/init b/init index f2d6361..fe42234 100644 --- a/init +++ b/init @@ -11,6 +11,9 @@ msg ":: Loading Initramfs" read CMDLINE /dev/console +exec /bin/kinit "root=${root}" ${kinit_params} < /dev/console > /dev/console diff --git a/install/encrypt b/install/encrypt index d81966b..65007fc 100644 --- a/install/encrypt +++ b/install/encrypt @@ -2,7 +2,7 @@ install () { - MODULES=" dm-crypt $(all_modules "/crypto/") " + MODULES=" dm-crypt $(all_modules "/crypto/" | grep -v "aes.ko" ) " BINARIES="" add_file "/sbin/cryptsetup.static" "/bin/cryptsetup" FILES="" -- cgit v1.2.3-24-g4f1b