aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiku Voipio <riku.voipio@linaro.org>2015-01-13 09:22:43 +0000
committerLinaro Code Review <review@review.linaro.org>2015-01-13 09:22:43 +0000
commite4548a1441db09344e4d4fc53eeda4f7811510c6 (patch)
tree71c1fb1e8c82df8354b1dd76fa48cee3d2bb1afa
parent25fa86b75db92c288b186cd5c6b398645b475fca (diff)
parent3f97d33efa613ff7ecd34cea90faf3dee1621551 (diff)
Merge "bootwrapper: update device tree files location"
-rw-r--r--meta-linaro/recipes-kernel/linux/bootwrapper.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-linaro/recipes-kernel/linux/bootwrapper.inc b/meta-linaro/recipes-kernel/linux/bootwrapper.inc
index 23b4eccc..cbe5a068 100644
--- a/meta-linaro/recipes-kernel/linux/bootwrapper.inc
+++ b/meta-linaro/recipes-kernel/linux/bootwrapper.inc
@@ -29,21 +29,21 @@ do_compile_append() {
--with-cmdline="${BOOTARGS_COMMON} root=/dev/vda"
make IMAGE=linux-system-foundation.axf clean
make DTC=${B}/scripts/dtc/dtc \
- KERNEL_DTB="${DTBDIR}/foundation-v8.dtb" \
+ KERNEL_DTB=`find ${DTBDIR} -type f -name "foundation-v8.dtb"` \
IMAGE=linux-system-foundation.axf
make IMAGE=img-foundation.axf clean
./configure --host=aarch64-linux-gnu \
--with-kernel-dir="${B}" \
--with-cmdline="${BOOTARGS_COMMON} root=/dev/vda2"
make DTC=${B}/scripts/dtc/dtc \
- KERNEL_DTB="${DTBDIR}/foundation-v8.dtb" \
+ KERNEL_DTB=`find ${DTBDIR} -type f -name "foundation-v8.dtb"` \
IMAGE=img-foundation.axf
make IMAGE=img.axf clean
./configure --host=aarch64-linux-gnu \
--with-kernel-dir="${B}" \
--with-cmdline="${BOOTARGS_COMMON} root=/dev/mmcblk0p2"
make DTC=${B}/scripts/dtc/dtc \
- KERNEL_DTB="${DTBDIR}/rtsm_ve-aemv8a.dtb" \
+ KERNEL_DTB=`find ${DTBDIR} -type f -name "rtsm_ve-aemv8a.dtb"` \
IMAGE=img.axf
}