01_leds 368 B

1234567891011121314151617181920212223
  1. #
  2. # Copyright (C) 2012-2015 OpenWrt.org
  3. #
  4. . /lib/functions/uci-defaults.sh
  5. board_config_update
  6. board=$(board_name)
  7. case "$board" in
  8. iom,ix2-200)
  9. ucidef_set_led_timer "health" "health" "status:white:rebuild_led" "200" "800"
  10. ;;
  11. linksys,e4200-v2|\
  12. linksys,ea4500)
  13. ucidef_set_led_default "pulse" "pulse" "viper:white:pulse" "1"
  14. ;;
  15. esac
  16. board_config_flush
  17. exit 0