Root/data/platform/nanonote/scripts/usboff.sh

1#!/bin/bash
2export PATH=$PATH:/sbin
3rmmod g_file_storage
4rmmod net2272
5if [ $1 = "nand" ]; then
6    mount /mnt/nand || mount -o remount,rw /mnt/nand
7elif [ $1 = "root" ]; then
8    mount -o remount,rw /
9else
10    mount /mnt/sd || mount -o remount,rw /mnt/sd
11fi
12

Archive Download this file



interactive