Add init.htc.rc and modify ADB sideload messages
diff --git a/adb_install.cpp b/adb_install.cpp
index 3b64606..63eb967 100644
--- a/adb_install.cpp
+++ b/adb_install.cpp
@@ -43,14 +43,24 @@
 set_usb_driver(bool enabled) {
     int fd = open("/sys/class/android_usb/android0/enable", O_WRONLY);
     if (fd < 0) {
+/* These error messages show when built in older Android branches (e.g. Gingerbread)
+   It's not a critical error so we're disabling the error messages.
         ui->Print("failed to open driver control: %s\n", strerror(errno));
+*/
+		LOGI("failed to open driver control: %s\n", strerror(errno));
         return;
     }
     if (write(fd, enabled ? "1" : "0", 1) < 0) {
+/*
         ui->Print("failed to set driver control: %s\n", strerror(errno));
+*/
+		LOGI("failed to set driver control: %s\n", strerror(errno));
     }
     if (close(fd) < 0) {
+/*
         ui->Print("failed to close driver control: %s\n", strerror(errno));
+*/
+		LOGI("failed to close driver control: %s\n", strerror(errno));
     }
 }
 
diff --git a/etc/init.htc.rc b/etc/init.htc.rc
new file mode 100755
index 0000000..28aa052
--- /dev/null
+++ b/etc/init.htc.rc
@@ -0,0 +1,65 @@
+on early-init
+    start ueventd
+
+on init
+    export PATH /sbin
+    export LD_LIBRARY_PATH .:/sbin
+    export ANDROID_ROOT /system
+    export ANDROID_DATA /data
+    export EXTERNAL_STORAGE /sdcard
+
+    symlink /system/etc /etc
+    symlink /sbin/busybox /sbin/sh
+
+    chmod 0755 /sbin/busybox
+
+    mkdir /sdcard
+    mkdir /system
+    mkdir /data
+    mkdir /data/data
+    mkdir /cache
+    mkdir /mtdcache
+    mkdir /devlog
+    mkdir /internal_sdcard
+    mount /tmp /tmp tmpfs
+
+on boot
+
+    ifup lo
+    hostname localhost
+    domainname localdomain
+
+    class_start default
+
+service ueventd /sbin/ueventd
+    critical
+
+service choice_fn /sbin/choice_fn
+oneshot
+
+service recovery /sbin/recovery
+disabled
+
+service power_test /sbin/power_test
+disabled
+oneshot
+
+service offmode_charging /sbin/offmode_charging
+disabled
+oneshot
+
+service detect_key /sbin/detect_key
+disabled
+oneshot
+
+service htcbatt /sbin/htcbatt
+oneshot
+
+service adbd /sbin/adbd recovery
+    disabled
+
+on property:persist.service.adb.enable=1
+    start adbd
+
+on property:persist.service.adb.enable=0
+    stop adbd