summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDees Troy <dees_troy@teamw.in>2014-04-01 20:30:49 +0200
committerGerrit Code Review <gerrit2@gerrit>2014-04-01 20:30:49 +0200
commit2ea342a55af2569f94e98668cafdec256101ed2d (patch)
tree8d9f0b229e0f5ef3d14dfbf210db7a3792266bac
parentMerge "Add basic error checking to legacy property init" into android-4.4 (diff)
parentcorrectly mount tmpfs as /tmp in recovery (diff)
downloadandroid_bootable_recovery-2ea342a55af2569f94e98668cafdec256101ed2d.tar
android_bootable_recovery-2ea342a55af2569f94e98668cafdec256101ed2d.tar.gz
android_bootable_recovery-2ea342a55af2569f94e98668cafdec256101ed2d.tar.bz2
android_bootable_recovery-2ea342a55af2569f94e98668cafdec256101ed2d.tar.lz
android_bootable_recovery-2ea342a55af2569f94e98668cafdec256101ed2d.tar.xz
android_bootable_recovery-2ea342a55af2569f94e98668cafdec256101ed2d.tar.zst
android_bootable_recovery-2ea342a55af2569f94e98668cafdec256101ed2d.zip
-rw-r--r--etc/init.rc4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/init.rc b/etc/init.rc
index 8cff20ec6..39724d066 100644
--- a/etc/init.rc
+++ b/etc/init.rc
@@ -5,7 +5,7 @@ on early-init
start healthd
on init
- export PATH /sbin
+ export PATH /sbin:/system/bin
export LD_LIBRARY_PATH .:/sbin
export ANDROID_ROOT /system
export ANDROID_DATA /data
@@ -16,7 +16,7 @@ on init
mkdir /system
mkdir /data
mkdir /cache
- mount /tmp /tmp tmpfs
+ mount tmpfs tmpfs /tmp
chown root shell /tmp
chmod 0775 /tmp