summaryrefslogtreecommitdiffstats
path: root/meta/classes/image_types_uboot.bbclass
diff options
context:
space:
mode:
authorMatthew McClintock <msm@freescale.com>2011-09-28 23:20:59 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-09-29 16:54:38 +0100
commit8836afca8a520c199bd57cccfa3e114ae373c214 (patch)
treee0035a54932ea7d29f9d3835b7dce13eb0e50fd5 /meta/classes/image_types_uboot.bbclass
parent8240072c70ba13033e10ebd954e3f4d0b7c0a552 (diff)
downloadpoky-8836afca8a520c199bd57cccfa3e114ae373c214.tar.gz
Add support for generating ext2.lzma{, .u-boot} images
Machines can now add ext2.lzma and ext2.lzma.u-boot images as a generated image type. (From OE-Core rev: 927b2ce72c026e5e41bdd5690c48ebbc8b19e45e) Signed-off-by: Matthew McClintock <msm@freescale.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image_types_uboot.bbclass')
-rw-r--r--meta/classes/image_types_uboot.bbclass6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/classes/image_types_uboot.bbclass b/meta/classes/image_types_uboot.bbclass
index aee88a64e6..65dc91b3ff 100644
--- a/meta/classes/image_types_uboot.bbclass
+++ b/meta/classes/image_types_uboot.bbclass
@@ -13,6 +13,10 @@ IMAGE_DEPENDS_ext2.bz2.u-boot = "genext2fs-native e2fsprogs-native u-boot-mkimag
13IMAGE_CMD_ext2.bz2.u-boot = "${IMAGE_CMD_ext2.bz2} \ 13IMAGE_CMD_ext2.bz2.u-boot = "${IMAGE_CMD_ext2.bz2} \
14 oe_mkimage ${IMAGE_NAME}.rootfs.ext2.bz2 bzip2" 14 oe_mkimage ${IMAGE_NAME}.rootfs.ext2.bz2 bzip2"
15 15
16IMAGE_DEPENDS_ext2.lzma.u-boot = "genext2fs-native e2fsprogs-native u-boot-mkimage-native"
17IMAGE_CMD_ext2.lzma.u-boot = "${IMAGE_CMD_ext2.lzma} \
18 oe_mkimage ${IMAGE_NAME}.rootfs.ext2.lzma lzma"
19
16IMAGE_DEPENDS_ext3.gz.u-boot = "genext2fs-native e2fsprogs-native u-boot-mkimage-native" 20IMAGE_DEPENDS_ext3.gz.u-boot = "genext2fs-native e2fsprogs-native u-boot-mkimage-native"
17IMAGE_CMD_ext3.gz.u-boot = "${IMAGE_CMD_ext3.gz} \ 21IMAGE_CMD_ext3.gz.u-boot = "${IMAGE_CMD_ext3.gz} \
18 oe_mkimage ${IMAGE_NAME}.rootfs.ext3.gz gzip" 22 oe_mkimage ${IMAGE_NAME}.rootfs.ext3.gz gzip"
@@ -21,4 +25,4 @@ IMAGE_DEPENDS_ext4.gz.u-boot = "genext2fs-native e2fsprogs-native u-boot-mkimage
21IMAGE_CMD_ext4.gz.u-boot = "${IMAGE_CMD_ext4.gz} \ 25IMAGE_CMD_ext4.gz.u-boot = "${IMAGE_CMD_ext4.gz} \
22 oe_mkimage ${IMAGE_NAME}.rootfs.ext4.gz gzip" 26 oe_mkimage ${IMAGE_NAME}.rootfs.ext4.gz gzip"
23 27
24IMAGE_TYPES += "ext2.gz.u-boot ext2.bz2.u-boot ext3.gz.u-boot ext4.gz.u-boot" 28IMAGE_TYPES += "ext2.gz.u-boot ext2.bz2.u-boot ext2.lzma.u-boot ext3.gz.u-boot ext4.gz.u-boot"