summaryrefslogtreecommitdiffstats
path: root/meta-initramfs/recipes-kernel
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2021-07-29 17:04:53 +0200
committerKhem Raj <raj.khem@gmail.com>2021-08-03 10:21:25 -0700
commitc61dc077bbd81260e4f167fa2251643ba0ba6974 (patch)
tree66c3243f8f64ae60f66f70a16e8128c247254a65 /meta-initramfs/recipes-kernel
parentc5f7cfb8db54cfa4257797db5bd87828dea43296 (diff)
downloadmeta-openembedded-c61dc077bbd81260e4f167fa2251643ba0ba6974.tar.gz
Convert to new override syntax
This is the result of automated script (0.9.1) conversion: oe-core/scripts/contrib/convert-overrides.py . converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-initramfs/recipes-kernel')
-rw-r--r--meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc_git.bb22
1 files changed, 11 insertions, 11 deletions
diff --git a/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc_git.bb b/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc_git.bb
index 656162fb1a..393f04fb31 100644
--- a/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc_git.bb
+++ b/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc_git.bb
@@ -43,22 +43,22 @@ FROM_OE_CORE = "file://arm_crashdump-fix-buffer-align.patch \
43 43
44SRC_URI += "${BUILD_PATCHES} ${KLIBC_PATCHES} ${WARNING_FIXES} ${FROM_OE_CORE}" 44SRC_URI += "${BUILD_PATCHES} ${KLIBC_PATCHES} ${WARNING_FIXES} ${FROM_OE_CORE}"
45 45
46SRC_URI_append_arm = " file://arm_crashdump.patch" 46SRC_URI:append:arm = " file://arm_crashdump.patch"
47 47
48SRC_URI_append_mips = " file://140-mips_disable_devicetree_support.patch" 48SRC_URI:append:mips = " file://140-mips_disable_devicetree_support.patch"
49SRC_URI_append_mipsel = " file://140-mips_disable_devicetree_support.patch" 49SRC_URI:append:mipsel = " file://140-mips_disable_devicetree_support.patch"
50 50
51SRC_URI_append_x86 = " file://x86_sys_io.patch file://x86_basename.patch \ 51SRC_URI:append:x86 = " file://x86_sys_io.patch file://x86_basename.patch \
52 file://x86_vfscanf.patch file://x86_kexec_test.patch" 52 file://x86_vfscanf.patch file://x86_kexec_test.patch"
53 53
54SRC_URI_append_x86-64 = " file://x86_sys_io.patch file://x86_basename.patch \ 54SRC_URI:append:x86-64 = " file://x86_sys_io.patch file://x86_basename.patch \
55 file://x86_vfscanf.patch file://x86_kexec_test.patch" 55 file://x86_vfscanf.patch file://x86_kexec_test.patch"
56 56
57SRC_URI_append_aarch64 = " file://arm64_kexec-image-header.h-add-missing-le64toh.patch \ 57SRC_URI:append:aarch64 = " file://arm64_kexec-image-header.h-add-missing-le64toh.patch \
58 file://arm64-crashdump-arm64.c-fix-warning.patch \ 58 file://arm64-crashdump-arm64.c-fix-warning.patch \
59 file://arm64_kexec-arm64.c-workaround-for-getrandom-syscall.patch" 59 file://arm64_kexec-arm64.c-workaround-for-getrandom-syscall.patch"
60 60
61SRC_URI_append_powerpc = " file://powerpc-purgatory-Makefile-remove-unknown-flags.patch" 61SRC_URI:append:powerpc = " file://powerpc-purgatory-Makefile-remove-unknown-flags.patch"
62 62
63S = "${WORKDIR}/git" 63S = "${WORKDIR}/git"
64 64
@@ -69,7 +69,7 @@ EXTRA_OECONF += "--without-zlib --without-lzma --without-xen"
69CFLAGS += "-O2 -I${STAGING_DIR_HOST}${libdir}/klibc/include -I${S}/purgatory/include \ 69CFLAGS += "-O2 -I${STAGING_DIR_HOST}${libdir}/klibc/include -I${S}/purgatory/include \
70 -I${STAGING_DIR_HOST}${libdir}/klibc/include/bits${SITEINFO_BITS}" 70 -I${STAGING_DIR_HOST}${libdir}/klibc/include/bits${SITEINFO_BITS}"
71 71
72do_compile_prepend() { 72do_compile:prepend() {
73 # Remove the prepackaged config.h from the source tree as it overrides 73 # Remove the prepackaged config.h from the source tree as it overrides
74 # the same file generated by configure and placed in the build tree 74 # the same file generated by configure and placed in the build tree
75 rm -f ${S}/include/config.h 75 rm -f ${S}/include/config.h
@@ -86,9 +86,9 @@ do_compile_prepend() {
86 86
87PACKAGES =+ "kexec-klibc vmcore-dmesg-klibc" 87PACKAGES =+ "kexec-klibc vmcore-dmesg-klibc"
88 88
89FILES_kexec-klibc = "${sbindir}/kexec" 89FILES:kexec-klibc = "${sbindir}/kexec"
90FILES_vmcore-dmesg-klibc = "${sbindir}/vmcore-dmesg" 90FILES:vmcore-dmesg-klibc = "${sbindir}/vmcore-dmesg"
91 91
92INSANE_SKIP_${PN} = "arch" 92INSANE_SKIP:${PN} = "arch"
93 93
94COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*|powerpc.*|mips.*)-(linux|freebsd.*)' 94COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*|powerpc.*|mips.*)-(linux|freebsd.*)'