Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/prepare_stage3.sh
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2018-03-15 11:15:58 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2018-03-15 11:15:58 +0100
commit80afdd710922f82171bb9250c33dca18475f42ca (patch)
tree2c604fc7cd126de2d039021e98356c1344e88a5f /prepare_stage3.sh
parent69f68ac358363ac31110fa1a1956539be60af313 (diff)
cleanup and plan for stage4
Diffstat (limited to 'prepare_stage3.sh')
-rwxr-xr-xprepare_stage3.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/prepare_stage3.sh b/prepare_stage3.sh
deleted file mode 100755
index 7b4fdcb..0000000
--- a/prepare_stage3.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-
-# shellcheck source=./default.conf
-. "./default.conf"
-
-# prepare the i486-build for stage 3
-
-if test ! -d $STAGE3_CHROOT; then
- mkdir $STAGE3_CHROOT
- mkdir -p $STAGE3_PACKAGES
-fi
-
-if test ! -d $STAGE3_BUILD; then
-
- # prepare the build enviroment
-
- mkdir $STAGE3_BUILD
- cd $STAGE3_BUILD || exit 1
-
- # TODO: actually build a stage2 hdd from the build artifacts of
- # stage 2, for now we just copy the vm from stage1 after building
- # and installing all packages from stage 2 and use it as new build
- # machine.
-
- echo "Prepared the stage 3 build environment."
-fi
-
-echo "Stage 3 ready."