blob: 23aca5aa290427fe5fcf361fce144a23b337ef2a [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
Colin Cross22bcf972014-06-24 13:43:39 -070031 write /proc/sys/kernel/panic_on_oops 1
32
Benoit Goby1b964112014-02-19 17:41:02 -080033on fs
34 mkdir /dev/usb-ffs 0770 shell shell
35 mkdir /dev/usb-ffs/adb 0770 shell shell
36 mount functionfs adb /dev/usb-ffs/adb uid=2000,gid=2000
37
Doug Zongker66392482012-01-10 12:16:04 -080038 write /sys/class/android_usb/android0/enable 0
39 write /sys/class/android_usb/android0/idVendor 18D1
40 write /sys/class/android_usb/android0/idProduct D001
Benoit Goby1b964112014-02-19 17:41:02 -080041 write /sys/class/android_usb/android0/f_ffs/aliases adb
Doug Zongker66392482012-01-10 12:16:04 -080042 write /sys/class/android_usb/android0/functions adb
43 write /sys/class/android_usb/android0/iManufacturer ${ro.product.manufacturer}
44 write /sys/class/android_usb/android0/iProduct ${ro.product.model}
45 write /sys/class/android_usb/android0/iSerial ${ro.serialno}
46
47
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080048on boot
49
50 ifup lo
51 hostname localhost
52 domainname localdomain
53
54 class_start default
55
Doug Zongker77ea71d2013-08-30 12:20:16 -070056on property:sys.powerctl=*
57 powerctl ${sys.powerctl}
58
Colin Crossdd6a0412010-05-14 13:42:20 -070059service ueventd /sbin/ueventd
60 critical
Stephen Smalley2c9d5b22014-01-13 09:44:42 -050061 seclabel u:r:ueventd:s0
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080062
Todd Poynorbe968092013-09-13 16:34:12 -070063service healthd /sbin/healthd -r
Todd Poynor2f2c9882013-06-04 13:11:44 -070064 critical
Stephen Smalley2c9d5b22014-01-13 09:44:42 -050065 seclabel u:r:healthd:s0
Todd Poynor2f2c9882013-06-04 13:11:44 -070066
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080067service recovery /sbin/recovery
Stephen Smalley2c9d5b22014-01-13 09:44:42 -050068 seclabel u:r:recovery:s0
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080069
Nick Kralevichc52c5b82014-01-18 09:22:50 -080070service adbd /sbin/adbd --root_seclabel=u:r:su:s0 --device_banner=recovery
Kenny Rootecc76ba2010-06-28 09:01:22 -070071 disabled
Doug Zongkercc2958f2013-09-11 13:24:32 -070072 socket adbd stream 660 system system
Stephen Smalley2c9d5b22014-01-13 09:44:42 -050073 seclabel u:r:adbd:s0
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080074
Mike Lockwood718a2f72011-06-29 10:22:04 -040075# Always start adbd on userdebug and eng builds
76on property:ro.debuggable=1
Mike Lockwood7e58b652011-06-19 02:52:01 -040077 write /sys/class/android_usb/android0/enable 1
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080078 start adbd
79
Mike Lockwood718a2f72011-06-29 10:22:04 -040080# Restart adbd so it can run as root
Doug Zongkerfb04b872011-06-23 15:30:34 -070081on property:service.adb.root=1
82 write /sys/class/android_usb/android0/enable 0
83 restart adbd
84 write /sys/class/android_usb/android0/enable 1