mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-16 14:03:00 +02:00
we have no supported armv5tel board left so we can switch to the higher arch. This now can use the vpu (still in softfp calling convention to not break existing installations.) this fix many compile problems, also boost is now working again. Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
52 lines
1.0 KiB
Bash
52 lines
1.0 KiB
Bash
#!/bin/sh
|
|
########################################################################
|
|
# Begin $rc_base/init.d/sysctl
|
|
#
|
|
# Description : File uses /etc/sysctl.conf to set kernel runtime
|
|
# parameters
|
|
#
|
|
# Authors : Nathan Coulson (nathan@linuxfromscratch.org)
|
|
# Matthew Burgress (matthew@linuxfromscratch.org)
|
|
#
|
|
# Version : 00.00
|
|
#
|
|
# Notes :
|
|
#
|
|
########################################################################
|
|
|
|
. /etc/sysconfig/rc
|
|
. ${rc_functions}
|
|
|
|
case "${1}" in
|
|
start)
|
|
if [ -f "/etc/sysctl.conf" ]; then
|
|
boot_mesg "Setting kernel runtime parameters..."
|
|
sysctl -q -p
|
|
evaluate_retval
|
|
fi
|
|
arch=`uname -m`
|
|
case "${arch}" in
|
|
i?86 ) arch="i586";
|
|
;;
|
|
armv*) arch="armv6l":
|
|
;;
|
|
esac
|
|
if [ -f "/etc/sysctl-${arch}.conf" ]; then
|
|
boot_mesg "Setting ${arch}-kernel runtime parameters..."
|
|
sysctl -q -p /etc/sysctl-${arch}.conf
|
|
evaluate_retval
|
|
fi
|
|
;;
|
|
|
|
status)
|
|
sysctl -a
|
|
;;
|
|
|
|
*)
|
|
echo "Usage: ${0} {start|status}"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
# End $rc_base/init.d/sysctl
|