From 80afdd710922f82171bb9250c33dca18475f42ca Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Thu, 15 Mar 2018 11:15:58 +0100 Subject: cleanup and plan for stage4 --- prepare_stage4_repo.sh | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 prepare_stage4_repo.sh (limited to 'prepare_stage4_repo.sh') diff --git a/prepare_stage4_repo.sh b/prepare_stage4_repo.sh new file mode 100755 index 0000000..dbad677 --- /dev/null +++ b/prepare_stage4_repo.sh @@ -0,0 +1,28 @@ +#!/bin/sh + +# shellcheck source=./default.conf +. "./default.conf" + +# prepare the i486-build for stage 4 + +if test ! -d $STAGE4_CHROOT; then + mkdir $STAGE4_CHROOT + mkdir -p $STAGE4_PACKAGES +fi + +if test ! -d $STAGE4_BUILD; then + + # prepare the build enviroment + + mkdir $STAGE4_BUILD + cd $STAGE4_BUILD || exit 1 + + # TODO: actually build a STAGE4 hdd from the build artifacts of + # stage 3, for now we just copy the vm from stage2 after building + # and installing all packages from stage 3 and use it as new build + # machine. + + echo "Prepared the stage 4 build environment." +fi + +echo "Stage 4 ready." -- cgit v1.2.3