summaryrefslogtreecommitdiff
path: root/vasile
blob: c360f1cdb5f46fb3054d3a78413a9b98031daf67 (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
49
50
51
52
53
54
55
56
57
58
#!/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

checkroot
checkiflive
kernelconfig


case $1 in
	--makepkg)
		makepkg
		;;
	--makeiso)
		makeiso
		;;
	--resetmode)
		resetmode
		;;
	--binmode)
		source /usr/share/vasile/resetmode
		source /usr/share/vasile/binmode
		;;
	--mixedmode)
		source /usr/share/vasile/resetmode
		source /usr/share/vasile/mixedmode
		;;
	--srcmode)
		source /usr/share/vasile/resetmode
		source /usr/share/vasile/srcmode
		;;
	--help)
		einfo "Usage: vasile [options]"
		einfo ""
		einfo "Options:"
		einfo "--makepkg : build package/target in a clean squashed core"
		einfo "--makeiso : build iso based on clean squashed core + targets"
		einfo "--resetmode : reset Redcore Linux system state - You're on your own, you've been warned!"
		einfo "--binmode : switch Redcore Linux system state to binary only mode"
		einfo "--mixedmode : switch Redcore Linux system state to mixed (binary/source) mode"
		einfo "--srcmode : switch Redcore Linux system state to source only mode (full Gentoo mode)"
		einfo "--help : display this help and exit"
		;;
	*)
		eerror "error: no operation specified, use --help for help"
		;;
esac

exit 0