X-Git-Url: http://gitweb/?a=blobdiff_plain;ds=sidebyside;f=filesystem%2Frc;h=baf1581beb619ae82c1e414765969ed15f0fc130;hb=refs%2Fheads%2F3.3;hp=e1a8bea25672caf96f1df3729e16fc47d6b4ee1b;hpb=eebbffc56a2ba1382ac7a2fe2e94a03fbc3689b7;p=initrd.git diff --git a/filesystem/rc b/filesystem/rc index e1a8bea..baf1581 100755 --- a/filesystem/rc +++ b/filesystem/rc @@ -31,8 +31,7 @@ checkReturn() { find_and_mount_media() { echo -e " ${BOLD}${BLUE}*${NORM} Searching for the CRUX media..." mkdir -p /media - CRUXMEDIA="" - MMC_DEVICES="`grep -E 'mmcblk' /proc/partitions | awk '{ print $4 }'`" + MMC_DEVICES="`grep -E 'mmcblk0p' /proc/partitions | awk '{ print $4 }'`" BLOCK_DEVICES="`grep -E '[sh]d' /proc/partitions | awk '{ print $4 }'`" for DEV in $MMC_DEVICES $BLOCK_DEVICES do @@ -44,7 +43,6 @@ find_and_mount_media() { if [ -e /media/crux-media ] then echo ", CRUX media." - CRUXMEDIA=$DEV ln -s $DEV /dev/media break else @@ -100,11 +98,31 @@ find_and_mount_media() { # echo "" -echo -e "${BOLD}CRUX-ARM 2.7.1 - ${BLUE}http://crux-arm.nu/${NORM}" +echo -e "${BOLD}CRUX-ARM 3.3 - ${BLUE}http://crux-arm.nu/${NORM}" echo "" exec >/dev/console &1 +# premature mount /proc since we need some rw operations +echo -e -n " ${BOLD}${BLUE}*${NORM} Mounting " +echo -e -n "${BOLD}${GREEN}/proc${NORM}" +mount -t proc proc /proc + +if grep -q "debug" /proc/cmdline +then + DEBUG=1 +fi + +# dont show kernel printk messages +PRINTK="`cat /proc/sys/kernel/printk`" +if [ -z $DEBUG ] +then + echo "0" > /proc/sys/kernel/printk +fi + +echo -e ", ${BOLD}${GREEN}/sys${NORM}." +mount -t sysfs sysfs /sys + echo -e -n " ${BOLD}${BLUE}*${NORM} Mounting filesystems... " mount -a && \ mount -o remount,rw / @@ -141,11 +159,28 @@ echo -e -n " ${BOLD}${BLUE}*${NORM} Saving boot messages... " dmesg > /var/log/boot checkReturn +# run mdev again to fix issues with mmc devices. yeah, it is weird but worked +mdev -s + echo -e " ${BOLD}${BLUE}*${NORM} Trying to find and mount the media installer..." find_and_mount_media +# debug could be necessary when are working with a new device and/or features +# and for a weird reason you can't see any output message on the console. +# You can create a debug.sh script at topdir of your install media and redirect +# the output to a file to inspect later +if [ ! -z $DEBUG ]; +then + echo -e -n " ${BOLD}${BLUE}*${NORM} Loading debug script..." + /media/debug.sh + checkReturn +fi + echo echo "The system is coming up. Please wait." echo +# restore kernel printk status +echo "$PRINTK" > /proc/sys/kernel/printk + # End of file