From 5ae2524d3a3250b5cfcedea0560d84bdfd3b81f0 Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Fri, 23 Nov 2012 20:02:02 +0000 Subject: base-files: use a natural mount syntax Busybox built against musl-libc will choke on these otherwise, besides that it is more natural to use the filesystem type, then options, then name, then mountpoint. Signed-off-by: Florian Fainelli SVN-Revision: 34308 --- package/base-files/files/lib/preinit/20_device_fs_mount | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'package/base-files/files/lib/preinit/20_device_fs_mount') diff --git a/package/base-files/files/lib/preinit/20_device_fs_mount b/package/base-files/files/lib/preinit/20_device_fs_mount index 832b1cf..ed59b5b 100644 --- a/package/base-files/files/lib/preinit/20_device_fs_mount +++ b/package/base-files/files/lib/preinit/20_device_fs_mount @@ -10,11 +10,11 @@ do_move_devtmpfs() { } do_mount_devfs() { - mount devfs /dev -t devfs + mount -t devfs devfs /dev } do_mount_hotplug() { - mount -t tmpfs tmpfs /dev -o mode=0755,size=512K + mount -t tmpfs -o mode=0755,size=512K tmpfs /dev } do_mount_udev() { -- cgit v1.1