7 Commits

Author SHA1 Message Date
fbt
409f6f8cd2 Merge branch 'master' of builder:git/spark-rc 2016-03-25 12:31:32 +03:00
fbt
ff28e04a20 use halt if available 2016-03-25 12:31:12 +03:00
fbt
e2b068e45d vim modeline 2015-11-04 21:06:19 +03:00
fbt
0afbcc55f2 rc.mount rewrite 2015-10-27 18:43:56 +03:00
fbt
1d5e825201 a huge oops 2015-10-26 19:16:18 +03:00
fbt
15592c0daa this should be a decent default 2015-10-14 10:03:58 +03:00
fbt
e379e8efff set the locale in rc.conf 2015-10-13 11:23:10 +03:00
3 changed files with 37 additions and 11 deletions

View File

@@ -1,4 +1,7 @@
spark-rc
========
# spark-rc
A simple rc script to kickstart your system.
## depends
* Enabled sysrq or halt from suckless.org's ubase.

View File

@@ -1,6 +1,9 @@
# System-wide configuration
# A default PATH
export PATH='/usr/local/bin:/usr/local/sbin:/usr/bin'
# Locale
export LC_ALL='en_US.UTF-8'
# Hostname
cfg_hostname='spark'
@@ -11,7 +14,7 @@ cfg_hostname='spark'
# Services that start with @ are executed in parallel
cfg_services+=(
'fsck' 'mount' 'sysctl' 'rsyslogd'
'@lo.iface' '@scron' '@agetty-tty{2..6}'
'@lo.iface' '@scron' @agetty-tty{2..6}
)
# Uncomment and add modules you want to be loaded at boot time here
@@ -25,7 +28,7 @@ cfg_mounts=(
'run:tmpfs:/run'
'tmp:tmpfs:/tmp'
'proc:proc:/proc'
'proc:proc:/proc:defaults,hidepid=2'
'sys:sysfs:/sys'
'dev:devtmpfs:/dev'

32
rc.in
View File

@@ -1,4 +1,5 @@
#!@BASH_PATH@
# vim: ft=zsh
# Functions
rc.rescue() { exec "${cfg_rc_rescue_shell:-"$SHELL"}"; }
@@ -29,13 +30,21 @@ rc.tmpfiles() {
rc.mount() {
for fs in "${cfg_mounts[@]}"; do
echo "$fs" | while IFS=':' read device fs_type mountpoint mount_options; do
if mountpoint -q "$mountpoint"; then
if [[ "$mount_options" ]]; then
mount -o "remount,$mount_options" "$mountpoint"
fi
else
if ! [[ -d "$mountpoint" ]]; then
mkdir -p "$mountpoint"
fi
[[ "$mount_options" ]] || { mount_options='defaults'; }
if ! [[ "$mount_options" ]]; then
mount_options='defaults'
fi
mountpoint -q "$mountpoint" || {
[[ -d "$mountpoint" ]] || { mkdir -p "$mountpoint"; }
mount "$device" -n -t "$fs_type" -o "$mount_options" "$mountpoint"
}
fi
done
done
}
@@ -120,10 +129,21 @@ rc.boot() {
}
rc.halt() {
if type -P halt; then
function rc.halt_poweroff { halt -p; }
function rc.halt_reboot { halt -r; }
elif [[ -f /proc/sysrq-trigger ]]; then
function rc.halt_poweroff { echo 'o' > /proc/sysrq-trigger; }
function rc.halt_reboot { echo 'b' > /proc/sysrq-trigger; }
else
printf 'Cannot halt, please install halt from suckless.org ubase or enable sysrq.\n'
return 1
fi
case "$action" in
poweroff|shutdown) echo 'o' > /proc/sysrq-trigger;;
halt) :;;
reboot|*) echo 'b' > /proc/sysrq-trigger;;
poweroff|shutdown) rc.halt_poweroff;;
reboot|*) rc.halt_reboot;;
esac
}