From 5ec69a1509ad10d68b93577b64f214eb80259bc4 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Mon, 12 Feb 2018 15:32:05 +0000 Subject: [PATCH] Add lua to build script --- tools/boot/universe.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/tools/boot/universe.sh b/tools/boot/universe.sh index 0b14a18b4d0f..1c27f97070fb 100755 --- a/tools/boot/universe.sh +++ b/tools/boot/universe.sh @@ -76,6 +76,20 @@ for i in \ dobuild $ta _.boot.${ta}.log "" done +# Default build for a goodly selection of architectures with Lua +for i in \ + amd64/amd64 \ + arm/arm arm/armeb arm/armv7 \ + arm64/aarch64 \ + i386/i386 \ + mips/mips mips/mips64 \ + powerpc/powerpc powerpc/powerpc64 \ + sparc64/sparc64 \ + ; do + ta=${i##*/} + dobuild $ta _.boot.${ta}.lua.log "MK_LOADEDER_LUA=yes MK_FORTH=no" +done + # Build w/o ZFS for i in \ amd64/amd64 \