(Guide) Booting straight to RetroArch with quick resume #302
Replies: 1 comment 2 replies
-
I really like the pick-up-and-go concept. I will try it out. Thanks #Check if fat32 is flagged as "dirty", and if so unmount, repair, remount if dmesg | grep "mmcblk0p4" > /dev/null; then echo -e "\e[31mUnclean shutdown detected.\e[0m" echo -e "\e[32mPress key to skip FAT32 partition check...\e[0m" read -n 1 -t 10 if ! [ $? == 0 ]; then # no key was pressed echo -e "\e[32mChecking FAT32 partition...\e[0m" umount /dev/mmcblk0p4 fsck.vfat -y /dev/mmcblk0p4 > /dev/null; mount /dev/mmcblk0p4 /mnt -t vfat -o rw,sync,utf8 echo -e "\e[32mCheck complete.\e[0m" fi fi |
Beta Was this translation helpful? Give feedback.
-
Hey everyone, thought I'd share this here. I wrote a guide on how to modify the boot script on MiyooCFW to launch straight to RetroArch and auto-load save states.
https://jahed.dev/2022/01/25/improving-powkiddy-v90-ux/
Beta Was this translation helpful? Give feedback.
All reactions