50641a0f9a
Use the generic board detection based on the device tree compatible string instead of a target specific one. Signed-off-by: Mathias Kresin <dev@kresin.me>
17 lines
175 B
Bash
17 lines
175 B
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2018 OpenWrt.org
|
|
#
|
|
|
|
. ./lib/functions/uci-defaults.sh
|
|
|
|
board=$(board_name)
|
|
|
|
board_config_update
|
|
|
|
case "$board" in
|
|
esac
|
|
|
|
board_config_flush
|
|
|
|
exit 0
|