the following patch was just integrated into master:
commit 17b9c198e0ebbd79d1b581eba0810a4c7979f012
Author: Marc Jones <marc.jones(a)se-eng.com>
Date: Fri Jan 16 13:45:23 2015 -0700
arm64: Prepare ARM64 for building
There were a number of issues with the ARM64 build files. This
patch ports the following changes from ARMV4/V7 to ARMV8:
- make armv8 Kconfig options consistent with armv4/v7
- fix build include issues in boot.c, tables.c,
and early_variables.h by matching armv4/v7.
Change-Id: I57359a96821d88c50f48dc0bb6ad226cacb0c2ec
Signed-off-by: Marc Jones <marc.jones(a)se-eng.com>
Change-Id: Iacd95d336559c45458784d1da67bde62a0956620
Reviewed-on: http://review.coreboot.org/8236
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
See http://review.coreboot.org/8236 for details.
-gerrit
the following patch was just integrated into master:
commit c4dbdaf50a8fa67e0d17e237eb0dcb6309240dd6
Author: Marc Jones <marc.jones(a)se-eng.com>
Date: Fri Jan 16 13:19:04 2015 -0700
xcompile: Rename aarch64 to arm64
coreboot toolchain.inc uses the ARCH_SUPPORTED variable set
by xcompile. This change allows for consistent naming in the
toolchain.inc generated variables.
Change-Id: Iafed06cf2d19a533f99e10b76aca82adc3e09fa8
Signed-off-by: Marc Jones <marc.jones(a)se-eng.com>
Reviewed-on: http://review.coreboot.org/8235
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Reviewed-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
Tested-by: build bot (Jenkins)
See http://review.coreboot.org/8235 for details.
-gerrit
Marc Jones (marc.jones(a)se-eng.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/8235
-gerrit
commit 24f8868c00670d6127ad291feb609532e0f5a653
Author: Marc Jones <marc.jones(a)se-eng.com>
Date: Fri Jan 16 13:19:04 2015 -0700
xcompile: Rename aarch64 to arm64
coreboot toolchain.inc uses the ARCH_SUPPORTED variable set
by xcompile. This change allows for consistent naming in the
toolchain.inc generated variables.
Change-Id: Iafed06cf2d19a533f99e10b76aca82adc3e09fa8
Signed-off-by: Marc Jones <marc.jones(a)se-eng.com>
---
util/xcompile/xcompile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile
index 45dae8c..47e4338 100755
--- a/util/xcompile/xcompile
+++ b/util/xcompile/xcompile
@@ -168,7 +168,7 @@ EOF
}
# Architecture definition
-SUPPORTED_ARCHITECTURE="x86 arm aarch64 riscv"
+SUPPORTED_ARCHITECTURE="x86 arm arm64 riscv"
arch_config_arm() {
TARCH="arm"
@@ -179,8 +179,8 @@ arch_config_arm() {
TABI="eabi"
}
-arch_config_aarch64() {
- TARCH="aarch64"
+arch_config_arm64() {
+ TARCH="arm64"
TBFDARCH="littleaarch64"
TCLIST="aarch64"
TWIDTH="64"