Home | History | Annotate | Download | only in diskinstaller
      1 on early-init
      2     start ueventd
      3 
      4 on init
      5     export PATH /sbin:/system/sbin:/system/bin
      6     export ANDROID_ROOT /system
      7     export ANDROID_DATA /data
      8 
      9     symlink /system/etc /etc
     10     symlink /system/bin/ash /system/bin/sh
     11 
     12     mkdir /data
     13     mkdir /cache
     14     mount /tmp /tmp tmpfs
     15 
     16 on boot
     17     ifup lo
     18     hostname localhost
     19     domainname localdomain
     20 
     21     class_start default
     22 
     23 service ueventd /sbin/ueventd
     24     critical
     25 
     26 service installer /system/bin/installer -p /dev/block/sdb2
     27     console
     28     oneshot
     29 
     30 service logcat /system/bin/logcat
     31     console
     32 
     33 service console /system/bin/sh
     34     console
     35