Merge "Add ueventd service for diskinstaller init.rc"
diff --git a/init.rc b/init.rc
index 5ba0f18..186ccc7 100644
--- a/init.rc
+++ b/init.rc
@@ -1,3 +1,6 @@
+on early-init
+    start ueventd
+
 on init
     export PATH /sbin:/system/sbin:/system/bin
     export ANDROID_ROOT /system
@@ -10,9 +13,6 @@
     mkdir /cache
     mount /tmp /tmp tmpfs
 
-# mount the installer needed partitions
-#    mount ext2 /dev/block/sdb2 /data ro
-
 on boot
     ifup lo
     hostname localhost
@@ -20,6 +20,9 @@
 
     class_start default
 
+service ueventd /sbin/ueventd
+    critical
+
 service installer /system/bin/installer -p /dev/block/sdb2
     console
     oneshot