--- nslu2-linksys-ramdisk-2.3r25/etc/rc~ 2004-07-27 23:37:55.000000000 -0400 +++ nslu2-linksys-ramdisk-2.3r25/etc/rc 2004-09-01 21:47:47.000000000 -0400 @@ -1,4 +1,43 @@ ## Simple beta script to verify csr + +if ( [ -f /unslung/rc ] && . /unslung/rc ) ; then return 0 ; fi + /usr/bin/Set_Led r_blinking & mount -t proc proc /proc mount -o remount,rw /dev/root / + +if [ -f /.ramdisk ] ; then + echo "Root filesystem is running in maintenance mode ..." + ( cd /home/httpd/html/Management ; mv upgrade-maint.htm upgrade.htm ) +fi + +if ( [ -f /.sda1root ] || [ -f /.sdb1root ] || [ -f /.sda2root ] || [ -f /.sdb2root ] ) ; then + echo "Root filesystem is running a external disk ..." + ( cd /home/httpd/html/Management ; cp upgrade-maint.htm upgrade.htm ) +fi + +# Wait for the USB disks to be recognised. +sleep 5 + +if ( [ -f /proc/hd_conn ] ) ; then + if ( [ -f /.sda1root ] ) ; then + /bin/mount -t ext3 /dev/sda1 /share/hdd/data + /bin/rm -rf /mnt/sda1 ; /bin/ln -s /share/hdd/data /mnt/sda1 + fi + if ( [ -f /.sda2root ] ) ; then + /bin/mount -t ext3 /dev/sda2 /share/hdd/conf + /bin/rm -rf /mnt/sda2 ; /bin/ln -s /share/hdd/conf /mnt/sda2 + fi +fi + +if ( [ -f /proc/hd2_conn ] ) ; then + if ( [ -f /.sdb1root ] ) ; then + /bin/mount -t ext3 /dev/sdb2 /share/flash/data + /bin/rm -rf /mnt/sdb1 ; /bin/ln -s /share/flash/data /mnt/sdb1 + fi + if ( [ -f /.sdb2root ] ) ; then + /bin/mount -t ext3 /dev/sdb2 /share/flash/conf + /bin/rm -rf /mnt/sdb2 ; /bin/ln -s /share/flash/conf /mnt/sdb2 + fi +fi +