blob: 6e0595b44d6f1be8e824acc1536a4209626ada0f [file] [log] [blame]
Colin Crossf510f062012-08-08 13:06:26 -07001import /init.recovery.${ro.hardware}.rc
2
Colin Crossdd6a0412010-05-14 13:42:20 -07003on early-init
Stephen Smalley2c9d5b22014-01-13 09:44:42 -05004 # Apply strict SELinux checking of PROT_EXEC on mmap/mprotect calls.
5 write /sys/fs/selinux/checkreqprot 0
6
7 # Set the security context for the init process.
8 # This should occur before anything else (e.g. ueventd) is started.
9 setcon u:r:init:s0
10
Colin Crossdd6a0412010-05-14 13:42:20 -070011 start ueventd
Todd Poynor2f2c9882013-06-04 13:11:44 -070012 start healthd
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080013
14on init
Doug Zongker075ef322014-01-14 09:50:35 -080015 export PATH /sbin:/system/bin
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080016 export ANDROID_ROOT /system
17 export ANDROID_DATA /data
18 export EXTERNAL_STORAGE /sdcard
19
20 symlink /system/etc /etc
21
22 mkdir /sdcard
23 mkdir /system
24 mkdir /data
25 mkdir /cache
Doug Zongker075ef322014-01-14 09:50:35 -080026 mount tmpfs tmpfs /tmp
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080027
Doug Zongker703ed152012-03-19 15:52:03 -070028 chown root shell /tmp
29 chmod 0775 /tmp
30
Benoit Goby1b964112014-02-19 17:41:02 -080031on fs
32 mkdir /dev/usb-ffs 0770 shell shell
33 mkdir /dev/usb-ffs/adb 0770 shell shell
34 mount functionfs adb /dev/usb-ffs/adb uid=2000,gid=2000
35
Doug Zongker66392482012-01-10 12:16:04 -080036 write /sys/class/android_usb/android0/enable 0
37 write /sys/class/android_usb/android0/idVendor 18D1
38 write /sys/class/android_usb/android0/idProduct D001
Benoit Goby1b964112014-02-19 17:41:02 -080039 write /sys/class/android_usb/android0/f_ffs/aliases adb
Doug Zongker66392482012-01-10 12:16:04 -080040 write /sys/class/android_usb/android0/functions adb
41 write /sys/class/android_usb/android0/iManufacturer ${ro.product.manufacturer}
42 write /sys/class/android_usb/android0/iProduct ${ro.product.model}
43 write /sys/class/android_usb/android0/iSerial ${ro.serialno}
44
45
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080046on boot
47
48 ifup lo
49 hostname localhost
50 domainname localdomain
51
52 class_start default
53
Doug Zongker77ea71d2013-08-30 12:20:16 -070054on property:sys.powerctl=*
55 powerctl ${sys.powerctl}
56
Colin Crossdd6a0412010-05-14 13:42:20 -070057service ueventd /sbin/ueventd
58 critical
Stephen Smalley2c9d5b22014-01-13 09:44:42 -050059 seclabel u:r:ueventd:s0
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080060
Todd Poynor2f2c9882013-06-04 13:11:44 -070061service healthd /sbin/healthd -n
62 critical
Stephen Smalley2c9d5b22014-01-13 09:44:42 -050063 seclabel u:r:healthd:s0
Todd Poynor2f2c9882013-06-04 13:11:44 -070064
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080065service recovery /sbin/recovery
Stephen Smalley2c9d5b22014-01-13 09:44:42 -050066 seclabel u:r:recovery:s0
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080067
Nick Kralevichc52c5b82014-01-18 09:22:50 -080068service adbd /sbin/adbd --root_seclabel=u:r:su:s0 --device_banner=recovery
Kenny Rootecc76ba2010-06-28 09:01:22 -070069 disabled
Doug Zongkercc2958f2013-09-11 13:24:32 -070070 socket adbd stream 660 system system
Stephen Smalley2c9d5b22014-01-13 09:44:42 -050071 seclabel u:r:adbd:s0
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080072
Mike Lockwood718a2f72011-06-29 10:22:04 -040073# Always start adbd on userdebug and eng builds
74on property:ro.debuggable=1
Mike Lockwood7e58b652011-06-19 02:52:01 -040075 write /sys/class/android_usb/android0/enable 1
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080076 start adbd
77
Mike Lockwood718a2f72011-06-29 10:22:04 -040078# Restart adbd so it can run as root
Doug Zongkerfb04b872011-06-23 15:30:34 -070079on property:service.adb.root=1
80 write /sys/class/android_usb/android0/enable 0
81 restart adbd
82 write /sys/class/android_usb/android0/enable 1