mirror of
git://projects.qi-hardware.com/gmenu2x.git
synced 2024-11-16 23:48:28 +02:00
47a4e5c3ab
On the "platform" sub-folder are located one folder for each platform gmenu2x supports. The "translations" folder is now the same for all platforms. The "skins" sub-folder contains directories which names defines the screen resolution of the contained skins (e.g. "320x240").
12 lines
250 B
Bash
Executable File
12 lines
250 B
Bash
Executable File
#!/bin/bash
|
|
export PATH=$PATH:/sbin
|
|
rmmod g_file_storage
|
|
rmmod net2272
|
|
if [ $1 = "nand" ]; then
|
|
mount /mnt/nand || mount -o remount,rw /mnt/nand
|
|
elif [ $1 = "root" ]; then
|
|
mount -o remount,rw /
|
|
else
|
|
mount /mnt/sd || mount -o remount,rw /mnt/sd
|
|
fi
|