| 12345678910111213141516171819202122 |
- . /lib/functions/uci-defaults.sh
- . /lib/functions.sh
- . /lib/functions/system.sh
- board_config_update
- board=$(board_name)
- case "$board" in
- st,stm32mp135f-dk)
- ucidef_set_interfaces_lan_wan "eth0" "eth1"
- ;;
- st,stm32mp157c-dk2 | \
- st,stm32mp157c-dk2-scmi)
- ucidef_set_interface_lan "eth0"
- ;;
- esac
- board_config_flush
- exit 0
|