diff options
author | Saul Wold <sgw@linux.intel.com> | 2011-03-07 09:52:41 -0800 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2011-03-07 16:22:35 -0800 |
commit | 7ba79b4c25126b42d3697cec9ecdf8d688d6da54 (patch) | |
tree | 62946ed5c706224a9ec908cf20790d3de6eeaf58 /meta/recipes-extended/images | |
parent | 21f294d9600a369fff5eafb0c7358694d9ff0221 (diff) | |
download | openembedded-core-7ba79b4c25126b42d3697cec9ecdf8d688d6da54.tar.gz openembedded-core-7ba79b4c25126b42d3697cec9ecdf8d688d6da54.tar.bz2 openembedded-core-7ba79b4c25126b42d3697cec9ecdf8d688d6da54.zip |
lsb-live image: add lsb-live and lsb-sdk-live image types
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-extended/images')
-rw-r--r-- | meta/recipes-extended/images/poky-image-lsb-live.bb | 11 | ||||
-rw-r--r-- | meta/recipes-extended/images/poky-image-lsb-sdk-live.bb | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/meta/recipes-extended/images/poky-image-lsb-live.bb b/meta/recipes-extended/images/poky-image-lsb-live.bb new file mode 100644 index 0000000000..baa9ea0e4f --- /dev/null +++ b/meta/recipes-extended/images/poky-image-lsb-live.bb @@ -0,0 +1,11 @@ +DESCRIPTION = "LSB Bootable Live Image" + +require recipes-core/images/poky-image-live.inc + +LABELS += "boot install" + +ROOTFS = "${DEPLOY_DIR_IMAGE}/poky-image-lsb-${MACHINE}.ext3" + +LICENSE = "MIT" + +do_bootimg[depends] += "poky-image-lsb:do_rootfs" diff --git a/meta/recipes-extended/images/poky-image-lsb-sdk-live.bb b/meta/recipes-extended/images/poky-image-lsb-sdk-live.bb new file mode 100644 index 0000000000..370780a062 --- /dev/null +++ b/meta/recipes-extended/images/poky-image-lsb-sdk-live.bb @@ -0,0 +1,11 @@ +DESCRIPTION = "LSB SDK Bootable Live Image" + +require recipes-core/images/poky-image-live.inc + +LABELS += "boot install" + +ROOTFS = "${DEPLOY_DIR_IMAGE}/poky-image-lsb-sdk-${MACHINE}.ext3" + +LICENSE = "MIT" + +do_bootimg[depends] += "poky-image-lsb-sdk:do_rootfs" |