I simply forgot to add this file to my patch set. -- Ward Vandewege <[EMAIL PROTECTED]> Free Software Foundation - Senior System Administrator
Add missing boot-hdd file to the initramfs skeleton. Required for LAB.
Signed-off-by: Ward Vandewege <[EMAIL PROTECTED]> Index: skeleton/bin/boot-hdd =================================================================== --- skeleton/bin/boot-hdd (revision 0) +++ skeleton/bin/boot-hdd (revision 0) @@ -0,0 +1,17 @@ +#!/bin/sh + +. /bin/boot.functions + +DIR=/hdd/ + +mkdir $DIR +mount -oro /dev/sda1 $DIR + +if [ $? -eq 0 ]; then + doboot $DIR + message "ERROR: Couldn't boot from the hdd." + exit 1 +fi + +message "ERROR: Couldn't mount the hdd." +exit 1 Property changes on: skeleton/bin/boot-hdd ___________________________________________________________________ Name: svn:executable + *
-- linuxbios mailing list [email protected] http://www.linuxbios.org/mailman/listinfo/linuxbios
