summaryrefslogtreecommitdiff
path: root/build64
diff options
context:
space:
mode:
Diffstat (limited to 'build64')
-rwxr-xr-xbuild6422
1 files changed, 12 insertions, 10 deletions
diff --git a/build64 b/build64
index d658208..c4c507f 100755
--- a/build64
+++ b/build64
@@ -1,5 +1,10 @@
#!/usr/bin/env bash
+# Vasile needs root privileges and a proper kernel to run
+
+kernelconfig
+checkroot
+
chrootpreparex64 () {
# check our environment for sanity
# if safe, trigger start && break the loop to build packages
@@ -22,16 +27,13 @@ chrootpreparex64 () {
}
main () {
- kernelconfig
- if checkroot ; then
- chrootchecksumx64
- chrootpreparex64
- chrootoverlaysx64
- chrootbuildsystemx64
- chrootbuildx64
- chrootx64
- chrootstop
- fi
+ chrootchecksumx64
+ chrootpreparex64
+ chrootoverlaysx64
+ chrootbuildsystemx64
+ chrootbuildx64
+ chrootx64
+ chrootstop
}
main