diff options
-rw-r--r-- | recipes-kernel/linux/linux-qoriq-sdk.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/recipes-kernel/linux/linux-qoriq-sdk.bb b/recipes-kernel/linux/linux-qoriq-sdk.bb index 7dd7059..b7ca721 100644 --- a/recipes-kernel/linux/linux-qoriq-sdk.bb +++ b/recipes-kernel/linux/linux-qoriq-sdk.bb | |||
@@ -11,13 +11,18 @@ SRC_URI += "file://libtraceevent-Remove-hard-coded-include-to-usr-local-include- | |||
11 | 11 | ||
12 | PR = "${INC_PR}.1" | 12 | PR = "${INC_PR}.1" |
13 | 13 | ||
14 | DEPENDS_append = " libgcc" | 14 | DEPENDS_append = " libgcc kern-tools-native" |
15 | KERNEL_CC_append = " ${TOOLCHAIN_OPTIONS}" | 15 | KERNEL_CC_append = " ${TOOLCHAIN_OPTIONS}" |
16 | KERNEL_LD_append = " ${TOOLCHAIN_OPTIONS}" | 16 | KERNEL_LD_append = " ${TOOLCHAIN_OPTIONS}" |
17 | 17 | ||
18 | do_configure_prepend() { | 18 | do_configure_prepend() { |
19 | # copy desired defconfig so we pick it up for the real kernel_do_configure | 19 | # copy desired defconfig so we pick it up for the real kernel_do_configure |
20 | cp ${KERNEL_DEFCONFIG} ${B}/.config | 20 | cp ${KERNEL_DEFCONFIG} ${B}/.config |
21 | |||
22 | # add config fragments | ||
23 | if [ -a "${DELTA_KERNEL_DEFCONFIG}" ]; then | ||
24 | merge_config.sh -m .config ${DELTA_KERNEL_DEFCONFIG} | ||
25 | fi | ||
21 | 26 | ||
22 | # append sdk version in kernel version if SDK_VERSION is defined | 27 | # append sdk version in kernel version if SDK_VERSION is defined |
23 | if [ -n "${SDK_VERSION}" ]; then | 28 | if [ -n "${SDK_VERSION}" ]; then |