generic-poky/meta/packages/images/poky-image-live.inc
Samuel Ortiz 460d93416d 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
2008-10-08 14:31:12 +00:00

19 lines
436 B
PHP

AUTO_SYSLINUXCFG = "1"
INITRD = "${DEPLOY_DIR_IMAGE}/poky-image-minimal-initramfs-${MACHINE}.cpio.gz"
APPEND += "root=/dev/ram0 "
TIMEOUT = "10"
EXCLUDE_FROM_WORLD = "1"
do_bootimg[depends] += "poky-image-minimal-initramfs:do_rootfs"
inherit bootimg
do_bootimg_prepend () {
import bb
fstypes = bb.data.getVar('IMAGE_FSTYPES', d, True)
if 'ext3' not in fstypes:
bb.msg.fatal(bb.msg.domain.Build, "ext3 not in IMAGE_FSTYPES")
}