02_network 205 B

1234567891011121314151617
  1. # Copyright (C) 2013-2015 OpenWrt.org
  2. . /lib/functions/uci-defaults.sh
  3. board_config_update
  4. board=$(board_name)
  5. case "$board" in
  6. *)
  7. ucidef_set_interface_lan 'eth0'
  8. ;;
  9. esac
  10. board_config_flush
  11. exit 0