blob: 8a0cbc6ccfedc8f966a809a7063977c20df188ce [file] [log] [blame]
#!/bin/sh
if [ ! -e /dev/mtd/rwfs ]; then
exit 1
fi
if ! ubiattach -p /dev/mtd/rwfs > /dev/null ; then
if ! ubiformat --yes /dev/mtd/rwfs ; then
exit 1
fi
if ! ubiattach -p /dev/mtd/rwfs ; then
exit 1
fi
if ! ubimkvol /dev/ubi0 -N rwfs -m ; then
exit 1
fi
fi
mkdir -p /run/mnt-persist
mount -t ubifs ubi0:rwfs /run/mnt-persist -o sync,compr=zstd