Initial commit
This commit is contained in:
commit
4c89bce675
97 changed files with 180 additions and 0 deletions
20
launch.sh
Normal file
20
launch.sh
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ -d /mnt/SDCARD/miyoo ] ; then
|
||||
|
||||
./printstr "Emptying existing skins folder"
|
||||
|
||||
# Empty the existing skin folder
|
||||
rm /mnt/SDCARD/miyoo/app/skin/*
|
||||
|
||||
./printstr "Copying skin files"
|
||||
|
||||
# Copy the skin files into the miyoo app folder
|
||||
for FILE in ./data/miyoo/*
|
||||
do
|
||||
cp -R $FILE /mnt/SDCARD/miyoo/
|
||||
done
|
||||
|
||||
fi
|
||||
|
||||
reboot
|
||||
Loading…
Add table
Add a link
Reference in a new issue