mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 00:20:08 +00:00
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>
This commit is contained in:
@@ -62,10 +62,7 @@ def check_image_features(d):
|
||||
valid_features = (d.getVarFlag('IMAGE_FEATURES', 'validitems') or "").split()
|
||||
valid_features += d.getVarFlags('COMPLEMENTARY_GLOB').keys()
|
||||
for var in d:
|
||||
if var.startswith("PACKAGE_GROUP_"):
|
||||
bb.warn("PACKAGE_GROUP is deprecated, please use FEATURE_PACKAGES instead")
|
||||
valid_features.append(var[14:])
|
||||
elif var.startswith("FEATURE_PACKAGES_"):
|
||||
if var.startswith("FEATURE_PACKAGES_"):
|
||||
valid_features.append(var[17:])
|
||||
valid_features.sort()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user