summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--boards.cfg3
-rwxr-xr-xmkconfig7
2 files changed, 8 insertions, 2 deletions
diff --git a/boards.cfg b/boards.cfg
index e1685905720..029553d66fb 100644
--- a/boards.cfg
+++ b/boards.cfg
@@ -397,7 +397,7 @@ Active arm pxa - - vpac270
Active arm pxa - icpdas lp8x4x lp8x4x - Sergey Yanovich <[email protected]>
Active arm pxa - toradex - colibri_pxa270 - Marek Vasut <[email protected]>
Active arm sa1100 - - - jornada - Kristoffer Ericson <[email protected]>
-Active arm armv8 - armltd vexpress64 vexpress_aemv8a vexpress_aemv8a:ARM64 David Feng <[email protected]>
+Active aarch64 armv8 - armltd vexpress64 vexpress_aemv8a vexpress_aemv8a:ARM64 David Feng <[email protected]>
Active avr32 at32ap at32ap700x atmel - atngw100 - Haavard Skinnemoen <[email protected]>
Active avr32 at32ap at32ap700x atmel - atngw100mkii - Andreas Bießmann <[email protected]>
Active avr32 at32ap at32ap700x atmel atstk1000 atstk1002 - Haavard Skinnemoen <[email protected]>
@@ -1242,4 +1242,3 @@ Orphan powerpc mpc8xx - - genietv
Orphan powerpc mpc8xx - - mbx8xx MBX - -
Orphan powerpc mpc8xx - - mbx8xx MBX860T - -
Orphan powerpc mpc8xx - - nx823 NX823 - -
-
diff --git a/mkconfig b/mkconfig
index 40db9910081..b96c81fbc2b 100755
--- a/mkconfig
+++ b/mkconfig
@@ -85,6 +85,13 @@ if [ "${ARCH}" -a "${ARCH}" != "${arch}" ]; then
exit 1
fi
+#
+# Test above needed aarch64, now we need arm
+#
+if [ "${arch}" = "aarch64" ]; then
+ arch="arm"
+fi
+
if [ "$options" ] ; then
echo "Configuring for ${BOARD_NAME} - Board: ${CONFIG_NAME}, Options: ${options}"
else