3 # initialise debian system from outside the chroot
4 # this script gets called from the android init system
6 # first, set our PATH correctly
7 # android uses a retarded PATH
8 export PATH='/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'
10 # what services do we want to start?
21 # start debian services
22 for service in $services
24 /usr/sbin/service "$service" start
27 # sleep forever so android init doesn't keep running us