summaryrefslogtreecommitdiffstats
path: root/lpm.rc
diff options
context:
space:
mode:
authornebkat <nebkat@teamhacksung.org>2012-11-10 10:36:07 +0000
committerNebojsa Cvetkovic <nebkat@nebkat-XPS-8500.(none)>2012-11-10 15:30:46 +0000
commitee1a83994c279d846ba36a42c6d3b86fcf4a4538 (patch)
tree98ee758594e168e70e79202807683808c68865ba /lpm.rc
downloaddevice_samsung_smdk4412-common-ee1a83994c279d846ba36a42c6d3b86fcf4a4538.tar.gz
device_samsung_smdk4412-common-ee1a83994c279d846ba36a42c6d3b86fcf4a4538.tar.bz2
device_samsung_smdk4412-common-ee1a83994c279d846ba36a42c6d3b86fcf4a4538.zip
Initial commit
Diffstat (limited to 'lpm.rc')
-rw-r--r--lpm.rc78
1 files changed, 78 insertions, 0 deletions
diff --git a/lpm.rc b/lpm.rc
new file mode 100644
index 0000000..2a94492
--- /dev/null
+++ b/lpm.rc
@@ -0,0 +1,78 @@
+on early-init
+ start ueventd
+
+on init
+ export PATH /sbin:/vendor/bin:/system/sbin:/system/bin:/system/xbin
+ export LD_LIBRARY_PATH /vendor/lib:/system/lib
+ export ANDROID_ROOT /system
+ export ANDROID_DATA /data
+ export EXTERNAL_STORAGE /sdcard
+
+ symlink /system/etc /etc
+
+ mkdir /sdcard
+ mkdir /preload
+ mkdir /system
+ mkdir /data
+ mkdir /cache
+ mkdir /efs
+ mkdir /tmp
+ mkdir /dbdata
+ mkdir /mnt 0775 root root
+ #mount /tmp /tmp tmpfs
+
+on early-fs
+ mount ext4 /dev/block/mmcblk0p9 /system ro wait noatime
+ mount ext4 /dev/block/mmcblk0p12 /data wait nosuid nodev noatime discard,noauto_da_alloc,journal_async_commit
+
+ mkdir /data/log 0777
+ chmod 0666 /dev/log/radio
+ chmod 0666 /dev/log/main
+ chmod 0666 /dev/log/event
+
+on boot
+# write /sys/class/sec/switch/usb_sel PDA
+
+# CPU Frequency Governor
+ write /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor pegasusq
+
+# EHCI runtime enable for LPA
+ write /sys/devices/platform/s5p-ehci/power/control auto
+
+ ifup lo
+ hostname localhost
+ domainname localdomain
+
+ class_start default
+
+service debuggerd /system/bin/debuggerd
+
+service ueventd /sbin/ueventd
+ critical
+
+service console /system/bin/sh
+ console
+
+service playlpm /system/bin/playlpm
+ user root
+
+service immvibed /system/bin/immvibed
+ oneshot
+
+service lpmkey /system/bin/lpmkey
+ user root
+
+# adbd is controlled by the persist.service.adb.enable system property
+service adbd /sbin/adbd
+ disabled
+
+# adbd on at boot in emulator
+on property:ro.kernel.qemu=1
+ start adbd
+
+on property:persist.service.adb.enable=1
+ start adbd
+
+on property:persist.service.adb.enable=0
+ stop adbd
+