done 298 B

123456789101112131415161718
  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 && sync
  7. rm -f /tmp/sysupgrade.tar && sync
  8. # process user commands
  9. [ -f /etc/rc.local ] && {
  10. sh /etc/rc.local
  11. }
  12. # set leds to normal state
  13. . /etc/diag.sh
  14. set_state done
  15. }