[PATCH 4/9] Use wildcard in kernel bbappend name
linux-kernel: Use wildcard in version to minimize keeping
in-sync with Poky. Signed-off-by: Armin Kuster <akuster808@...> --- recipes-kernel/linux/linux-yocto_3.%.bbappend | 7 +++++++ recipes-kernel/linux/linux-yocto_3.8.bbappend | 7 ------- 2 files changed, 7 insertions(+), 7 deletions(-) create mode 100644 recipes-kernel/linux/linux-yocto_3.%.bbappend delete mode 100644 recipes-kernel/linux/linux-yocto_3.8.bbappend diff --git a/recipes-kernel/linux/linux-yocto_3.%.bbappend b/recipes-kernel/linux/linux-yocto_3.%.bbappend new file mode 100644 index 0000000..f9487f2 --- /dev/null +++ b/recipes-kernel/linux/linux-yocto_3.%.bbappend @@ -0,0 +1,7 @@ +FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" + +# Enable selinux support in the kernel if the feature is enabled +SRC_URI += "${@base_contains('DISTRO_FEATURES', 'selinux', 'file://selinux.cfg', '', d)}" +# For inconsistent kallsyms data bug on ARM +# http://lists.infradead.org/pipermail/linux-arm-kernel/2012-March/thread.html#89718 +EXTRA_OEMAKE += "${@base_contains('TARGET_ARCH', 'arm', ' KALLSYMS_EXTRA_PASS=1', '', d)}" diff --git a/recipes-kernel/linux/linux-yocto_3.8.bbappend b/recipes-kernel/linux/linux-yocto_3.8.bbappend deleted file mode 100644 index f9487f2..0000000 --- a/recipes-kernel/linux/linux-yocto_3.8.bbappend +++ /dev/null @@ -1,7 +0,0 @@ -FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" - -# Enable selinux support in the kernel if the feature is enabled -SRC_URI += "${@base_contains('DISTRO_FEATURES', 'selinux', 'file://selinux.cfg', '', d)}" -# For inconsistent kallsyms data bug on ARM -# http://lists.infradead.org/pipermail/linux-arm-kernel/2012-March/thread.html#89718 -EXTRA_OEMAKE += "${@base_contains('TARGET_ARCH', 'arm', ' KALLSYMS_EXTRA_PASS=1', '', d)}" -- 1.9.1 |
|