aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/mediatek/base-files
diff options
context:
space:
mode:
authorDaniel Golle <daniel@makrotopia.org>2022-07-13 04:30:32 +0100
committerDaniel Golle <daniel@makrotopia.org>2022-08-30 13:36:28 +0100
commita96382c1bb204698cd43e82193877c10e4b63027 (patch)
tree8731bd46ed0128f54440ba5d30ce79b6de54322b /target/linux/mediatek/base-files
parent38f7e932a5bbbf0f6dbc64ac05aa59e27c7ceec6 (diff)
downloadupstream-a96382c1bb204698cd43e82193877c10e4b63027.tar.gz
upstream-a96382c1bb204698cd43e82193877c10e4b63027.tar.bz2
upstream-a96382c1bb204698cd43e82193877c10e4b63027.zip
mediatek: add support for Bananapi BPi-R3
The Bananapi BPi-R3 is a development router board built around the MediaTek Filogic 830 (MT7986A) SoC. The board can boot either from microSD, SPI-NAND, SPI-NOR or eMMC. Only either SPI-NAND or SPI-NOR can be used at the same time, also only either microSD or eMMC can be used. The various storage options can be selected using small SMD switches on the board. Specs: * MediaTek MT7986A (Filogic 830) 4x ARM Cortex A53 * 4T4R 2.4G 802.11bgnax (MT7975N) * 4T4R 5G 802.11anac/ax (MT7975P) * 2 GB DDR4 RAM * 8 GB eMMC * 128 MB SPI-NAND flash * 32 MB SPI-NOR flash * on-board MT7531 GbE switch * 2x SFP+ (1 GbE / 2.5 GbE) * 5x GbE network port * miniPCIe slot (only USB 2.0 connected) * uSIM slot (connected to miniPCIe interface) * M.2 KEY-E PCIe interface (PCIe x2) * microSD card interface * 26 PIN GPIO Hardware details: https://wiki.banana-pi.org/Banana_Pi_BPI-R3 Working: * all 4 boot methods incl. installation via U-Boot, sysupgrade, ... * copper LAN and WAN ports * SFP1 (connected to gmac1, eth1 in Linux) * WiFi * LEDs * Buttons * PSTORE/ramoops based dual-boot Not Working (missing driver features): * SFP2 (connected to MT7531 switch) Untested: * M.2/NGFF slot (PCIe x2) * mPCIe slot (USB 2.0 + SIM) Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'target/linux/mediatek/base-files')
-rw-r--r--target/linux/mediatek/base-files/etc/uci-defaults/99_fwenv-store-ethaddr.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/target/linux/mediatek/base-files/etc/uci-defaults/99_fwenv-store-ethaddr.sh b/target/linux/mediatek/base-files/etc/uci-defaults/99_fwenv-store-ethaddr.sh
index b078b8f8ce..5dec158a93 100644
--- a/target/linux/mediatek/base-files/etc/uci-defaults/99_fwenv-store-ethaddr.sh
+++ b/target/linux/mediatek/base-files/etc/uci-defaults/99_fwenv-store-ethaddr.sh
@@ -1,6 +1,6 @@
[ ! -e /etc/fw_env.config ] && exit 0
-. /lib/functions.sh
+. /lib/functions/system.sh
case "$(board_name)" in
bananapi,bpi-r2|\
@@ -9,6 +9,12 @@ unielec,u7623-02)
[ -z "$(fw_printenv -n ethaddr 2>/dev/null)" ] &&
fw_setenv ethaddr "$(cat /sys/class/net/eth0/address)"
;;
+bananapi,bpi-r3)
+ [ -z "$(fw_printenv -n ethaddr 2>/dev/null)" ] &&
+ fw_setenv ethaddr "$(cat /sys/class/net/eth0/address)"
+ [ -z "$(fw_printenv -n eth1addr 2>/dev/null)" ] &&
+ fw_setenv eth1addr "$(macaddr_add $(cat /sys/class/net/eth0/address) 1)"
+ ;;
esac
exit 0