summaryrefslogtreecommitdiffstats
path: root/meta/packages/images/poky-image-live.inc
blob: a3119a8740cbf97d91f74d987f259977a1107d32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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