diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-04-28 15:11:10 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-04-29 15:02:19 +0100 |
commit | a98d9c5b7141d3d22cd324ecd4c5127aa78f2ab5 (patch) | |
tree | db49ee50ac48f5da14259257574c4f05fdf6470b /meta/classes/image.bbclass | |
parent | 2aa51e2e3146a0719e384b5c7af29774cd64d5ff (diff) | |
download | poky-a98d9c5b7141d3d22cd324ecd4c5127aa78f2ab5.tar.gz |
image/packagegroup: Remove PACKAGE_GROUP_*, long since deprecated
This was deprecated in 2014 so we can safely remove the old code now.
(From OE-Core rev: fe1b79188cbe8159a0950f0c02d7f476a6694a04)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r-- | meta/classes/image.bbclass | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 07aa1f1fa5..694b58fc9f 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
@@ -62,10 +62,7 @@ def check_image_features(d): | |||
62 | valid_features = (d.getVarFlag('IMAGE_FEATURES', 'validitems') or "").split() | 62 | valid_features = (d.getVarFlag('IMAGE_FEATURES', 'validitems') or "").split() |
63 | valid_features += d.getVarFlags('COMPLEMENTARY_GLOB').keys() | 63 | valid_features += d.getVarFlags('COMPLEMENTARY_GLOB').keys() |
64 | for var in d: | 64 | for var in d: |
65 | if var.startswith("PACKAGE_GROUP_"): | 65 | if var.startswith("FEATURE_PACKAGES_"): |
66 | bb.warn("PACKAGE_GROUP is deprecated, please use FEATURE_PACKAGES instead") | ||
67 | valid_features.append(var[14:]) | ||
68 | elif var.startswith("FEATURE_PACKAGES_"): | ||
69 | valid_features.append(var[17:]) | 66 | valid_features.append(var[17:]) |
70 | valid_features.sort() | 67 | valid_features.sort() |
71 | 68 | ||