blob: d64b6170223fa727f49ab63fc881f24c44da0c55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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
|