done 255 B

1234567891011121314151617
  1. #!/bin/sh /etc/rc.common
  2. # Copyright (C) 2006 OpenWrt.org
  3. START=95
  4. boot() {
  5. mount_root done
  6. rm -f /sysupgrade.tgz
  7. # process user commands
  8. [ -f /etc/rc.local ] && {
  9. sh /etc/rc.local
  10. }
  11. # set leds to normal state
  12. . /etc/diag.sh
  13. set_state done
  14. }