Skip to content

Commit

Permalink
my282: added Files.pak to extras
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaun Inman committed Jan 11, 2025
1 parent 24f4ab5 commit 1af1503
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
6 changes: 6 additions & 0 deletions skeleton/EXTRAS/Tools/my282/Files.pak/launch.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh

cd $(dirname "$0")

HOME="$SDCARD_PATH"
./DinguxCommander
9 changes: 7 additions & 2 deletions workspace/my282/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,29 @@ endif

###########################################################

REQUIRES_COMMANDER=other/DinguxCommander-sdl2
REQUIRES_UNZIP60=other/unzip60

all: readmes
cd show && make
cd overclock && make
cd other/squashfs && make

early: $(REQUIRES_UNZIP60)
early: $(REQUIRES_COMMANDER) $(REQUIRES_UNZIP60)
mkdir -p other
cd $(REQUIRES_COMMANDER) && make -j
cd $(REQUIRES_UNZIP60) && make -f unix/Makefile.trimuismart unzip
cd libmstick && make

clean:
cd show && make clean
cd overclock && make clean
cd other/squashfs && make clean
cd other/unzip60 && make -f unix/Makefile.trimuismart clean
cd $(REQUIRES_COMMANDER) && make clean
cd $(REQUIRES_UNZIP60) && make -f unix/Makefile.trimuismart clean

$(REQUIRES_COMMANDER):
git clone --depth 1 https://github.com/shauninman/DinguxCommander-sdl2.git $(REQUIRES_COMMANDER)
$(REQUIRES_UNZIP60):
git clone --depth 1 https://github.com/shauninman/unzip60.git $(REQUIRES_UNZIP60)

Expand Down
4 changes: 3 additions & 1 deletion workspace/my282/platform/makefile.copy
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ $(PLATFORM):
cp ./workspace/$@/install/update.sh ./build/SYSTEM/$@/bin/install.sh
mkdir -p ./build/BOOT/common/$@/
cp ./workspace/$@/install/boot.sh ./build/BOOT/common/[email protected]
cp ./workspace/$@/install/*.png ./build/BOOT/common/$@/
cp ./workspace/$@/show/show.elf ./build/BOOT/common/$@/
cp ./workspace/$@/install/*.png ./build/BOOT/common/$@/
cp ./workspace/$@/other/unzip60/unzip ./build/BOOT/common/$@/
#extras
cp -r ./workspace/$@/other/squashfs/output/* ./build/EXTRAS/Tools/$@/Remove\ Loading.pak/
cp ./workspace/$@/other/DinguxCommander-sdl2/DinguxCommander ./build/EXTRAS/Tools/$@/Files.pak/
cp -r ./workspace/$@/other/DinguxCommander-sdl2/res ./build/EXTRAS/Tools/$@/Files.pak/

0 comments on commit 1af1503

Please sign in to comment.