1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter.git synced 2025-03-09 15:40:20 +00:00

Fix fs for rutx

This commit is contained in:
Ycarus (Yannick Chabanois) 2022-03-08 11:55:28 +01:00
parent 0b14e36374
commit 15d97c859a
2 changed files with 0 additions and 31 deletions

View file

@ -1,2 +0,0 @@
# <file system> <mount point> <type> <options> <dump> <pass>
/dev/mtdblock15 /log jffs2 defaults 0 0

View file

@ -1,29 +0,0 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2006-2011 OpenWrt.org
START=10
STOP=90
NAND_PART="nand_ubi"
boot() {
# check if spi-nand is present
local mtd=$(grep -i -m 1 "$NAND_PART" /proc/mtd | cut -c 4- | cut -d ':' -f1)
[ -z "$mtd" ] && {
return 0
}
[ ! -e /nand_storage ] && {
mkdir /nand_storage
}
# attach mtd device, automatically format if empty
ubiattach /dev/ubi_ctrl -m "$mtd"
# create default volume, if volume not present
[ ! -e /dev/ubi0_0 ] && {
ubimkvol /dev/ubi0 -m -N nand_storage
}
mount -t ubifs -o sync,noatime,rw ubi0:nand_storage /nand_storage/
}