summaryrefslogtreecommitdiffstats
path: root/meta/packages/images/poky-image-sato-directdisk.bb
blob: f24d938adfe2605f936567c71a11f29bb67d8851 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
DESCRIPTION = "Sato Direct Disk Image"

inherit boot-directdisk

do_bootdirectdisk_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")
}

ROOTFS = "${DEPLOY_DIR_IMAGE}/poky-image-sato-${MACHINE}.ext3"

do_bootdirectdisk[depends] += "poky-image-sato:do_rootfs"