diff options
author | Mark Hatle <mark.hatle@amd.com> | 2025-07-02 16:44:20 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-07-07 22:12:50 +0100 |
commit | e02671f8406a11dc3dd0103f7cb21b7719f8b59b (patch) | |
tree | 7dd7ad9f39017883fadcf4fa590c78b737f4bc3c | |
parent | 7c354e6e24267ff1a6733315d3c78d4ce119c32a (diff) | |
download | poky-e02671f8406a11dc3dd0103f7cb21b7719f8b59b.tar.gz |
features_check.bbclass: Add support for required TUNE_FEATURES
(From OE-Core rev: a8ef7339ecb9eee909224e7cf23ccd48ef105d93)
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes-recipe/features_check.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-recipe/features_check.bbclass b/meta/classes-recipe/features_check.bbclass index 4e122ecaef..1e0eaa4eed 100644 --- a/meta/classes-recipe/features_check.bbclass +++ b/meta/classes-recipe/features_check.bbclass | |||
@@ -21,7 +21,7 @@ python () { | |||
21 | 21 | ||
22 | unused = True | 22 | unused = True |
23 | 23 | ||
24 | for kind in ['DISTRO', 'MACHINE', 'COMBINED', 'IMAGE']: | 24 | for kind in ['DISTRO', 'MACHINE', 'COMBINED', 'IMAGE', 'TUNE']: |
25 | if d.getVar('ANY_OF_' + kind + '_FEATURES') is None and not d.hasOverrides('ANY_OF_' + kind + '_FEATURES') and \ | 25 | if d.getVar('ANY_OF_' + kind + '_FEATURES') is None and not d.hasOverrides('ANY_OF_' + kind + '_FEATURES') and \ |
26 | d.getVar('REQUIRED_' + kind + '_FEATURES') is None and not d.hasOverrides('REQUIRED_' + kind + '_FEATURES') and \ | 26 | d.getVar('REQUIRED_' + kind + '_FEATURES') is None and not d.hasOverrides('REQUIRED_' + kind + '_FEATURES') and \ |
27 | d.getVar('CONFLICT_' + kind + '_FEATURES') is None and not d.hasOverrides('CONFLICT_' + kind + '_FEATURES'): | 27 | d.getVar('CONFLICT_' + kind + '_FEATURES') is None and not d.hasOverrides('CONFLICT_' + kind + '_FEATURES'): |