Merge pull request #2942 from fewtarius/dev
LED/WIFI hotkey switch, fix installer glitch, bump vita3k.
This commit is contained in:
commit
803ce5b0db
3 changed files with 6 additions and 6 deletions
|
@ -2,7 +2,7 @@
|
||||||
# Copyright (C) 2022-present JELOS (https://github.com/JustEnoughLinuxOS)
|
# Copyright (C) 2022-present JELOS (https://github.com/JustEnoughLinuxOS)
|
||||||
|
|
||||||
PKG_NAME="vita3k-sa"
|
PKG_NAME="vita3k-sa"
|
||||||
PKG_VERSION="6ce9b6598ed8e0cd7ac65553b75c8b03ed65e77a"
|
PKG_VERSION="79bc40003e764c30f0552468617072d1e94e55aa"
|
||||||
PKG_LICENSE="GPLv2"
|
PKG_LICENSE="GPLv2"
|
||||||
PKG_SITE="https://github.com/Vita3K/Vita3K"
|
PKG_SITE="https://github.com/Vita3K/Vita3K"
|
||||||
PKG_URL="${PKG_SITE}.git"
|
PKG_URL="${PKG_SITE}.git"
|
||||||
|
|
|
@ -134,22 +134,22 @@ fi
|
||||||
|
|
||||||
if [ -z "${FN_B_ACTION_UP}" ]
|
if [ -z "${FN_B_ACTION_UP}" ]
|
||||||
then
|
then
|
||||||
FN_B_ACTION_UP="wifictl enable"
|
FN_B_ACTION_UP="ledcontrol"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -z "${FN_B_ACTION_DOWN}" ]
|
if [ -z "${FN_B_ACTION_DOWN}" ]
|
||||||
then
|
then
|
||||||
FN_B_ACTION_DOWN="wifictl disable"
|
FN_B_ACTION_DOWN="ledcontrol poweroff"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -z "${FN_AB_ACTION_UP}" ]
|
if [ -z "${FN_AB_ACTION_UP}" ]
|
||||||
then
|
then
|
||||||
FN_AB_ACTION_UP="ledcontrol"
|
FN_AB_ACTION_UP="wifictl enable"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -z "${FN_AB_ACTION_DOWN}" ]
|
if [ -z "${FN_AB_ACTION_DOWN}" ]
|
||||||
then
|
then
|
||||||
FN_AB_ACTION_DOWN="ledcontrol poweroff"
|
FN_AB_ACTION_DOWN="wifictl disable"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
### Simple functions to execute button actions, including global kill.
|
### Simple functions to execute button actions, including global kill.
|
||||||
|
|
|
@ -396,7 +396,7 @@ EOF
|
||||||
# install complete
|
# install complete
|
||||||
MSG_TITLE="@DISTRONAME@ Install Complete"
|
MSG_TITLE="@DISTRONAME@ Install Complete"
|
||||||
MSG_DETAIL="You may now remove the install media and shutdown.\n"
|
MSG_DETAIL="You may now remove the install media and shutdown.\n"
|
||||||
whiptail --backtitle "$BACKTITLE" --title "$MSG_TITLE" --msgbox "$MSG_DETAIL" 7 52
|
whiptail --backtitle "$BACKTITLE" --title "$MSG_TITLE" --msgbox "$MSG_DETAIL" 7 73
|
||||||
}
|
}
|
||||||
|
|
||||||
msg_no_device() {
|
msg_no_device() {
|
||||||
|
|
Loading…
Reference in a new issue