index : bootstrap32 | |
Archlinux32 bootstrap scripts | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | default.conf | 15 |
diff --git a/default.conf b/default.conf index a8b82dc..b5a89ed 100644 --- a/default.conf +++ b/default.conf @@ -43,15 +43,26 @@ STAGE1_ISOLINUX=$CROSS_HOME/isolinux # where is stage1 installed on the target architecture and reachable STAGE1_MACHINE_IP=192.168.1.127 -# where packages are stored for stage 2 +# where build results are stored for stage 2 STAGE2_BUILD=$CROSS_HOME/$TARGET_CPU-build-stage2 -# the chroot of stage 2 +# the chroot of stage 2 (we don't use it acutally, we use a real +# machine to build the packages on), but it serves as storage +# location of final artifacts) STAGE2_CHROOT=$CROSS_HOME/$TARGET_CPU-root-stage2 # where packages are stored for stage 2 (on the host) STAGE2_PACKAGES=$STAGE2_CHROOT/packages/$TARGET_CPU/ +# the chroot of stage 3 +STAGE3_CHROOT=$CROSS_HOME/$TARGET_CPU-root-stage3 + +# where packages are stored for stage 3 (on the host) +STAGE3_PACKAGES=$STAGE3_CHROOT/packages/$TARGET_CPU/ + +# where build results are stored for stage 3 +STAGE3_BUILD=$CROSS_HOME/$TARGET_CPU-build-stage3 + # git repository for PKGBUILD diffs and patches for the # i686 architecture GIT_URL_ARCHLINUX32_PACKAGES=https://github.com/archlinux32/packages.git |