123456789101112131415161718192021222324252627282930313233 |
- # Copyright (C) 2014-2016 OpenWrt.org
- # Copyright (C) 2017 LEDE project
- . /lib/functions/uci-defaults.sh
- . /lib/functions.sh
- . /lib/functions/system.sh
- board_config_update
- board=$(board_name)
- case "$board" in
- raspberrypi,model-b |\
- raspberrypi,model-b-plus |\
- raspberrypi,model-b-rev2 |\
- raspberrypi,2-model-b |\
- raspberrypi,2-model-b-rev2 |\
- raspberrypi,3-model-b |\
- raspberrypi,3-model-b-plus |\
- raspberrypi,400 |\
- raspberrypi,4-compute-module |\
- raspberrypi,4-model-b)
- ucidef_set_interface_lan "eth0"
- ;;
- raspberrypi,model-zero-w)
- ucidef_set_interface_lan "wlan0"
- ;;
- esac
- board_config_flush
- exit 0
|