1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-07-08 02:11:04 +03:00
gmenu2x/pandora/scripts/usbon.sh
Mirko Lindner cddcd72e33 initial commit - needs clean-up
Signed-off-by: Mirko Lindner <mirko@sharism.cc>
2010-02-04 12:33:47 +01:00

16 lines
462 B
Bash
Executable File

#!/bin/bash
# $1 = sd|nand|root
# defaults to sd (compatible with previous versions)
export PATH=$PATH:/sbin
modprobe net2272
if [ $1 = "nand" ]; then
umount /mnt/nand || mount -o remount,loop,ro /mnt/nand
modprobe g_file_storage file=/dev/loop/7
elif [ $1 = "root" ]; then
mount -o remount,loop,ro /
modprobe g_file_storage file=/dev/mtdblock/3
else
umount /mnt/sd || mount -o remount,loop,ro /mnt/sd
modprobe g_file_storage file=/dev/mmcsd/disc0/disc
fi