diff options
Diffstat (limited to 'rc.d/rcS.d/050-loglevel.sh')
-rwxr-xr-x | rc.d/rcS.d/050-loglevel.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/rc.d/rcS.d/050-loglevel.sh b/rc.d/rcS.d/050-loglevel.sh new file mode 100755 index 00000000..6e88b4f7 --- /dev/null +++ b/rc.d/rcS.d/050-loglevel.sh @@ -0,0 +1,8 @@ +#!/bin/sh +[[ $(type -t strstr) = "function" ]] || . /etc/init.d/functions + +# Fix console loglevel +if [ -n "$LOGLEVEL" ]; then + /bin/dmesg -n $LOGLEVEL +fi +: |