aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndre Przywara <andre.przywara@arm.com>2021-12-22 18:16:03 +0000
committerMark Rutland <mark.rutland@arm.com>2022-01-07 14:10:13 +0000
commit4c2d1420230ad0e41b79b6b225450645732f885a (patch)
tree75f3fbee366d1ab7e3146330e27f0b8f23158ce7
parent0212217866e20e6fc9d59dad843b0bca47ff0212 (diff)
downloadboot-wrapper-aarch64-4c2d1420230ad0e41b79b6b225450645732f885a.tar.gz
configure: Fix default DTB
The DTS files for Arm Ltd. boards and the fastmodel have long been moved into the arm/ subdirectory of the arm64 kernel tree's DT folder. Adjust the default path to make this build out of the box. Also change the default DTB to the more modern FVP RevC model on the way. Signed-off-by: Andre Przywara <andre.przywara@arm.com> Signed-off-by: Mark Rutland <mark.rutland@arm.com>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 852fd9a..2b295de 100644
--- a/configure.ac
+++ b/configure.ac
@@ -33,7 +33,7 @@ AC_ARG_WITH([kernel-dir],
AS_IF([test "x$KERNEL_ES" = x32],
[KERN_IMAGE=$KERN_DIR/arch/arm/boot/zImage],
[KERN_IMAGE=$KERN_DIR/arch/arm64/boot/Image])
-KERN_DTB=$KERN_DIR/arch/arm64/boot/dts/rtsm_ve-aemv8a.dtb
+KERN_DTB=$KERN_DIR/arch/arm64/boot/dts/arm/fvp-base-revc.dtb
# Allow the user to override the default DTB
AC_ARG_WITH([dtb],