当我尝试挂载我的 UBIFS 文件系统时出现此错误:
mount -o remount,rw /config
UBIFS error (pid 1265): ubifs_parse_options: unrecognized mount option "relatime" or
missing value
我的 fstab 的内容是:
root@drgos:~# cat /etc/fstab
# WARNING: this is an auto generated file, please use uci to set static filesystems
/dev/ubi0_0 /config ubifs ro 0 0
当我输入 mount 结果是:
root@drgos:~# mount
rootfs on / type rootfs (rw)
none on /proc type proc (rw,relatime)
none on /sys type sysfs (rw,relatime)
tmpfs on /dev type tmpfs (rw,relatime,size=512k)
none on /dev/pts type devpts (rw,relatime,mode=600)
/dev/ubi0_0 on /config type ubifs (ro,relatime)
none on /proc/bus/usb type usbfs (rw,relatime)
我不明白为什么我有 relatime 选项,因为我的 fstab 中不存在该选项!
我正在使用 BusyBox v1.11.2 (2014-01-13 09:35:41 CET) 多调用二进制文件。