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:
fewtarius 2023-10-15 11:36:21 +00:00
parent 5e1a07666e
commit 8f241579af
No known key found for this signature in database
GPG key ID: F4AE55305D1B8C1A
3 changed files with 4 additions and 4 deletions

View file

@ -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"

View file

@ -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

View file

@ -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"