diff options
author | Matthew McClintock <msm@freescale.com> | 2012-01-12 11:13:32 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-17 14:53:21 +0000 |
commit | f20d49315dc2ace002c2671c746d274198ef3976 (patch) | |
tree | dab1a3c204967f10d991a61bf96e3e4606fe1b29 | |
parent | 2eb5811da7391e6c1e1baaf769b657a0229571e0 (diff) | |
download | poky-f20d49315dc2ace002c2671c746d274198ef3976.tar.gz |
image_types_uboot.bbclass: Add uncompressed ext2 image option
(From OE-Core rev: 1a8e02fee858fa9569f2e980ebff0698e4a53d36)
Signed-off-by: Matthew McClintock <msm@freescale.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/image_types_uboot.bbclass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/classes/image_types_uboot.bbclass b/meta/classes/image_types_uboot.bbclass index 65dc91b3ff..8d1081c00a 100644 --- a/meta/classes/image_types_uboot.bbclass +++ b/meta/classes/image_types_uboot.bbclass | |||
@@ -5,6 +5,10 @@ oe_mkimage () { | |||
5 | -d ${DEPLOY_DIR_IMAGE}/$1 ${DEPLOY_DIR_IMAGE}/$1.u-boot | 5 | -d ${DEPLOY_DIR_IMAGE}/$1 ${DEPLOY_DIR_IMAGE}/$1.u-boot |
6 | } | 6 | } |
7 | 7 | ||
8 | IMAGE_DEPENDS_ext2.u-boot = "genext2fs-native e2fsprogs-native u-boot-mkimage-native" | ||
9 | IMAGE_CMD_ext2.u-boot = "${IMAGE_CMD_ext2} \ | ||
10 | oe_mkimage ${IMAGE_NAME}.rootfs.ext2 none" | ||
11 | |||
8 | IMAGE_DEPENDS_ext2.gz.u-boot = "genext2fs-native e2fsprogs-native u-boot-mkimage-native" | 12 | IMAGE_DEPENDS_ext2.gz.u-boot = "genext2fs-native e2fsprogs-native u-boot-mkimage-native" |
9 | IMAGE_CMD_ext2.gz.u-boot = "${IMAGE_CMD_ext2.gz} \ | 13 | IMAGE_CMD_ext2.gz.u-boot = "${IMAGE_CMD_ext2.gz} \ |
10 | oe_mkimage ${IMAGE_NAME}.rootfs.ext2.gz gzip" | 14 | oe_mkimage ${IMAGE_NAME}.rootfs.ext2.gz gzip" |
@@ -25,4 +29,4 @@ IMAGE_DEPENDS_ext4.gz.u-boot = "genext2fs-native e2fsprogs-native u-boot-mkimage | |||
25 | IMAGE_CMD_ext4.gz.u-boot = "${IMAGE_CMD_ext4.gz} \ | 29 | IMAGE_CMD_ext4.gz.u-boot = "${IMAGE_CMD_ext4.gz} \ |
26 | oe_mkimage ${IMAGE_NAME}.rootfs.ext4.gz gzip" | 30 | oe_mkimage ${IMAGE_NAME}.rootfs.ext4.gz gzip" |
27 | 31 | ||
28 | IMAGE_TYPES += "ext2.gz.u-boot ext2.bz2.u-boot ext2.lzma.u-boot ext3.gz.u-boot ext4.gz.u-boot" | 32 | IMAGE_TYPES += "ext2.u-boot ext2.gz.u-boot ext2.bz2.u-boot ext2.lzma.u-boot ext3.gz.u-boot ext4.gz.u-boot" |