diff --git a/board/common/overlay/etc/init.d/S40network b/board/common/overlay/etc/init.d/S40network index 170380f292..8c117368ab 100755 --- a/board/common/overlay/etc/init.d/S40network +++ b/board/common/overlay/etc/init.d/S40network @@ -167,13 +167,13 @@ start() { fi if [ -n "$static_gw" ]; then - msg_begin "setting static gateway to $static_gw" + msg_begin "Setting static gateway to $static_gw" ip route add default via $static_gw test $? == 0 && msg_done || msg_fail fi if [ -n "$static_dns" ]; then - msg_begin "setting static DNS server to $static_dns" + msg_begin "Setting static DNS server to $static_dns" echo "nameserver $static_dns" > /etc/resolv.conf test $? == 0 && msg_done || msg_fail fi diff --git a/board/raspberrypi/overlay/etc/init.d/S04brownout b/board/raspberrypi/overlay/etc/init.d/S04brownout index 215e307d97..798f1a15b4 100755 --- a/board/raspberrypi/overlay/etc/init.d/S04brownout +++ b/board/raspberrypi/overlay/etc/init.d/S04brownout @@ -3,7 +3,7 @@ gpio=35 check_interval=30 export=/sys/class/gpio/export -read=/sys/class/gpio/gpio$gpio/value +readv=/sys/class/gpio/gpio$gpio/value test -n "$os_version" || source /etc/init.d/base @@ -13,7 +13,7 @@ configure() { watch() { while true; do - if [ `cat $read` == "0" ]; then + if [ "$(cat $readv)" == "0" ]; then logger -t brownout -s "low power supply voltage detected" fi sleep $check_interval diff --git a/board/raspberrypi2/overlay/etc/init.d/S04brownout b/board/raspberrypi2/overlay/etc/init.d/S04brownout index 215e307d97..798f1a15b4 100755 --- a/board/raspberrypi2/overlay/etc/init.d/S04brownout +++ b/board/raspberrypi2/overlay/etc/init.d/S04brownout @@ -3,7 +3,7 @@ gpio=35 check_interval=30 export=/sys/class/gpio/export -read=/sys/class/gpio/gpio$gpio/value +readv=/sys/class/gpio/gpio$gpio/value test -n "$os_version" || source /etc/init.d/base @@ -13,7 +13,7 @@ configure() { watch() { while true; do - if [ `cat $read` == "0" ]; then + if [ "$(cat $readv)" == "0" ]; then logger -t brownout -s "low power supply voltage detected" fi sleep $check_interval diff --git a/package/motioneye/motioneye.mk b/package/motioneye/motioneye.mk index 55c335ae34..1e334ae97e 100644 --- a/package/motioneye/motioneye.mk +++ b/package/motioneye/motioneye.mk @@ -4,7 +4,7 @@ # ############################################################# -MOTIONEYE_VERSION = 022221553bd114c579af4ec91820ce659ea35f74 +MOTIONEYE_VERSION = fce758f MOTIONEYE_SITE = $(call github,ccrisan,motioneye,$(MOTIONEYE_VERSION)) MOTIONEYE_SOURCE = $(MOTIONEYE_VERSION).tar.gz MOTIONEYE_LICENSE = GPLv3