02_network 373 B

123456789101112131415161718192021222324252627
  1. #
  2. # Copyright (C) 2018 OpenWrt.org
  3. #
  4. . ./lib/functions/uci-defaults.sh
  5. board=$(board_name)
  6. board_config_update
  7. case "$board" in
  8. gw,gw610x|\
  9. gw,gw6903)
  10. ucidef_set_interfaces_lan 'eth0'
  11. ;;
  12. gw,gw620x|\
  13. gw,gw630x)
  14. ucidef_set_interfaces_lan_wan 'eth0' 'eth1'
  15. ;;
  16. gw,gw640x)
  17. ucidef_set_interfaces_lan_wan 'eth0 eth1 eth2 eth3' 'eth4'
  18. ;;
  19. esac
  20. board_config_flush
  21. exit 0