diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-04 11:34:00 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-04 20:45:41 +0100 |
commit | ea984415f6ae5f6ad3f5b0900ace683027818a32 (patch) | |
tree | 5fb909530723d3e7afcc242a6a69d20a26fad5e6 /meta/classes/image-container.bbclass | |
parent | 866d0756d0cfec78d88037ba6c71ec58af9b215f (diff) | |
download | poky-ea984415f6ae5f6ad3f5b0900ace683027818a32.tar.gz |
meta: Convert IMAGE_TYPEDEP to use override syntax
The IMAGE_TYPEDEP variable would make more sense to match the form of the
other image override variables, convert it to use the overrides format.
(From OE-Core rev: 8573f6b2a7af9867da0b21936ffd2cd2a417de1d)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image-container.bbclass')
-rw-r--r-- | meta/classes/image-container.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/image-container.bbclass b/meta/classes/image-container.bbclass index f002858bd2..3d1993576a 100644 --- a/meta/classes/image-container.bbclass +++ b/meta/classes/image-container.bbclass | |||
@@ -1,6 +1,6 @@ | |||
1 | ROOTFS_BOOTSTRAP_INSTALL = "" | 1 | ROOTFS_BOOTSTRAP_INSTALL = "" |
2 | IMAGE_TYPES_MASKED += "container" | 2 | IMAGE_TYPES_MASKED += "container" |
3 | IMAGE_TYPEDEP_container = "tar.bz2" | 3 | IMAGE_TYPEDEP:container = "tar.bz2" |
4 | 4 | ||
5 | python __anonymous() { | 5 | python __anonymous() { |
6 | if "container" in d.getVar("IMAGE_FSTYPES") and \ | 6 | if "container" in d.getVar("IMAGE_FSTYPES") and \ |