summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorV3n3RiX <venerix@rogentos.ro>2016-04-17 15:18:28 +0100
committerV3n3RiX <venerix@rogentos.ro>2016-04-17 15:18:28 +0100
commitdb0f02e0fcd5620c752a900be8f5b46f4afbca75 (patch)
tree3c7104784a6d32112a8e5eae62e6b39d6f33de9d
parent6872961376183e04e77f4d1f1f73446c34bbd498 (diff)
sure we did :)
-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
}