aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergiu Cozma <lssjbrolli@gmail.com>2015-04-02 16:42:43 +0300
committerSergiu Cozma <lssjbrolli@gmail.com>2015-04-02 16:42:43 +0300
commitb562792d9db14dc153d671d18e82afe94337ece0 (patch)
treed4094c4909c2026ecace84f25a47af0d91f645bc
parent3ae42910f7f1b6bf2e568b358f4f271c72865bb6 (diff)
klimtlte: Remove lpm.rc
Change-Id: Ib129c3d179c73f1518e4f25bd1ee1b9c77f26824
-rw-r--r--rootdir/Android.mk8
-rw-r--r--rootdir/etc/lpm.rc89
2 files changed, 0 insertions, 97 deletions
diff --git a/rootdir/Android.mk b/rootdir/Android.mk
index 35689ed..ceb9a56 100644
--- a/rootdir/Android.mk
+++ b/rootdir/Android.mk
@@ -50,14 +50,6 @@ LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT)
include $(BUILD_PREBUILT)
include $(CLEAR_VARS)
-LOCAL_MODULE := lpm.rc
-LOCAL_MODULE_TAGS := optional eng
-LOCAL_MODULE_CLASS := ETC
-LOCAL_SRC_FILES := etc/lpm.rc
-LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT)
-include $(BUILD_PREBUILT)
-
-include $(CLEAR_VARS)
LOCAL_MODULE := ueventd.universal5420.rc
LOCAL_MODULE_TAGS := optional eng
LOCAL_MODULE_CLASS := ETC
diff --git a/rootdir/etc/lpm.rc b/rootdir/etc/lpm.rc
deleted file mode 100644
index 8054100..0000000
--- a/rootdir/etc/lpm.rc
+++ /dev/null
@@ -1,89 +0,0 @@
-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
-
-# Right now vendor lives on the same filesystem as system,
-# but someday that may change.
- symlink /system/vendor /vendor
-
- 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
-
- write /proc/sys/kernel/hung_task_timeout_secs 0
-
-on early-fs
- insmod /lib/modules/vibrator.ko
-
- mount ext4 /dev/block/mmcblk0p20 /system ro wait noatime
- mount ext4 /dev/block/mmcblk0p3 /efs noatime nosuid nodev 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 /bin/sh
-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
-