Andrew Geissler | a1a6aef | 2021-06-25 14:23:58 -0500 | [diff] [blame] | 1 | addhandler security_bbappend_distrocheck |
| 2 | security_bbappend_distrocheck[eventmask] = "bb.event.SanityCheck" |
| 3 | python security_bbappend_distrocheck() { |
Andrew Geissler | d159c7f | 2021-09-02 21:05:58 -0500 | [diff] [blame] | 4 | skip_check = e.data.getVar('SKIP_META_SECURITY_SANITY_CHECK') == "1" |
Andrew Geissler | a1a6aef | 2021-06-25 14:23:58 -0500 | [diff] [blame] | 5 | if 'security' not in e.data.getVar('DISTRO_FEATURES').split() and not skip_check: |
| 6 | bb.warn("You have included the meta-security layer, but \ |
| 7 | 'security' has not been enabled in your DISTRO_FEATURES. Some bbappend files \ |
| 8 | and preferred version setting may not take effect. See the meta-security README \ |
| 9 | for details on enabling security support.") |
| 10 | } |