ccmp15: manually add "optee" to MACHINE_FEATURES
STM's st-machine-common-stm32mp.inc file automatically incorporates "optee" to
MACHINE_FEATURES as long as BOOTSCHEME_LABELS contains "optee". Since we
recently modified the ccmp15's labels to only contain "opteemin", this is no
longer the case, which leads to:
* optee packages (optee-client, optee-os) not getting installed in images and
SDKs
* optee patches for environment encryption not being applied to libubootenv
Add the feature manually to fix these two issues
Signed-off-by: Gabriel Valcazar <gabriel.valcazar@digi.com>
This commit is contained in:
parent
4f09a9f546
commit
30990b4c2e
|
|
@ -80,6 +80,9 @@ BOOTSCHEME_DEFAULT ?= "opteemin"
|
|||
MACHINE_FEATURES += "bluetooth"
|
||||
MACHINE_FEATURES += "wifi"
|
||||
MACHINE_FEATURES += "gpu"
|
||||
# When BOOTSCHEME_LABELS is set to "opteemin", optee doesn't get automatically
|
||||
# added to MACHINE_FEATURES. Add it manually
|
||||
MACHINE_FEATURES += "optee"
|
||||
|
||||
# =========================================================================
|
||||
# Firmware
|
||||
|
|
|
|||
Loading…
Reference in New Issue