diff options
author | Warner Losh <imp@FreeBSD.org> | 2018-02-12 15:32:05 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2018-02-12 15:32:05 +0000 |
commit | 5ec69a1509ad10d68b93577b64f214eb80259bc4 (patch) | |
tree | c257d009402281c1e4fae0d27bd809737b451f45 /tools | |
parent | 088b4f5f323e73e5eb54b0e409b064ff5d46d221 (diff) | |
download | src-5ec69a1509ad10d68b93577b64f214eb80259bc4.tar.gz src-5ec69a1509ad10d68b93577b64f214eb80259bc4.zip |
Notes
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/boot/universe.sh | 14 |
1 files changed, 14 insertions, 0 deletions
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 \ |