Added live USB poky images

We support sato and minimal live USB image production.


git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5174 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Samuel Ortiz 2008-09-10 21:24:24 +00:00
parent 9bdc5a0129
commit 6b2db1eb1a
4 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,15 @@
python __anonymous () {
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")
}
AUTO_SYSLINUXCFG = "1"
INITRD = "${DEPLOY_DIR_IMAGE}/poky-image-minimal-initramfs-${MACHINE}.cpio.gz"
LABELS = "poky"
APPEND += "root=/dev/ram0 video=vesafb:800x600-16@60 vga=788"
do_bootimg[depends] += "poky-image-minimal-initramfs:do_rootfs"
inherit bootimg

View File

@ -0,0 +1,8 @@
# Sample initramfs image, very minimal
IMAGE_INSTALL = "initramfs-live-boot busybox udev"
export IMAGE_BASENAME = "poky-image-minimal-initramfs"
IMAGE_LINGUAS = ""
inherit poky-image

View File

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

View File

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