Update plymouth-lite, fix network parameters.
* Adds centered image logic to plymouth-lite, thanks to @shauninman. * Corrects the few straggling wifi properties.
This commit is contained in:
parent
5e1a07666e
commit
8f241579af
3 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@
|
|||
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
||||
|
||||
PKG_NAME="plymouth-lite"
|
||||
PKG_VERSION="92b3d5ba65b2ca88d02450380cc499014a4325b4"
|
||||
PKG_VERSION="8a3205c"
|
||||
PKG_LICENSE="GPL"
|
||||
PKG_SITE="https://github.com/JustEnoughLinuxOS/plymouth-lite"
|
||||
PKG_URL="${PKG_SITE}.git"
|
||||
|
|
|
@ -179,7 +179,7 @@ case "${1}" in
|
|||
destroy_adhoc >/dev/null 2>&1
|
||||
fi
|
||||
connect_wifi >/dev/null 2>&1
|
||||
set_setting wifi.enabled 1
|
||||
set_setting network.enabled 1
|
||||
;;
|
||||
disable)
|
||||
if [ "${WIFI_TYPE}" = "1" ]
|
||||
|
@ -189,7 +189,7 @@ case "${1}" in
|
|||
connmanctl disable wifi >/dev/null 2>&1
|
||||
rfkill block wifi >/dev/null 2>&1
|
||||
rm -f "${WIFI_CFG}" 2>/dev/null
|
||||
set_setting wifi.enabled 0
|
||||
set_setting network.enabled 0
|
||||
;;
|
||||
reconnect)
|
||||
/usr/bin/wifictl disable
|
||||
|
|
|
@ -136,7 +136,7 @@ mkcontroller 2>/dev/null ||:
|
|||
UP="-b"
|
||||
else
|
||||
COMMAND="/usr/bin/wifictl"
|
||||
WIFISTATE=$(get_setting wifi.enabled)
|
||||
WIFISTATE=$(get_setting network.enabled)
|
||||
if [ "${WIFISTATE}" = 0 ]
|
||||
then
|
||||
DOWN="reconnect"
|
||||
|
|
Loading…
Reference in a new issue