diff options
Diffstat (limited to 'recipes-kernel/kernel-modules/kernel-module-ipc.inc')
-rw-r--r-- | recipes-kernel/kernel-modules/kernel-module-ipc.inc | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes-kernel/kernel-modules/kernel-module-ipc.inc b/recipes-kernel/kernel-modules/kernel-module-ipc.inc new file mode 100644 index 00000000..a496ab6d --- /dev/null +++ b/recipes-kernel/kernel-modules/kernel-module-ipc.inc | |||
@@ -0,0 +1,25 @@ | |||
1 | SUMMARY = "Linux IPC KERNEL MODULE " | ||
2 | DESCRIPTION = "DSP boot application and ipc test application" | ||
3 | LICENSE = "BSD" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=fa38cd73d71527dc6efb546474f64d10" | ||
5 | |||
6 | require recipes-extended/ipc-ust/ipc.inc | ||
7 | |||
8 | inherit module qoriq_build_64bit_kernel | ||
9 | |||
10 | S = "${WORKDIR}/git" | ||
11 | |||
12 | do_configure[depends] += "virtual/kernel:do_shared_workdir" | ||
13 | do_configure_prepend() { | ||
14 | sed -i 's,$(KERNEL_DIR)/.config,$(KBUILD_OUTPUT)/.config,' ${S}/kernel/Makefile | ||
15 | } | ||
16 | |||
17 | do_compile_prepend () { | ||
18 | cd ${S}/kernel | ||
19 | case ${MACHINE} in | ||
20 | bsc9132qds|bsc9131rdb) SOC=B913x;; | ||
21 | b4860qds|b4420qds) SOC=B4860;; | ||
22 | esac | ||
23 | } | ||
24 | |||
25 | INHIBIT_PACKAGE_STRIP = "1" | ||