From 7e6691e999bf1fcda58fdb782932c598b1f7bd03 Mon Sep 17 00:00:00 2001 From: Vitali64 Date: Sat, 11 Dec 2021 10:11:49 +0100 Subject: [PATCH] Add ARMv7 and AArch64 support --- resources/scripts/build/boot/roms_helper | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/resources/scripts/build/boot/roms_helper b/resources/scripts/build/boot/roms_helper index 726950d4..2d8dce78 100755 --- a/resources/scripts/build/boot/roms_helper +++ b/resources/scripts/build/boot/roms_helper @@ -149,6 +149,14 @@ if [ "${arch}" = "x86_32" ] || [ "${arch}" = "x86_64" ]; then # 32-bit ROM images, so we only need to worry about i386-elf ) fi +elif [ "${arch}" = "ARMv7" ]; then + cat version > "${cbdir}/.coreboot-version" + cd "${cbdir}" + make crossgcc-arm CPUS=$(nproc) # This is for armv7, doesn't apply to aarch64 +elif [ "${arch}" = "AArch64" ]; then + cat version > "${cbdir}/.coreboot-version" + cd "${cbdir}" + make crossgcc-aarch64 CPUS=$(nproc) # This is for aarch64, doesn't apply to armv7 fi if [ ! -f "${cbfstool}" ]; then