Don't try to unmount the real root; it won't work as we're running off it.
authorJonathan McDowell <noodles@earth.li>
Sun, 24 Apr 2005 19:53:10 +0000 (19:53 +0000)
committerJonathan McDowell <noodles@earth.li>
Sun, 24 Apr 2005 19:53:10 +0000 (19:53 +0000)
BKrev: 426bf926Q3247SQecFLnPjxj70vicg

packages/pivotinit/spitz/init

index e69de29..41e4aff 100644 (file)
@@ -0,0 +1,25 @@
+#!/bin/sh
+
+mount -t proc proc /proc
+mount -o remount,rw /
+cardmgr -o
+umount /proc
+echo Mounting hda1.
+mount -t ext3 /dev/hda1 /media/hdd
+
+# For some reason the Spitz tar doesn't create the devices.
+if [ ! -b /media/hdd/dev/hda1 ]; then
+       echo Creating non existant device files.
+       /media/hdd/sbin/makedevs -D /media/hdd/etc/device_table -r /media/hdd/
+fi
+
+if [ -e /media/hdd/sbin/init -o -L /media/hdd/sbin/init ]; then
+       echo "Found /sbin/init on HD; pivoting."
+       cd /media/hdd
+       pivot_root . media/realroot
+       cd /
+       exec /sbin/init
+fi
+
+echo Dropping to a shell due to problems.
+exec /bin/sh