From 37be8f73669ddadf2259656f656af5f5c5bc39b9 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sun, 28 Jan 2018 18:25:52 +0100 Subject: added package descriptions for stage1 added stage1 build script shellchecked all scripts --- build_stage1.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 build_stage1.sh (limited to 'build_stage1.sh') diff --git a/build_stage1.sh b/build_stage1.sh new file mode 100755 index 0000000..33ad94b --- /dev/null +++ b/build_stage1.sh @@ -0,0 +1,15 @@ +#!/bin/sh + +. "./default.conf" + +# build all packages for stage 1 using the cross-compiler +# packages will be installed with pacman into $STAGE1_CHROOT, dependencies +# for cross-compiling packages will be installed with bsdtar into +# the sysroot of the specific cross compiler in $XTOOLS_ARCH + +PACKAGES="iana-etc filesystem tzdata" + +for p in $PACKAGES; do + "$SCRIPT_DIR/build_stage1_package.sh" "$p" +done + -- cgit v1.2.3-54-g00ecf