-
-
Save tinti/2558246 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# UBI mount | |
# source: | |
# http://mytechrants.wordpress.com/2010/01/20/ubiubifs-on-nandsim/ | |
# http://www.plugcomputer.org/plugwiki/index.php/Enabling_UBIFS | |
modprobe nandsim first_id_byte=0x20 second_id_byte=0xaa third_id_byte=0x00 fourth_id_byte=0x15 | |
cat /proc/mtd | |
ubiformat /dev/mtd0 -f system.ubi | |
modprobe ubi mtd=0 | |
ubinfo | |
mount -t ubifs ubi0:system /mnt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment