diff options
Diffstat (limited to 'build')
-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 } |