From 5211a7173d780490e6f4410886e73e5a1e64e72d Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Tue, 10 Oct 2017 21:43:07 +0100 Subject: begin the spliting of vasile --- src/frontend/cli/vasile | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100755 src/frontend/cli/vasile (limited to 'src/frontend') diff --git a/src/frontend/cli/vasile b/src/frontend/cli/vasile new file mode 100755 index 0000000..d64b617 --- /dev/null +++ b/src/frontend/cli/vasile @@ -0,0 +1,48 @@ +#!/usr/bin/env bash +# Say Hello to Vasile, a modular script to build Redcore Linux packages && ISO images using a clean squashfs + overlayfs chroot +# Main author : Ghiunhan Mamut (aka V3n3RiX) +# Dependencies : kernel built with squashfs + overlayfs + loopback support && sys-fs/grub:2 && sys-fs/squashfs-tools && dev-libs/libisoburn && sys-fs/mtools +# + +# Import our variables and functions + +source /usr/lib/vasile/libvasile + +# Vasile need root privileges and a proper kernel to run +# Also, running it in live mode is a really bad idea + +checkiflive +kernelconfig + + +case $1 in + --makepkg) + makepkg + ;; + --makeiso) + makeiso + ;; + --resetmode) + resetmode + ;; + --binmode) + binmode + ;; + --mixedmode) + mixedmode + ;; + --srcmode) + srcmode + ;; + --dkms) + dkmsmod + ;; + --help) + showhelp + ;; + *) + eerror "error: no operation specified, use --help for help" + ;; +esac + +exit 0 -- cgit v1.2.3