aboutsummaryrefslogtreecommitdiff
path: root/tools/meson_runlevels.sh
blob: 7cf068a922b9f64948e856942eecd4bb87ae5d5f (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
84
85
86
87
88
89
90
91
92
93
94
#!/bin/sh

set -e
set -u

os="$1"
net="$2"
rc_libexecdir="$3"
sysconfdir="$4"

init_d_dir="${sysconfdir}/init.d"
leveldir="${sysconfdir}/runlevels"
sysinitdir="${leveldir}/sysinit"
bootdir="${leveldir}/boot"
defaultdir="${leveldir}/default"
nonetworkdir="${leveldir}/nonetwork"
shutdowndir="${leveldir}/shutdown"

sysinit=
case "${os}" in
	Linux)
		sysinit="${sysinit} cgroups devfs dmesg sysfs"
		;;
esac

boot="bootmisc fsck hostname localmount loopback root swap sysctl urandom"
if [ "${net}" = yes ]; then
	boot="${boot} network staticroute"
fi
boot_BSD="hostid newsyslog savecore syslogd"

case "${os}" in
	DragonFly)
		boot="${boot} ${boot_BSD}"
		;;
	FreeBSD|GNU-kFreeBSD)
		boot="${boot} ${boot_BSD} adjkerntz dumpon modules syscons"
		;;
	Linux)
		boot="${boot} binfmt hwclock keymaps modules mtab procfs
		save-keymaps save-termencoding termencoding"
		;;
	NetBSD)
		boot="${boot} ${boot_BSD} devdb swap-blk tys wscons"
		;;
esac

default="local netmount"

nonetwork="local"

shutdown="savecache"
case "${os}" in
	Linux)
		shutdown="${shutdown} killprocs mount-ro" 
		;;
esac

if ! test -d "${DESTDIR}${sysinitdir}"; then
	install -d "${DESTDIR}${sysinitdir}"
	for x in ${sysinit}; do
		ln -snf "${init_d_dir}/$x" "${DESTDIR}${sysinitdir}/$x"
	done
fi

if ! test -d "${DESTDIR}${bootdir}"; then
	install -d "${DESTDIR}${bootdir}"
	for x in ${boot}; do
		ln -snf "${init_d_dir}/$x" "${DESTDIR}${bootdir}/$x"
	done
fi

if ! test -d "${DESTDIR}${defaultdir}"; then
	install -d "${DESTDIR}${defaultdir}"
	for x in ${default}; do
		ln -snf "${init_d_dir}/$x" "${DESTDIR}${defaultdir}/$x"
	done
fi

if ! test -d "${DESTDIR}${nonetworkdir}"; then
	install -d "${DESTDIR}${nonetworkdir}"
	for x in ${nonetwork}; do
		ln -snf "${init_d_dir}/$x" "${DESTDIR}${nonetworkdir}/$x"
	done
fi

if ! test -d "${DESTDIR}${shutdowndir}"; then
	install -d "${DESTDIR}${shutdowndir}"
	for x in ${shutdown}; do
		ln -snf "${init_d_dir}/$x" "${DESTDIR}${shutdowndir}/$x"
	done
fi

ln -snf "${rc_libexecdir}"/sh/functions.sh "${DESTDIR}/${init_d_dir}"