initrdscripts: Fix the init scripts to support the no fb case.

This commit is contained in:
Samuel Ortiz 2008-11-10 18:50:56 +01:00
parent cf96c4ce6c
commit 2685507637
4 changed files with 6 additions and 6 deletions

View File

@ -139,7 +139,7 @@ echo "default 0" > /ssd/boot/grub/menu.lst
echo "timeout 30" >> /ssd/boot/grub/menu.lst
echo "title Poky-Netbook" >> /ssd/boot/grub/menu.lst
echo "root (hd0,0)" >> /ssd/boot/grub/menu.lst
echo "kernel /boot/vmlinuz root=$rootfs rw video=$3 vga=$4 quiet" >> /ssd/boot/grub/menu.lst
echo "kernel /boot/vmlinuz root=$rootfs rw $3 $4 quiet" >> /ssd/boot/grub/menu.lst
cp /media/$1/vmlinuz /ssd/boot/

View File

@ -27,9 +27,9 @@ read_args() {
LABEL=*)
label=$optarg ;;
video=*)
video_mode=$optarg ;;
video_mode=$arg ;;
vga=*)
vga_mode=$optarg ;;
vga_mode=$arg ;;
esac
done
}
@ -79,7 +79,7 @@ case $label in
;;
install)
if [ -f /media/$i/$ROOT_IMAGE ] ; then
./install.sh $i $ROOT_IMAGE $video_mode $vga
./install.sh $i $ROOT_IMAGE $video_mode $vga_mode
else
fatal "Couldnt find install script"
fi

View File

@ -2,7 +2,7 @@ DESCRIPTON = "A live image init script"
SRC_URI = "file://init-live.sh"
PR = "r0"
PR = "r1"
do_install() {
install -m 0755 ${WORKDIR}/init-live.sh ${D}/init

View File

@ -2,7 +2,7 @@ DESCRIPTON = "A live image init script"
SRC_URI = "file://init-install.sh"
PR = "r1"
PR = "r2"
RDEPENDS="grub parted e2fsprogs-mke2fs"