summaryrefslogtreecommitdiffstats
path: root/meta-efi-secure-boot
diff options
context:
space:
mode:
authorLans Zhang <jia.zhang@windriver.com>2017-06-26 11:25:31 +0800
committerLans Zhang <jia.zhang@windriver.com>2017-06-26 11:25:31 +0800
commitdcc933df6e9ab127e19a77c2322a1816c04b03c4 (patch)
tree422c019b649232cd1fd4cbccc8692f59a9d44fd4 /meta-efi-secure-boot
parent92f65d339494996137218c27620bb97ff7ade397 (diff)
downloadmeta-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.inc6
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 @@
1FILESEXTRAPATHS_prepend := "${THISDIR}/linux-yocto:" 1FILESEXTRAPATHS_prepend := "${THISDIR}/linux-yocto:"
2 2
3sccs = " \ 3efi_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"
7KERNEL_FEATURES_append_x86 += "${sccs}" 7KERNEL_FEATURES_append_x86 += "${efi_secure_boot_sccs}"
8KERNEL_FEATURES_append_x86-64 += "${sccs}" 8KERNEL_FEATURES_append_x86-64 += "${efi_secure_boot_sccs}"
9 9
10inherit user-key-store 10inherit user-key-store
11 11