projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
49f78b6
)
Fix negative calculation of the tmpfs for devices with few RAM (#3557)
author
Florian Fainelli
<florian@openwrt.org>
Thu, 14 Aug 2008 22:21:35 +0000
(22:21 +0000)
committer
Florian Fainelli
<florian@openwrt.org>
Thu, 14 Aug 2008 22:21:35 +0000
(22:21 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12315
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
package/base-files/files/etc/preinit
patch
|
blob
|
history
diff --git
a/package/base-files/files/etc/preinit
b/package/base-files/files/etc/preinit
index
8c30fd8
..
11b9100
100755
(executable)
--- a/
package/base-files/files/etc/preinit
+++ b/
package/base-files/files/etc/preinit
@@
-20,7
+20,7
@@
failsafe() {
mount proc /proc -t proc
mount sysfs /sys -t sysfs
-size=$(awk '/MemTotal:/ {l=5242880;mt=($2*1024);print((s=mt/2)<l)?mt-l:s}' /proc/meminfo)
+size=$(awk '/MemTotal:/ {l=5242880;mt=($2*1024);print((s=mt/2)<l)
&&(mt>l)
?mt-l:s}' /proc/meminfo)
mount tmpfs /tmp -t tmpfs -o size=$size,nosuid,nodev,mode=1777
if grep devfs /proc/filesystems > /dev/null; then