From 18f35ab726ec8c8d7659f6faa89803d93083dd73 Mon Sep 17 00:00:00 2001 From: Ludwig Date: Fri, 2 Oct 2020 14:52:40 +0200 Subject: Initial commit --- Scripts/mount_ubifs_nac.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Scripts/mount_ubifs_nac.sh (limited to 'Scripts/mount_ubifs_nac.sh') diff --git a/Scripts/mount_ubifs_nac.sh b/Scripts/mount_ubifs_nac.sh new file mode 100644 index 0000000..9d0ea35 --- /dev/null +++ b/Scripts/mount_ubifs_nac.sh @@ -0,0 +1,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=0xd5 third_id_byte=0x51 fourth_id_byte=0xa6 +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" \ No newline at end of file -- cgit v1.2.3