diff options
author | V3n3RiX <venerix@rogentos.ro> | 2016-04-17 15:18:28 +0100 |
---|---|---|
committer | V3n3RiX <venerix@rogentos.ro> | 2016-04-17 15:18:28 +0100 |
commit | db0f02e0fcd5620c752a900be8f5b46f4afbca75 (patch) | |
tree | 3c7104784a6d32112a8e5eae62e6b39d6f33de9d | |
parent | 6872961376183e04e77f4d1f1f73446c34bbd498 (diff) |
sure we did :)
-rwxr-xr-x | build | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -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 } |