Merge "cm: bind mount DOWNLOAD_CACHE to /data if /cache is less then 20MB" into gingerbread
diff --git a/CHANGELOG.mkdn b/CHANGELOG.mkdn
index fc37bf8..92114ec 100644
--- a/CHANGELOG.mkdn
+++ b/CHANGELOG.mkdn
@@ -56,7 +56,7 @@
* Common: New boot animation - 73v1n - http://www.youtube.com/watch?v=mYXiKWwp0DQ
* Common: Fix readahead values for NAND/MMC devices
* Common: Revamped notification widget - cvpcs
-* Common: Updated various graphics for GB style - bluden
+* Common: Updated various graphics for GB style - blunden
* Common: DSPManager updated for 2.3 - alankila
* Common: Restyled music app - Jason Asher
* Common: Rotary answer in Phone app - James Peterson
@@ -75,6 +75,8 @@
* Common: Torch cleanup - defer
* Common: OpenGL backwards compatibility - Zinx, Cyanogen
* Common: SMS templates using gestures - Riccardo Ciovati
+* Common: Phone Goggles - David Bidorff
+* Common: Option to always show battery percentage on lockscreen - Robert Burns
* Espresso/Legend: Enabled native WiFi tethering - Cyanogen, OMAPZoom.org
* Z71: Enabled native WiFi tethering - arcee
* Passion: Kernel 2.6.37 - Google, Cyanogen
diff --git a/prebuilt/common/etc/init.d/04modules b/prebuilt/common/etc/init.d/04modules
index ad85910..1f00d63 100755
--- a/prebuilt/common/etc/init.d/04modules
+++ b/prebuilt/common/etc/init.d/04modules
@@ -4,7 +4,15 @@
MODULES="ipv6"
-for i in $MODULES;
+KVER=`uname -r`
+if [ ! -d /system/lib/modules/$KVER ]
+then
+ exit 0
+fi
+
+for i in $MODULES
do
- modprobe $i;
+ modprobe $i >/dev/null 2>&1
done
+
+exit 0