diff options
| author | Ross Burton <ross@burtonini.com> | 2022-03-31 19:28:54 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-04-01 23:11:37 +0100 |
| commit | c580bc6008f875d188315851b8391a72aebc89f4 (patch) | |
| tree | 714a58018f06699a25939bc5d851235546dc39e9 | |
| parent | 3087e2f2e6c37865f2bee56c891e67847b2f00fa (diff) | |
| download | poky-c580bc6008f875d188315851b8391a72aebc89f4.tar.gz | |
image_types: hddimg and iso only work on x86
These image types use syslinux which is only available on x86, so only
add them to IMAGE_TYPES on x86.
(From OE-Core rev: 2ea047a026dd61a8e0a24c6bbe278849485a2c27)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/classes/image_types.bbclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass index f643ed3ce7..960dab1a60 100644 --- a/meta/classes/image_types.bbclass +++ b/meta/classes/image_types.bbclass | |||
| @@ -264,8 +264,6 @@ IMAGE_TYPES = " \ | |||
| 264 | ext3 ext3.gz \ | 264 | ext3 ext3.gz \ |
| 265 | ext4 ext4.gz \ | 265 | ext4 ext4.gz \ |
| 266 | btrfs \ | 266 | btrfs \ |
| 267 | iso \ | ||
| 268 | hddimg \ | ||
| 269 | squashfs squashfs-xz squashfs-lzo squashfs-lz4 squashfs-zst \ | 267 | squashfs squashfs-xz squashfs-lzo squashfs-lz4 squashfs-zst \ |
| 270 | ubi ubifs multiubi \ | 268 | ubi ubifs multiubi \ |
| 271 | tar tar.gz tar.bz2 tar.xz tar.lz4 tar.zst \ | 269 | tar tar.gz tar.bz2 tar.xz tar.lz4 tar.zst \ |
| @@ -275,6 +273,9 @@ IMAGE_TYPES = " \ | |||
| 275 | f2fs \ | 273 | f2fs \ |
| 276 | erofs erofs-lz4 erofs-lz4hc \ | 274 | erofs erofs-lz4 erofs-lz4hc \ |
| 277 | " | 275 | " |
| 276 | # These image types are x86 specific as they need syslinux | ||
| 277 | IMAGE_TYPES:append:x86 = " hddimg iso" | ||
| 278 | IMAGE_TYPES:append:x86-64 = " hddimg iso" | ||
| 278 | 279 | ||
| 279 | # Compression is a special case of conversion. The old variable | 280 | # Compression is a special case of conversion. The old variable |
| 280 | # names are still supported for backward-compatibility. When defining | 281 | # names are still supported for backward-compatibility. When defining |
