823479a02c
* Pull down a few mali updates from upstream, thanks to @JeffyCN. * Trap cases where external cards weren't being excluded from factory resets. Exclude deleting games-internal as well. * Re-apply bluez sixaxis fix, it might fix ps4 controllers not pairing.
34 lines
1 KiB
Bash
Executable file
34 lines
1 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2020-present Shanti Gilbert (https://github.com/shantigilbert)
|
|
# Copyright (C) 2023 JELOS (https://github.com/JustEnoughLinuxOS)
|
|
|
|
case "${1}" in
|
|
"retroarch")
|
|
rm -f /storage/.config/retroarch/retroarch.cfg
|
|
cp -rf /usr/config/retroarch/retroarch.cfg /storage/.config/retroarch/retroarch.cfg
|
|
;;
|
|
"retroarch-full")
|
|
rm -rf /storage/.config/retroarch
|
|
cp -rf /usr/config/retroarch /storage/.config/
|
|
;;
|
|
"mednafen")
|
|
rm -f /storage/.config/mednafen/mednafen.cfg
|
|
;;
|
|
"overlays")
|
|
rm -rf $(cat /usr/lib/systemd/system/tmp-*.mount | grep -Eo 'upperdir=.*,' | sed -e 's~upperdir=~~g; s~,~~g')
|
|
sync
|
|
systemctl reboot
|
|
;;
|
|
"ALL")
|
|
swapoff -a
|
|
umount /storage/roms ||:
|
|
umount /storage/games-external ||:
|
|
cd /
|
|
find /storage -mindepth 1 \( ! -regex '^/storage/.update.*' -a ! -regex '^/storage/roms.*' -a ! -regex '^/storage/games-.*' \) -delete
|
|
mkdir /storage/.config/
|
|
sync
|
|
systemctl reboot
|
|
;;
|
|
esac
|