aboutsummaryrefslogtreecommitdiff
path: root/mkrootfs.sh
blob: 7bd334a8dc6cd17c40fa8a6ad3fda44eb09052ff (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/bin/sh -e
# Bootstrapper for Carbs Linux
# See LICENSE file for copyright and license details


# Functions
out() { printf "%s\\n" "$@" ;}
msg() { printf "\033[1;35m=>\033[m $1\\n" ;}
error() { msg "\033[1;31mERROR: \033[m$1" ;} >&2
die() { error "$1"; exit 1 ;}
ask() { printf "\033[1;33m== $1 ==\\n(y/N) "; read ans; case "$ans" in [Yy]*) return 0 ;; *) return 1 ;; esac ;}
BASEDIR="$PWD"


# If there is no config file, we copy config.def
# to config. After we make sure config file is
# in place, we source the contents
! [ -e config ] && cp config.def config
. "$PWD/config"

# Check whether absolutely required variables are set.
[ -n "$PKGS" ] || die "You must set PKGS variable to continue the bootstrapper"
[ -n "$MNTDIR" ] || die "You must specify fakeroot location \"MNTDIR\" in order to continue the bootstrapper"


# Print variables from the configuration file
out \
"Here are the configuration values:" \
"" \
"MNTDIR = $MNTDIR" \
"" \
"Build Options" \
"CFLAGS = $CFLAGS" \
"CXXFLAGS = $CXXFLAGS" \
"MAKEFLAGS = $MAKEFLAGS" \
"" \
"Repository and package options" \
"" \
"REPO = $REPO" \
"REPOSITORY PATH = $REPO_PATH" \
"PKGS = $PKGS"


# Check if there is no NOWELCOME variable set in
# the configuration file. If there is such variable
# set in the configuration, the bootstrapper will 
# start immediately
if [ -z "$NOCONFIRM" ]; then
	ask "Do you want to start the bootstrapper?" || die "User exited"
else
	msg "NOCONFIRM variable exists, starting without asking."
fi


# Script starts here

msg "Starting Script..."

msg "Setting KISS_ROOT to $MNTDIR"
export KISS_ROOT="$MNTDIR"

# Check whether REPO and REPO_PATH variables exist
if [ -n "$REPO" ]; then
	# Remove if /tmp/repo already exists
	rm -rf /tmp/repo
	git clone --depth 1 "$REPO" /tmp/repo
	export KISS_PATH="${HOST_REPO_PATH:-/tmp/repo/core}"
else
	msg "REPO variable does not exist, current repository
will be copied directly to the root filesystem"
fi

msg "Starting build from the PKGS variable"

# Word Splitting is intentional here, as we are
# passing package names seperately
# shellcheck disable=SC2086
kiss b $PKGS
msg "Package build complete, starting package installation"
kiss i $PKGS
msg "Installation Complete, starting custombuild procedure if there is one"
custombuild
msg "Done!"