CONF: add watchdog MACHINE_FEATURES

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
This commit is contained in:
Christophe Priouzeau 2019-05-02 10:57:17 +02:00
parent e34bff682c
commit 81761d5b75
1 changed files with 5 additions and 0 deletions

View File

@ -23,6 +23,7 @@ BOOTSCHEME_LABELS ??= "basic trusted optee"
# Default machine feature # Default machine feature
MACHINE_FEATURES = "usbhost usbgadget alsa screen ext2" MACHINE_FEATURES = "usbhost usbgadget alsa screen ext2"
MACHINE_FEATURES_append = " ${@bb.utils.contains('BOOTSCHEME_LABELS', 'optee', 'optee', '', d)} " MACHINE_FEATURES_append = " ${@bb.utils.contains('BOOTSCHEME_LABELS', 'optee', 'optee', '', d)} "
MACHINE_FEATURES_append = " watchdog "
MACHINE_FEATURES_append = " tpm2 " MACHINE_FEATURES_append = " tpm2 "
# Default serial consoles (TTYs) to enable using getty # Default serial consoles (TTYs) to enable using getty
@ -158,6 +159,10 @@ ST_TOOLS_FOR_SDK_append = " \
nativesdk-glibc-gconv-utf-16 \ nativesdk-glibc-gconv-utf-16 \
nativesdk-glibc-gconv-utf-32 \ nativesdk-glibc-gconv-utf-32 \
" "
# For support wayland-scanner in SDK
ST_TOOLS_FOR_SDK_append = " \
nativesdk-wayland \
"
# for populate_sdk, we will have all the tools # for populate_sdk, we will have all the tools
TOOLCHAIN_HOST_TASK_append = " ${ST_TOOLS_FOR_SDK} " TOOLCHAIN_HOST_TASK_append = " ${ST_TOOLS_FOR_SDK} "