base-files: use a natural mount syntax
[openwrt/staging/chunkeey.git] / package / base-files / files / lib / preinit / 10_essential_fs
index ab317dc20aeb3b0f98cb3c2c989b4ada0bcff3cc..5d979fd49a6461d90834e265da1b415f15eac134 100644 (file)
@@ -3,11 +3,11 @@
 # Copyright (C) 2010 Vertical Communications
 
 do_mount_procfs() {
-   mount proc /proc -t proc
+   mount -t proc proc /proc
 }
 
 do_mount_sysfs() {
-    mount sysfs /sys -t sysfs
+   mount -t sysfs sysfs /sys
 }
 
 calc_tmpfs_size() {
@@ -16,7 +16,7 @@ calc_tmpfs_size() {
 
 do_mount_tmpfs() {
     calc_tmpfs_size
-    mount tmpfs /tmp -t tmpfs -o size=$pi_size,nosuid,nodev,mode=1777
+    mount -t tmpfs -o size=$pi_size,nosuid,nodev,mode=1777 tmpfs /tmp
 }
 
 boot_hook_add preinit_essential do_mount_procfs