summaryrefslogtreecommitdiff
path: root/default.conf
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2018-01-28 10:58:24 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2018-01-28 10:58:24 +0100
commit164181c1589942d9d1c8e1bf6cbba76974b7e1c7 (patch)
tree9ac1b5b1b8f4ab8a00ac82f98c28497b10ddd5a9 /default.conf
parent54ebd1dea1dd4ad68d28e27f7a20ce843f1d2f59 (diff)
downloadbootstrap32-164181c1589942d9d1c8e1bf6cbba76974b7e1c7.tar.xz
added shim scripts for stage 1
Diffstat (limited to 'default.conf')
-rw-r--r--default.conf12
1 files changed, 9 insertions, 3 deletions
diff --git a/default.conf b/default.conf
index 20f5972..8786157 100644
--- a/default.conf
+++ b/default.conf
@@ -3,14 +3,20 @@
# target architecture
TARGET_ARCH=i486-unknown-linux-gnu
+# target cpu
+TARGET_CPU=i486
+
# where to build the cross compiler
CROSS_HOME=/home/cross
-# where is the cross compiler installed
+# where is/are the cross compiler(s) installed
XTOOLS_HOME=$CROSS_HOME/x-tools
+# where is the cross compiler of our target architecture installed
+XTOOLS_ARCH=$XTOOLS_HOME/$TARGET_ARCH
+
# the chroot of stage 1
-STAGE1_CHROOT=$CROSS_HOME/i486-root
+STAGE1_CHROOT=$CROSS_HOME/$TARGET_CPU-root
# the place where we build stage 1
-STAGE1_BUILD=$CROSS_HOME/build
+STAGE1_BUILD=$CROSS_HOME/$TARGET_CPU-build