fix ppp related bug in the network scripts
[openwrt.git] / package / base-files / default / sbin / mount_root
index 6c8805c..81660f0 100755 (executable)
@@ -1,6 +1,8 @@
 #!/bin/sh
-size=$(awk '/Mem:/ {l=5242880;print((s=$2/2)<l)?$2-l:s}' /proc/meminfo)
+# Copyright (C) 2006 OpenWrt.org
+
 mount none /proc -t proc
+size=$(awk '/Mem:/ {l=5242880;print((s=$2/2)<l)?$2-l:s}' /proc/meminfo)
 mount none /tmp -t tmpfs -o size=$size,nosuid,nodev,mode=1777
 mkdir -p /dev/pts
 mount none /dev/pts -t devpts
This page took 0.021453 seconds and 4 git commands to generate.