diff options
author | Doug Zongker <dougz@android.com> | 2012-03-19 15:52:03 -0700 |
---|---|---|
committer | Doug Zongker <dougz@android.com> | 2012-03-19 16:24:28 -0700 |
commit | 703ed152147d90a549a2fee7cda5771703e502a0 (patch) | |
tree | 453e0f55b5ee042862fc63e1bae86600c2754787 /etc | |
parent | 35a35a67663127e42c8048ca0dc7465068a5606f (diff) | |
download | bootable_recovery-703ed152147d90a549a2fee7cda5771703e502a0.zip bootable_recovery-703ed152147d90a549a2fee7cda5771703e502a0.tar.gz bootable_recovery-703ed152147d90a549a2fee7cda5771703e502a0.tar.bz2 |
run minadbd as shell user
Make minadbd drop its root privileges after initializing. We need to
make the /tmp directory writable by the shell group so that it can
drop the sideloaded file there.
Change-Id: I67b292cf769383f0f67fb934e5a80d408a4c131d
Diffstat (limited to 'etc')
-rw-r--r-- | etc/init.rc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/etc/init.rc b/etc/init.rc index c001a96..89a161e 100644 --- a/etc/init.rc +++ b/etc/init.rc @@ -15,6 +15,9 @@ on init mkdir /cache mount /tmp /tmp tmpfs + chown root shell /tmp + chmod 0775 /tmp + write /sys/class/android_usb/android0/enable 0 write /sys/class/android_usb/android0/idVendor 18D1 write /sys/class/android_usb/android0/idProduct D001 |