blob: 322d29e096a98a32634bcad8382b079bfff1328d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
UBIFS_IMAGE=$1
mkdir -p /mnt/ubifs
if grep -qs '/dev/ubi' /proc/mounts; then
umount /mnt/ubifs
ubidetach -p /dev/mtd0
rmmod nandsim
fi
modprobe ubi
modprobe nandsim first_id_byte=0xec second_id_byte=0xd7 third_id_byte=0x00 fourth_id_byte=0x36
flash_erase /dev/mtd0 0 0
ubiformat /dev/mtd0 -s 4096 -O 4096
ubiattach -m 0 -d 0 -O 4096
ubimkvol /dev/ubi0 -N NAC_UBIFS -s 1024MiB
ubiupdatevol /dev/ubi0_0 $UBIFS_IMAGE
mount /dev/ubi0_0 /mnt/ubifs
echo "${UBIFS_IMAGE} mounted on /mnt/ubifs"
|