summaryrefslogtreecommitdiff
path: root/prepare_stage2_repo.sh
blob: 5ce5f00f8e886df88947ca8db8c328abe26e510c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh

# shellcheck source=./default.conf
. "./default.conf"

# prepare the i486-build for stage 2

if test ! -d $STAGE2_CHROOT; then
	mkdir $STAGE2_CHROOT
	mkdir -p $STAGE2_PACKAGES
fi

if test ! -d $STAGE2_BUILD; then

	# prepare the build enviroment
	
	mkdir $STAGE2_BUILD
	cd $STAGE2_BUILD || exit 1

	# TODO: check makepkg in stage1 hdd
	# TODO: makepkg patch to run as root or add a build user to hdd
	# TODO: we assume we have on cpu for now on the target
	
	echo "Prepared the stage 2 build environment."
fi

echo "Stage 2 ready."