Skip to content

Commit 5925a07

Browse files
committed
Merge branch 'Software' of github.com:retro-esp32/RetroESP32 into Software
2 parents 4c826a9 + 87f3f31 commit 5925a07

File tree

9 files changed

+28
-6
lines changed

9 files changed

+28
-6
lines changed

Firmware/Releases/odroid-go.zip

2.32 MB
Binary file not shown.
-43.4 KB
Binary file not shown.

Firmware/Releases/retro-esp.zip

2.32 MB
Binary file not shown.
-43.5 KB
Binary file not shown.

Odroid/odroid-go-firmware

Scripts/firmware

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,24 @@ $MKFW_PATH/mkfw "${NAME}" $FIRMWARE_PATH/Assets/${TILE}.raw \
4848

4949
mv firmware.fw "$FIRMWARE_PATH/Releases/${VERSION}/${NAME}.fw"
5050

51+
clear
52+
echo "--------------------------------------------------------------------------"
53+
echo -e "${clamp} ${green}Creating ZIP File of ${cyan}${VERSION}${nc} Firmware"
54+
echo "--------------------------------------------------------------------------"
55+
56+
cd $FIRMWARE_PATH/Releases/
57+
ls
58+
ZIP = "${VERSION}.zip"
59+
if [ -f "$ZIP" ];
60+
then
61+
rm -f ${ZIP}
62+
fi
63+
zip -qr -X "${VERSION}.zip" ${VERSION}
64+
#mv "${VERSION}.zip" $FIRMWARE_PATH/Releases/
65+
66+
5167
#---------------------------------
5268
# Goodbye
5369
#---------------------------------
54-
source helpers/goodbye
70+
cd $SRC_PATH
71+
#source helpers/goodbye

Scripts/helpers/process

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ GB_OPTION_PATH=""
2323

2424
# set_nes_path
2525
set_gb_path() {
26-
GB=("go-play" "super-go-play" "retro-go")
26+
GB=("retro-go" "super-go-play" "go-play")
2727
OPTION="${monkey} ${red}Please Select ${cyan}GB/GBC Emulator${nc}"
2828
echo "--------------------------------------------------------------------------"
2929
echo -e "${OPTION}"
@@ -51,7 +51,7 @@ set_gb_path() {
5151

5252
# set_nes_path
5353
set_nes_path() {
54-
NES=("go-play" "super-go-play" "retro-go")
54+
NES=("retro-go" "super-go-play" "go-play")
5555
OPTION="${monkey} ${red}Please Select ${cyan}NES Emulator${nc}"
5656
echo "--------------------------------------------------------------------------"
5757
echo -e "${OPTION}"
@@ -79,7 +79,7 @@ set_nes_path() {
7979

8080
# set_handy_path
8181
set_handy_path() {
82-
NES=("handy-go" "odroid-go-handy/handy-go")
82+
NES=("odroid-go-handy/handy-go" "handy-go")
8383
OPTION="${monkey} ${red}Please Select ${cyan}LYNX Emulator${nc}"
8484
echo "--------------------------------------------------------------------------"
8585
echo -e "${OPTION}"
@@ -188,7 +188,7 @@ options() {
188188
* ) echo -e "${OPTION}";;
189189
esac
190190
done
191-
clear
191+
clear
192192
}
193193

194194
# DEFUALT

Scripts/helpers/styles

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,5 @@ export wrench=🛠
4545
export disk=💾
4646
export wave=👋
4747
export screen=🖥️
48+
export file=🗄️
49+
export clamp=🗜️

Scripts/helpers/version

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ SOURCE=""
99

1010
# port
1111
version() {
12+
clear
1213
VERSIONS=("odroid-go" "retro-esp")
1314
OPTION="${monkey} ${white}Please Select Your ${nc}${magentabg} ${white}Hardware ${nc} ${magenta}Version${nc}"
1415
echo "--------------------------------------------------------------------------"
@@ -60,5 +61,7 @@ read -n 1 -r response
6061
if [[ "$response" = "y" ]]
6162
then
6263
version
64+
else
65+
VERSION="retro-esp"
6366
fi
6467
clear

0 commit comments

Comments
 (0)