X-Git-Url: http://git.grml.org/?p=grml-autoconfig.git;a=blobdiff_plain;f=grml-autoconfig;h=c0c1d4786ab6ec484e8b5d55de527d10159cba53;hp=9305cfe99641845e8d83a3d2a3e37e5defd696a6;hb=a64a1f09d039ac261ea3d8cba8add283ae61b3c2;hpb=12e47aed34dc3c59822af79dfec0a93fec810e00 diff --git a/grml-autoconfig b/grml-autoconfig index 9305cfe..c0c1d47 100755 --- a/grml-autoconfig +++ b/grml-autoconfig @@ -56,13 +56,10 @@ mount_sys # {{{ main grml-autoconfig checkvalue $CONFIG_DEBUG && config_debug -# update /etc/mtab if running in live-initramfs mode: -if [ -z "$INSTALLED" -a -e /live/cow ] ; then - if ! grep -q rootfs /etc/mtab ; then - for i in rootfs "none /sys sysfs" proc /live/image /live/cow /lib/init/rw /dev/shm /dev/pts ; do - grep $i /proc/mounts | grep -v /dev/.static >> /etc/mtab - done - fi +# make sure symlink /etc/mtab exists, this is usually handled by +# /etc/init.d/checkroot.sh but we don't execute this script on the live system +if [ -z "$INSTALLED" ] ; then + ln -sf /proc/mounts /etc/mtab fi stage=5 @@ -203,8 +200,7 @@ if [ -n "$BOOTDEBUG" ] ; then # set only if not already set if [ -z "$CMDLINE" ] ; then CMDLINE="$(cat /proc/cmdline)" - [ -d /cdrom/bootparams/ ] && CMDLINE="$CMDLINE $(cat /cdrom/bootparams/*)" - [ -d /live/image/bootparams/ ] && CMDLINE="$CMDLINE $(cat /live/image/bootparams/*)" + [ -d ${LIVECD_PATH}/bootparams/ ] && CMDLINE="$CMDLINE $(cat ${LIVECD_PATH}/bootparams/*)" fi einfo "Bootoption debug detected. Printing kernel command line:" echo "$CMDLINE"