diff options
author | Lans Zhang <jia.zhang@windriver.com> | 2017-06-26 11:25:31 +0800 |
---|---|---|
committer | Lans Zhang <jia.zhang@windriver.com> | 2017-06-26 11:25:31 +0800 |
commit | dcc933df6e9ab127e19a77c2322a1816c04b03c4 (patch) | |
tree | 422c019b649232cd1fd4cbccc8692f59a9d44fd4 /meta-efi-secure-boot | |
parent | 92f65d339494996137218c27620bb97ff7ade397 (diff) | |
download | meta-secure-core-dcc933df6e9ab127e19a77c2322a1816c04b03c4.tar.gz |
linux-yocto-efi-secure-boot: don't use sccs to define the included kernel cfg
The variable sccs is used internally and thus it will be corrupted by the external
definition.
Signed-off-by: Lans Zhang <jia.zhang@windriver.com>
Diffstat (limited to 'meta-efi-secure-boot')
-rw-r--r-- | meta-efi-secure-boot/recipes-kernel/linux/linux-yocto-efi-secure-boot.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-efi-secure-boot/recipes-kernel/linux/linux-yocto-efi-secure-boot.inc b/meta-efi-secure-boot/recipes-kernel/linux/linux-yocto-efi-secure-boot.inc index 8c570a1..94be38d 100644 --- a/meta-efi-secure-boot/recipes-kernel/linux/linux-yocto-efi-secure-boot.inc +++ b/meta-efi-secure-boot/recipes-kernel/linux/linux-yocto-efi-secure-boot.inc | |||
@@ -1,11 +1,11 @@ | |||
1 | FILESEXTRAPATHS_prepend := "${THISDIR}/linux-yocto:" | 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/linux-yocto:" |
2 | 2 | ||
3 | sccs = " \ | 3 | efi_secure_boot_sccs = " \ |
4 | ${@bb.utils.contains('DISTRO_FEATURES', 'efi-secure-boot', \ | 4 | ${@bb.utils.contains('DISTRO_FEATURES', 'efi-secure-boot', \ |
5 | 'cfg/efi-ext.scc', '', d)} \ | 5 | 'cfg/efi-ext.scc', '', d)} \ |
6 | " | 6 | " |
7 | KERNEL_FEATURES_append_x86 += "${sccs}" | 7 | KERNEL_FEATURES_append_x86 += "${efi_secure_boot_sccs}" |
8 | KERNEL_FEATURES_append_x86-64 += "${sccs}" | 8 | KERNEL_FEATURES_append_x86-64 += "${efi_secure_boot_sccs}" |
9 | 9 | ||
10 | inherit user-key-store | 10 | inherit user-key-store |
11 | 11 | ||