diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/image.bbclass | 2 | ||||
-rw-r--r-- | meta/classes/image_types_uboot.bbclass | 13 |
2 files changed, 6 insertions, 9 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index de535ce6fc..bd6a5b7b81 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
@@ -453,7 +453,7 @@ python () { | |||
453 | rm_tmp_images = set() | 453 | rm_tmp_images = set() |
454 | def gen_conversion_cmds(bt): | 454 | def gen_conversion_cmds(bt): |
455 | for ctype in ctypes: | 455 | for ctype in ctypes: |
456 | if bt[bt.find('.') + 1:] == ctype: | 456 | if bt.endswith("." + ctype): |
457 | type = bt[0:-len(ctype) - 1] | 457 | type = bt[0:-len(ctype) - 1] |
458 | if type.startswith("debugfs_"): | 458 | if type.startswith("debugfs_"): |
459 | type = type[8:] | 459 | type = type[8:] |
diff --git a/meta/classes/image_types_uboot.bbclass b/meta/classes/image_types_uboot.bbclass index 5dfa39287d..8db436efb1 100644 --- a/meta/classes/image_types_uboot.bbclass +++ b/meta/classes/image_types_uboot.bbclass | |||
@@ -3,9 +3,6 @@ inherit image_types kernel-arch | |||
3 | oe_mkimage () { | 3 | oe_mkimage () { |
4 | mkimage -A ${UBOOT_ARCH} -O linux -T ramdisk -C $2 -n ${IMAGE_NAME} \ | 4 | mkimage -A ${UBOOT_ARCH} -O linux -T ramdisk -C $2 -n ${IMAGE_NAME} \ |
5 | -d ${IMGDEPLOYDIR}/$1 ${IMGDEPLOYDIR}/$1.u-boot | 5 | -d ${IMGDEPLOYDIR}/$1 ${IMGDEPLOYDIR}/$1.u-boot |
6 | if [ x$3 = x"clean" ]; then | ||
7 | rm $1 | ||
8 | fi | ||
9 | } | 6 | } |
10 | 7 | ||
11 | CONVERSIONTYPES += "gz.u-boot bz2.u-boot lz4.u-boot lzma.u-boot lzo.u-boot u-boot" | 8 | CONVERSIONTYPES += "gz.u-boot bz2.u-boot lz4.u-boot lzma.u-boot lzo.u-boot u-boot" |
@@ -14,19 +11,19 @@ CONVERSION_DEPENDS_u-boot = "u-boot-mkimage-native" | |||
14 | CONVERSION_CMD_u-boot = "oe_mkimage ${IMAGE_NAME}.rootfs.${type} none" | 11 | CONVERSION_CMD_u-boot = "oe_mkimage ${IMAGE_NAME}.rootfs.${type} none" |
15 | 12 | ||
16 | CONVERSION_DEPENDS_gz.u-boot = "u-boot-mkimage-native" | 13 | CONVERSION_DEPENDS_gz.u-boot = "u-boot-mkimage-native" |
17 | CONVERSION_CMD_gz.u-boot = "${CONVERSION_CMD_gz}; oe_mkimage ${IMAGE_NAME}.rootfs.${type}.gz gzip clean" | 14 | CONVERSION_CMD_gz.u-boot = "${CONVERSION_CMD_gz}; oe_mkimage ${IMAGE_NAME}.rootfs.${type}.gz gzip" |
18 | 15 | ||
19 | CONVERSION_DEPENDS_bz2.u-boot = "u-boot-mkimage-native" | 16 | CONVERSION_DEPENDS_bz2.u-boot = "u-boot-mkimage-native" |
20 | CONVERSION_CMD_bz2.u-boot = "${CONVERSION_CMD_bz2}; oe_mkimage ${IMAGE_NAME}.rootfs.${type}.bz2 bzip2 clean" | 17 | CONVERSION_CMD_bz2.u-boot = "${CONVERSION_CMD_bz2}; oe_mkimage ${IMAGE_NAME}.rootfs.${type}.bz2 bzip2" |
21 | 18 | ||
22 | CONVERSION_DEPENDS_lz4.u-boot = "u-boot-mkimage-native" | 19 | CONVERSION_DEPENDS_lz4.u-boot = "u-boot-mkimage-native" |
23 | CONVERSION_CMD_lz4.u-boot = "${CONVERSION_CMD_lz4_legacy}; oe_mkimage ${IMAGE_NAME}.rootfs.${type}.lz4 lz4 clean" | 20 | CONVERSION_CMD_lz4.u-boot = "${CONVERSION_CMD_lz4_legacy}; oe_mkimage ${IMAGE_NAME}.rootfs.${type}.lz4 lz4" |
24 | 21 | ||
25 | CONVERSION_DEPENDS_lzma.u-boot = "u-boot-mkimage-native" | 22 | CONVERSION_DEPENDS_lzma.u-boot = "u-boot-mkimage-native" |
26 | CONVERSION_CMD_lzma.u-boot = "${CONVERSION_CMD_lzma}; oe_mkimage ${IMAGE_NAME}.rootfs.${type}.lzma lzma clean" | 23 | CONVERSION_CMD_lzma.u-boot = "${CONVERSION_CMD_lzma}; oe_mkimage ${IMAGE_NAME}.rootfs.${type}.lzma lzma" |
27 | 24 | ||
28 | CONVERSION_DEPENDS_lzo.u-boot = "u-boot-mkimage-native" | 25 | CONVERSION_DEPENDS_lzo.u-boot = "u-boot-mkimage-native" |
29 | CONVERSION_CMD_lzo.u-boot = "${CONVERSION_CMD_lzo}; oe_mkimage ${IMAGE_NAME}.rootfs.${type}.lzo lzo clean" | 26 | CONVERSION_CMD_lzo.u-boot = "${CONVERSION_CMD_lzo}; oe_mkimage ${IMAGE_NAME}.rootfs.${type}.lzo lzo" |
30 | 27 | ||
31 | 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 cpio.gz.u-boot" | 28 | 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 cpio.gz.u-boot" |
32 | 29 | ||