poky-image-netbook: Add installation script

By typing "install" from the syslinux prompt, you should boot into the  
netbook image installation script. That will install the netbook image  
in your selected hard drive.
By default, the netbook-live image will continue booting the live 
image.



git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5456 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Samuel Ortiz 2008-10-08 14:31:12 +00:00
parent 864a4adacf
commit 460d93416d
5 changed files with 16 additions and 5 deletions

View File

@ -1,7 +1,7 @@
AUTO_SYSLINUXCFG = "1"
INITRD = "${DEPLOY_DIR_IMAGE}/poky-image-minimal-initramfs-${MACHINE}.cpio.gz"
LABELS = "poky"
APPEND += "root=/dev/ram0 "
TIMEOUT = "10"
EXCLUDE_FROM_WORLD = "1"

View File

@ -1,6 +1,6 @@
# Sample initramfs image, very minimal
# Simple initramfs image. Mostly used for live images.
IMAGE_INSTALL = "initramfs-live-boot busybox udev"
IMAGE_INSTALL = "initramfs-live-boot initramfs-live-install busybox udev"
export IMAGE_BASENAME = "poky-image-minimal-initramfs"
IMAGE_LINGUAS = ""

View File

@ -0,0 +1,9 @@
DESCRIPTION = "Netbook Bootable Live Image"
require poky-image-live.inc
LABELS += "install"
ROOTFS = "${DEPLOY_DIR_IMAGE}/poky-image-netbook-${MACHINE}.ext3"
do_bootimg[depends] += "poky-image-netbook:do_rootfs"

View File

@ -2,7 +2,8 @@ DESCRIPTION = "Netbook Bootable Live Image"
require poky-image-live.inc
LABELS += "boot install"
ROOTFS = "${DEPLOY_DIR_IMAGE}/poky-image-netbook-${MACHINE}.ext3"
TIMEOUT = "3"
do_bootimg[depends] += "poky-image-netbook:do_rootfs"

View File

@ -2,7 +2,8 @@ DESCRIPTION = "Sato Bootable Live Image"
require poky-image-live.inc
LABELS += "boot install"
ROOTFS = "${DEPLOY_DIR_IMAGE}/poky-image-sato-${MACHINE}.ext3"
TIMEOUT = "3"
do_bootimg[depends] += "poky-image-sato:do_rootfs"