Serenity Operating System
at master 13 lines 522 B view raw
1# Root file system. This is a fake entry which gets ignored by `mount -a`; 2# the actual logic for mounting root is in the kernel. 3/dev/hda / ext2 nodev,nosuid,ro 4# Remount /bin, /root, and /home while adding the appropriate permissions. 5/bin /bin bind bind,nodev,ro 6/etc /etc bind bind,nodev,nosuid 7/home /home bind bind,nodev,nosuid 8/root /root bind bind,nodev,nosuid 9/var /var bind bind,nodev,nosuid 10/www /www bind bind,nodev,nosuid 11/usr/Tests /usr/Tests bind bind,nodev,ro 12/usr/local /usr/local bind bind,nodev,nosuid 13