diff options
author | V3n3RiX <venerix@rogentos.ro> | 2015-11-29 14:56:41 +0000 |
---|---|---|
committer | V3n3RiX <venerix@rogentos.ro> | 2015-11-29 14:56:41 +0000 |
commit | 18c8a8ac310a52184b596ff44403317b10d5a62e (patch) | |
tree | 65dad80fe3fc1dc4020b571ac78de29fe1d92781 /build32 | |
parent | fffd02bdf5a3613e0835fa7def17b1d9b2d8a8ec (diff) |
draft of iso scripts, they do what they're intended...prepare the iso layout...the rest of code should and will go into libvasile
Diffstat (limited to 'build32')
-rwxr-xr-x | build32 | 22 |
1 files changed, 12 insertions, 10 deletions
@@ -1,5 +1,10 @@ #!/usr/bin/env bash +# Vasile needs root privileges and a proper kernel to run + +checkroot +kernelconfig + chrootpreparex86 () { # check our environment for sanity # if safe, trigger start && break the loop to build packages @@ -22,16 +27,13 @@ chrootpreparex86 () { } main () { - kernelconfig - if checkroot ; then - chrootchecksumx86 - chrootpreparex86 - chrootoverlaysx86 - chrootbuildsystemx86 - chrootbuildx86 - chrootx86 - chrootstop - fi + chrootchecksumx86 + chrootpreparex86 + chrootoverlaysx86 + chrootbuildsystemx86 + chrootbuildx86 + chrootx86 + chrootstop } main |