mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-11-14 13:19:27 +00:00
* Update buildroot-patches for 2020.11-rc1 buildroot * Update buildroot to 2020.11-rc1 Signed-off-by: Stefan Agner <stefan@agner.ch> * Don't rely on sfdisk --list-free output The --list-free (-F) argument does not allow machine readable mode. And it seems that the output format changes over time (different spacing, using size postfixes instead of raw blocks). Use sfdisk json output and calculate free partition space ourselfs. This works for 2.35 and 2.36 and is more robust since we rely on output which is meant for scripts to parse. * Migrate defconfigs for Buildroot 2020.11-rc1 In particular, rename BR2_TARGET_UBOOT_BOOT_SCRIPT(_SOURCE) to BR2_PACKAGE_HOST_UBOOT_TOOLS_BOOT_SCRIPT(_SOURCE). * Rebase/remove systemd patches for systemd 246 * Drop apparmor/libapparmor from buildroot-external * hassos-persists: use /run as directory for lockfiles The U-Boot tools use /var/lock by default which is not created any more by systemd by default (it is under tmpfiles legacy.conf, which we no longer install). * Disable systemd-update-done.service The service is not suited for pure read-only systems. In particular the service needs to be able to write a file in /etc and /var. Remove the service. Note: This is a static service and cannot be removed using systemd-preset. * Disable apparmor.service for now The service loads all default profiles. Some might actually cause problems. E.g. the profile for ping seems not to match our setup for /etc/resolv.conf: [85503.634653] audit: type=1400 audit(1605286002.684:236): apparmor="DENIED" operation="open" profile="ping" name="/run/resolv.conf" pid=27585 comm="ping" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
95 lines
2.7 KiB
Bash
95 lines
2.7 KiB
Bash
#!/bin/sh
|
|
#
|
|
# This script is used by busybox and procps-ng.
|
|
#
|
|
# With procps-ng, the "--system" option of sysctl also enables "--ignore", so
|
|
# errors are not reported via syslog. Use the run_logger function to mimic the
|
|
# --system behavior, still reporting errors via syslog. Users not interested
|
|
# on error reports can add "-e" to SYSCTL_ARGS.
|
|
#
|
|
# busybox does not have a "--system" option neither reports errors via syslog,
|
|
# so the scripting provides a consistent behavior between the implementations.
|
|
# Testing the busybox sysctl exit code is fruitless, as at the moment, since
|
|
# its exit status is zero even if errors happen. Hopefully this will be fixed
|
|
# in a future busybox version.
|
|
|
|
PROGRAM="sysctl"
|
|
|
|
SYSCTL_ARGS=""
|
|
|
|
# shellcheck source=/dev/null
|
|
[ -r "/etc/default/$PROGRAM" ] && . "/etc/default/$PROGRAM"
|
|
|
|
# Files are read from directories in the SYSCTL_SOURCES list, in the given
|
|
# order. A file may be used more than once, since there can be multiple
|
|
# symlinks to it. No attempt is made to prevent this.
|
|
SYSCTL_SOURCES="/etc/sysctl.d/ /usr/local/lib/sysctl.d/ /usr/lib/sysctl.d/ /lib/sysctl.d/ /etc/sysctl.conf"
|
|
|
|
# If the logger utility is available all messages are sent to syslog, except
|
|
# for the final status. The file redirections do the following:
|
|
#
|
|
# - stdout is redirected to syslog with facility.level "kern.info"
|
|
# - stderr is redirected to syslog with facility.level "kern.err"
|
|
# - file dscriptor 4 is used to pass the result to the "start" function.
|
|
#
|
|
run_logger() {
|
|
# shellcheck disable=SC2086 # we need the word splitting
|
|
find $SYSCTL_SOURCES -maxdepth 1 -name '*.conf' -print0 2> /dev/null | \
|
|
xargs -0 -r -n 1 readlink -f | {
|
|
prog_status="OK"
|
|
while :; do
|
|
read -r file || {
|
|
echo "$prog_status" >&4
|
|
break
|
|
}
|
|
echo "* Applying $file ..."
|
|
/sbin/sysctl -p "$file" $SYSCTL_ARGS || prog_status="FAIL"
|
|
done 2>&1 >&3 | /usr/bin/logger -t sysctl -p kern.err
|
|
} 3>&1 | /usr/bin/logger -t sysctl -p kern.info
|
|
}
|
|
|
|
# If logger is not available all messages are sent to stdout/stderr.
|
|
run_std() {
|
|
# shellcheck disable=SC2086 # we need the word splitting
|
|
find $SYSCTL_SOURCES -maxdepth 1 -name '*.conf' -print0 2> /dev/null | \
|
|
xargs -0 -r -n 1 readlink -f | {
|
|
prog_status="OK"
|
|
while :; do
|
|
read -r file || {
|
|
echo "$prog_status" >&4
|
|
break
|
|
}
|
|
echo "* Applying $file ..."
|
|
/sbin/sysctl -p "$file" $SYSCTL_ARGS || prog_status="FAIL"
|
|
done
|
|
}
|
|
}
|
|
|
|
if [ -x /usr/bin/logger ]; then
|
|
run_program="run_logger"
|
|
else
|
|
run_program="run_std"
|
|
fi
|
|
|
|
start() {
|
|
printf '%s %s: ' "$1" "$PROGRAM"
|
|
status=$("$run_program" 4>&1)
|
|
echo "$status"
|
|
if [ "$status" = "OK" ]; then
|
|
return 0
|
|
fi
|
|
return 1
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
start "Running";;
|
|
restart|reload)
|
|
start "Rerunning";;
|
|
stop)
|
|
:;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart|reload}"
|
|
exit 1
|
|
esac
|