aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d/rcS.d/050-loglevel.sh
blob: 6e88b4f761162c79dd02ef2a4a473423bc61ee65 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
[[ $(type -t strstr) = "function" ]] || . /etc/init.d/functions

# Fix console loglevel
if [ -n "$LOGLEVEL" ]; then
	/bin/dmesg -n $LOGLEVEL
fi
: