summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
Diffstat (limited to 'build')
-rwxr-xr-xbuild16
1 files changed, 8 insertions, 8 deletions
diff --git a/build b/build
index 5efb9b9..cce336b 100755
--- a/build
+++ b/build
@@ -5,7 +5,7 @@
kernelconfig
checkroot
-chrootpreparex64 () {
+chrootprepare () {
# check our environment for sanity
# if safe, trigger start && break the loop to build packages
# else trigger stop && cleanup && check again
@@ -14,7 +14,7 @@ chrootpreparex64 () {
for i in "$rodir" "$rwdir" "$workdir" "$overlaydir" ; do
mkdir "$i"
done
- chrootstartx64
+ chrootstart
break
elif [[ -d "$rodir" && -d "$rwdir" && -d "$workdir" && -d "$overlaydir" ]] ; then
chrootstop
@@ -27,12 +27,12 @@ chrootpreparex64 () {
}
main () {
- chrootchecksumx64
- chrootpreparex64
- chrootdevtreex64
- chrootoverlaysx64
- chrootbuildsystemx64
- chrootbuildx64
+ chrootchecksum
+ chrootprepare
+ chrootdevtree
+ chrootoverlays
+ chrootbuildsystem
+ chrootbuild
chrootx64
chrootstop
}