Zeke-OS / zeke

A POSIX-like OS for ARM processors.
Other
88 stars 9 forks source link

mount: The order of options may cause errors #182

Closed OlliV closed 4 years ago

OlliV commented 4 years ago

The following command passes noatime flag properly:

mount -o codepage=932 -o ownerid -o noatime -t fatfs /dev/emmc0p2 /home

This one doesn't:

mount -o codepage=932 -o noatime -o ownerid -t fatfs /dev/emmc0p2 /home