From dd8850756d046f5afc89722bc1bbb1b25f34e24a Mon Sep 17 00:00:00 2001 From: Paul Donald Date: Sun, 11 Feb 2024 23:44:42 +0100 Subject: [PATCH 1/6] umdns: prevent a few 'uci: Entry not found' pass '-q' switch to uci to prevent spurious output Signed-off-by: Paul Donald --- package/network/services/umdns/files/umdns.init | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package/network/services/umdns/files/umdns.init b/package/network/services/umdns/files/umdns.init index 1ae1cccb03..7f25595f24 100644 --- a/package/network/services/umdns/files/umdns.init +++ b/package/network/services/umdns/files/umdns.init @@ -8,7 +8,7 @@ PROG=/usr/sbin/umdns IFACES="" load_ifaces() { - local network="$(uci get umdns.@umdns[-1].network)" + local network="$(uci -q get umdns.@umdns[-1].network)" for n in $network; do local device json_load "$(ifstatus $n)" @@ -29,7 +29,7 @@ reload_service() { } start_service() { - local network="$(uci get umdns.@umdns[-1].network)" + local network="$(uci -q get umdns.@umdns[-1].network)" procd_open_instance procd_set_param command "$PROG" @@ -42,7 +42,7 @@ start_service() { done procd_add_raw_trigger "instance.update" 5000 "/bin/ubus" "call" "umdns" "reload" procd_close_trigger - [ "$(uci get umdns.@umdns[-1].jail)" = 1 ] && procd_add_jail umdns ubus log + [ "$(uci -q get umdns.@umdns[-1].jail)" = 1 ] && procd_add_jail umdns ubus log procd_close_instance } From ab853e157141cb92912c47177fff8d79b67b0724 Mon Sep 17 00:00:00 2001 From: Mieczyslaw Nalewaj Date: Thu, 15 Feb 2024 21:58:31 +0100 Subject: [PATCH 2/6] ramips: removing unnecessary compatibility for TP-Link Archer C2 v1 Removing: compatible = "rtl8367b" This string is not used anywhere in the code. Signed-off-by: Mieczyslaw Nalewaj --- target/linux/ramips/dts/mt7620a_tplink_archer-c2-v1.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/ramips/dts/mt7620a_tplink_archer-c2-v1.dts b/target/linux/ramips/dts/mt7620a_tplink_archer-c2-v1.dts index 7ec18fe7fc..33642114cb 100644 --- a/target/linux/ramips/dts/mt7620a_tplink_archer-c2-v1.dts +++ b/target/linux/ramips/dts/mt7620a_tplink_archer-c2-v1.dts @@ -73,7 +73,7 @@ }; rtl8367rb { - compatible = "realtek,rtl8367b", "rtl8367b"; + compatible = "realtek,rtl8367b"; cpu_port = <6>; realtek,extif1 = <1 0 1 1 1 1 1 1 2>; mii-bus = <&mdio0>; From 9c24a14ffa779d9e69cbeef45c42403b781d94ca Mon Sep 17 00:00:00 2001 From: Daniel Huici Date: Sun, 4 Feb 2024 23:59:48 +0100 Subject: [PATCH 3/6] lantiq: add support for Arcadyan VRV9510KWAC23 The Arcadyan VRV9510KWAC23 (trade name Livebox Next) is a Lantiq router distributed by some spanish ISPs Hardware: - SoC: Lantiq VRX200 - CPU: 2x MIPS 34Kc 500 MHz - RAM: 256 MiB DDR2 - Flash: 128 MiB NAND - Ethernet: Built-in Gigabit Ethernet switch, 5x 1GbE - Wifi 2.4GHz: Broadcom BCM43222KFBG 802.11b/g/b MIMO 2T2R - Wifi 5GHz: Broadcom BCM4360KMLG 802.11ac MIMO 3T3R - USB: 2x USB 2.0 - DSL: Built-in VDSL/ADSL2+ XWAY VRX208 - LEDs: 8x - Buttons: 4x - Phone: Lantiq PEF 42068 V XWAY SLIC120 Install instructions: Detailed instructions can be found on the wiki https://openwrt.org/toh/arcadyan/vrv9510kwac23 1. Boot into UART mode and upload the the https://raw.githubusercontent.com/danielhuici/arcadyan-vrv9510kwac23-utils/main/u-boot.asc file via serial console to boot into U-Boot. 2. Perform a backup of the NAND 3. Setup a TFTP server and serve the https://github.com/danielhuici/arcadyan-vrv9510kwac23-utils/raw/main/u-boot.ltq.lzo.nandspl. Replace the OEM bootloader with this one. Erase your NAND and write the image into it 4. Reboot the router 5. Serve the OpenWrt ramdisk image on your TFTP server and boot it via U-Boot 6. When OpenWrt boots, flash the SquashFS OpenWrt image using LuCi interface, so OpenWrt gets installed into the NAND Signed-off-by: Daniel Huici --- .../dts/lantiq/vr9_arcadyan_vrv9510kwac23.dts | 361 ++++++++++++++++++ target/linux/lantiq/image/vr9.mk | 15 + .../xrx200/base-files/etc/board.d/01_leds | 4 + .../xrx200/base-files/etc/board.d/02_network | 4 +- .../xrx200/base-files/lib/upgrade/platform.sh | 1 + 5 files changed, 384 insertions(+), 1 deletion(-) create mode 100644 target/linux/lantiq/files/arch/mips/boot/dts/lantiq/vr9_arcadyan_vrv9510kwac23.dts diff --git a/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/vr9_arcadyan_vrv9510kwac23.dts b/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/vr9_arcadyan_vrv9510kwac23.dts new file mode 100644 index 0000000000..4837223813 --- /dev/null +++ b/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/vr9_arcadyan_vrv9510kwac23.dts @@ -0,0 +1,361 @@ +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "vr9.dtsi" + +#include +#include +#include + +/ { + compatible = "arcadyan,vrv9510kwac23", "lantiq,xway", "lantiq,vr9"; + model = "Arcadyan VRV9510KWAC23"; + chosen { + bootargs = "console=ttyLTQ0,115200 mem=254M vpe1_load_addr=0x8fe00000 vpe1_mem=2M maxvpes=1 maxtcs=1 nosmp"; + }; + + aliases { + led-boot = &power_green; + led-failsafe = &upgrade; + led-running = &power_green; + led-upgrade = &power_green; + led-internet = &internet_green; + led-wifi = &wireless_green; + }; + + bcm43222-sprom { + compatible = "brcm,ssb-sprom"; + + pci-bus = <0>; + pci-dev = <14>; + + nvmem-cells = <&macaddr_boardconfig_16 1>; + nvmem-cell-names = "mac-address"; + + brcm,sprom = "brcm/bcm43222-sprom.bin"; + brcm,sprom-fixups = <2 0x04d2>, + <65 0x1308>, <68 0x0402>, + <70 0x1cc6>, <71 0x3c49>, + <72 0x1132>, <87 0x0315>, + <88 0x0315>, <96 0x2048>, + <97 0xfeed>, <98 0x153e>, + <99 0xfb1f>, <100 0x3e54>, + <101 0x3848>, <102 0xfea0>, + <103 0x145c>, <104 0xfaf0>, + <105 0xfe6e>, <106 0x110c>, + <107 0xfb7e>, <108 0xff00>, + <109 0x13c4>, <110 0xfb30>, + <111 0x0000>, <112 0x204c>, + <113 0xfeb8>, <114 0x1508>, + <115 0xfacb>, <116 0x3e48>, + <117 0x3848>, <118 0xfeb2>, + <119 0x156e>, <120 0xfabf>, + <121 0xfe57>, <122 0x1139>, + <123 0xfb6d>, <124 0xff38>, + <125 0x13ee>, <126 0xfb6d>, + <127 0x0000>, <161 0x0000>, + <162 0x0000>, <169 0x0000>, + <170 0x0000>, <171 0x0000>, + <172 0x0000>, <173 0x0000>, + <174 0x0000>, <175 0x0000>, + <176 0x0000>, <219 0x1108>, + <127 0x0000>, <161 0x0000>, + <162 0x0000>, <169 0x0000>, + <170 0x0000>, <171 0x0000>, + <172 0x0000>, <173 0x0000>, + <174 0x0000>, <175 0x0000>, + <176 0x0000>, <219 0x1108>; + }; + + bcm4360-sprom { + compatible = "brcm,bcma-sprom"; + + pci-bus = <2>; + pci-dev = <0>; + + nvmem-cells = <&macaddr_boardconfig_16 1>; + nvmem-cell-names = "mac-address"; + + brcm,sprom = "brcm/bcm4360-sprom.bin"; + }; + + memory@0 { + device_type = "memory"; + reg = <0x0 0x10000000>; + }; + + keys { + compatible = "gpio-keys-polled"; + poll-interval = <100>; + + reset { + label = "reset"; + gpios = <&gpio 20 GPIO_ACTIVE_LOW>; + linux,code = ; + }; + wps { + label = "wps"; + gpios = <&gpio 6 GPIO_ACTIVE_LOW>; + linux,code = ; + }; + rfkill { + label = "rfkill"; + gpios = <&gpio 5 GPIO_ACTIVE_LOW>; + linux,code = ; + }; + service { + label = "service"; + gpios = <&gpio 22 GPIO_ACTIVE_LOW>; + linux,code = ; + }; + }; + + leds { + compatible = "gpio-leds"; + // from top to bottom + power_green: power { + gpios = <&gpio 38 GPIO_ACTIVE_LOW>; + color = ; + function = LED_FUNCTION_POWER; + }; + internet_green: internet_green { + gpios = <&gpio 26 GPIO_ACTIVE_LOW>; + color = ; + function = LED_FUNCTION_WAN; + }; + internet_red { + gpios = <&gpio 33 GPIO_ACTIVE_LOW>; + color = ; + function = LED_FUNCTION_FAULT; + }; + phone { + gpios = <&gpio 44 GPIO_ACTIVE_LOW>; + color = ; + }; + lan { + color = ; + gpios = <&gpio 45 GPIO_ACTIVE_LOW>; + function = LED_FUNCTION_LAN; + }; + wireless_blue { + gpios = <&gpio 40 GPIO_ACTIVE_LOW>; + color = ; + }; + wireless_green: wireless_green { + gpios = <&gpio 47 GPIO_ACTIVE_LOW>; + color = ; + function = LED_FUNCTION_WLAN; + }; + upgrade: upgrade { + gpios = <&gpio 41 GPIO_ACTIVE_LOW>; + color = ; + }; + }; + + usb_vbus: regulator-usb-vbus { + compatible = "regulator-fixed"; + + regulator-name = "USB_VBUS"; + + regulator-min-microvolt = <5000000>; + regulator-max-microvolt = <5000000>; + + gpio = <&gpio 32 GPIO_ACTIVE_HIGH>; + enable-active-high; + }; +}; + +&localbus { + flash@0 { + compatible = "lantiq,nand-xway"; + lantiq,cs = <1>; + bank-width = <2>; + reg = <0 0x0 0x2000000>; + + pinctrl-0 = <&nand_pins>, <&nand_cs1_pins>; + pinctrl-names = "default"; + + nand-use-soft-ecc-engine; + + partitions { + compatible = "fixed-partitions"; + #address-cells = <1>; + #size-cells = <1>; + + partition@0 { + label = "uboot"; + reg = <0x00000 0x80000>; + read-only; + }; + partition@80000 { + label = "u-boot-env"; + reg = <0x80000 0x20000>; + }; + partition@a0000 { + label = "kernel"; + reg = <0xa0000 0x400000>; + }; + partition@540000 { + label = "ubi"; + reg = <0x4a0000 0x7a00000>; + }; + boardconfig: partition@7ea0000 { + label = "board_config"; + reg = <0x7ea0000 0x1000>; + read-only; + + nvmem-layout { + compatible = "fixed-layout"; + #address-cells = <1>; + #size-cells = <1>; + + macaddr_boardconfig_16: macaddr@16 { + compatible = "mac-base"; + reg = <0x16 0x6>; + #nvmem-cell-cells = <1>; + }; + }; + }; + }; + }; +}; + +ð0 { + nvmem-cells = <&macaddr_boardconfig_16 0>; + nvmem-cell-names = "mac-address"; +}; + +&gphy0 { + lantiq,gphy-mode = ; +}; + +&gphy1 { + lantiq,gphy-mode = ; +}; + +&gpio { + pinctrl-names = "default"; + pinctrl-0 = <&state_default>; + + state_default: pinmux { + pci_rst { + lantiq,pins = "io21"; + lantiq,output = <1>; + lantiq,open-drain = <0>; + lantiq,pull = <2>; + }; + pcie_rst { + lantiq,pins = "io25"; + lantiq,output = <1>; + lantiq,open-drain = <0>; + lantiq,pull = <2>; + }; + usb_vbus { + lantiq,pins = "io32"; + lantiq,output = <1>; + lantiq,open-drain = <0>; + lantiq,pull = <2>; + }; + }; +}; + +&gswip { + pinctrl-0 = <&mdio_pins>; + pinctrl-names = "default"; +}; + +&gswip_mdio { + phy0: ethernet-phy@0 { + reg = <0x0>; + }; + phy1: ethernet-phy@1 { + reg = <0x1>; + }; + phy5: ethernet-phy@5 { + reg = <0x5>; + }; + phy11: ethernet-phy@11 { + reg = <0x11>; + }; + phy13: ethernet-phy@13 { + reg = <0x13>; + }; +}; + +&gswip_ports { + port@0 { + reg = <0>; + label = "lan3"; + phy-mode = "rgmii-id"; + tx-internal-delay-ps = <1500>; + rx-internal-delay-ps = <1500>; + phy-handle = <&phy0>; + }; + port@1 { + reg = <1>; + label = "lan2"; + phy-mode = "rgmii-id"; + tx-internal-delay-ps = <1500>; + rx-internal-delay-ps = <1500>; + phy-handle = <&phy1>; + }; + port@2 { + reg = <2>; + label = "lan1"; + phy-mode = "internal"; + phy-handle = <&phy11>; + }; + port@4 { + reg = <4>; + label = "wan"; + phy-mode = "internal"; + phy-handle = <&phy13>; + }; + port@5 { + reg = <5>; + label = "lan4"; + phy-mode = "rgmii-id"; + tx-internal-delay-ps = <1500>; + rx-internal-delay-ps = <1500>; + phy-handle = <&phy5>; + }; +}; + +&pci0 { + status = "okay"; + + pinctrl-0 = <&pci_gnt1_pins>, <&pci_req1_pins>; + pinctrl-names = "default"; + + gpio-reset = <&gpio 21 GPIO_ACTIVE_HIGH>; +}; + +&pcie0 { + status = "okay"; + + gpio-reset = <&gpio 25 GPIO_ACTIVE_HIGH>; +}; + +&usb_phy0 { + status = "okay"; +}; + +&usb_phy1 { + status = "okay"; +}; + +&usb0 { + status = "okay"; + vbus-supply = <&usb_vbus>; +}; + +&usb1 { + status = "okay"; + vbus-supply = <&usb_vbus>; +}; + +&vmmc { + status = "okay"; + gpios = <&gpio 30 GPIO_ACTIVE_HIGH //fxs relay + &gpio 31 GPIO_ACTIVE_HIGH //still unknown + &gpio 3 GPIO_ACTIVE_HIGH>; //reset_slic? +}; diff --git a/target/linux/lantiq/image/vr9.mk b/target/linux/lantiq/image/vr9.mk index 53b05795aa..a9df6598d7 100644 --- a/target/linux/lantiq/image/vr9.mk +++ b/target/linux/lantiq/image/vr9.mk @@ -107,6 +107,21 @@ define Device/arcadyan_vgv7519-nor endef TARGET_DEVICES += arcadyan_vgv7519-nor +define Device/arcadyan_vrv9510kwac23 + $(Device/dsa-migration) + $(Device/NAND) + DEVICE_VENDOR := Arcadyan + DEVICE_MODEL := VRV9510KWAC23 + DEVICE_ALT0_VENDOR := Livebox + DEVICE_ALT0_MODEL := Next + BOARD_NAME := VRV9510KWAC23 + DEVICE_PACKAGES := kmod-b43 wpad-basic-mbedtls broadcom-43222-sprom \ + broadcom-4360-sprom kmod-usb-dwc2 kmod-ltq-tapi kmod-ltq-vmmc + KERNEL_SIZE := 4096k + SUPPORTED_DEVICES += arcadyan_vrv9510kwac23 +endef +TARGET_DEVICES += arcadyan_vrv9510kwac23 + define Device/avm_fritz3370 $(Device/dsa-migration) $(Device/AVM) diff --git a/target/linux/lantiq/xrx200/base-files/etc/board.d/01_leds b/target/linux/lantiq/xrx200/base-files/etc/board.d/01_leds index 36830b216a..dfc647a43e 100644 --- a/target/linux/lantiq/xrx200/base-files/etc/board.d/01_leds +++ b/target/linux/lantiq/xrx200/base-files/etc/board.d/01_leds @@ -31,6 +31,10 @@ arcadyan,vgv7510kw22-nor|\ arcadyan,vgv7510kw22-brn) ucidef_set_led_netdev "internet" "internet" "$led_internet" "wan" ;; +arcadyan,vrv9510kwac23) + ucidef_set_led_netdev "lan" "lan" "green:lan" "eth0" + ucidef_set_led_wlan "wifi" "wifi" "green:wlan" "phy1radio" + ;; zyxel,p-2812hnu-f1|\ zyxel,p-2812hnu-f3) ucidef_set_led_wlan "wifi" "wifi" "green:wlan" "phy0radio" diff --git a/target/linux/lantiq/xrx200/base-files/etc/board.d/02_network b/target/linux/lantiq/xrx200/base-files/etc/board.d/02_network index 5baf24d737..2208752c14 100644 --- a/target/linux/lantiq/xrx200/base-files/etc/board.d/02_network +++ b/target/linux/lantiq/xrx200/base-files/etc/board.d/02_network @@ -26,6 +26,7 @@ lantiq_setup_interfaces() arcadyan,vgv7510kw22-nor|\ arcadyan,vgv7519-brn|\ arcadyan,vgv7519-nor|\ + arcadyan,vrv9510kwac23|\ bt,homehub-v5a|\ lantiq,easy80920-nand|\ lantiq,easy80920-nor|\ @@ -114,7 +115,8 @@ lantiq_setup_macs() wan_mac=$(macaddr_add "$(mtd_get_mac_binary board_config 0x16)" 2) ;; arcadyan,vgv7519-brn|\ - arcadyan,vgv7519-nor) + arcadyan,vgv7519-nor|\ + arcadyan,vrv9510kwac23) wan_mac=$(mtd_get_mac_binary board_config 0x16) ;; avm,fritz3370-rev2-hynix|\ diff --git a/target/linux/lantiq/xrx200/base-files/lib/upgrade/platform.sh b/target/linux/lantiq/xrx200/base-files/lib/upgrade/platform.sh index b45894561c..f10030974b 100755 --- a/target/linux/lantiq/xrx200/base-files/lib/upgrade/platform.sh +++ b/target/linux/lantiq/xrx200/base-files/lib/upgrade/platform.sh @@ -9,6 +9,7 @@ platform_do_upgrade() { local board=$(board_name) case "$board" in + arcadyan,vrv9510kwac23|\ avm,fritz3370-rev2-hynix|\ avm,fritz3370-rev2-micron|\ avm,fritz3390|\ From 404c76f78af21566d338bc5f21145657c560628c Mon Sep 17 00:00:00 2001 From: Michael Seibt Date: Tue, 6 Feb 2024 00:40:21 +0100 Subject: [PATCH 4/6] build: fix shebang line Remove space between sharp-exclamation and interpreter. Signed-off-by: Michael Seibt --- scripts/patch-kernel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/patch-kernel.sh b/scripts/patch-kernel.sh index c2b7e72049..52750dde6e 100755 --- a/scripts/patch-kernel.sh +++ b/scripts/patch-kernel.sh @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # A little script I whipped up to make it easy to # patch source trees and have sane error handling # -Erik From d6e008ace9a879cef11b2d28ac39d1ae2e7776e1 Mon Sep 17 00:00:00 2001 From: Tianling Shen Date: Sun, 25 Feb 2024 20:21:40 +0800 Subject: [PATCH 5/6] uboot-mediatek: correct board name for BananaPi BPi-R3 Mini It should be "BananaPi BPi-R3 Mini" instead of just "BananaPi BPi-R3". Fixes: bc25519f98cd ("uboot-mediatek: add builds for BananaPi BPi-R3 mini") Signed-off-by: Tianling Shen --- package/boot/uboot-mediatek/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/boot/uboot-mediatek/Makefile b/package/boot/uboot-mediatek/Makefile index 61aaf4de25..c96f7da882 100644 --- a/package/boot/uboot-mediatek/Makefile +++ b/package/boot/uboot-mediatek/Makefile @@ -417,7 +417,7 @@ define U-Boot/mt7986_bananapi_bpi-r3-nor endef define U-Boot/mt7986_bananapi_bpi-r3-mini-emmc - NAME:=BananaPi BPi-R3 + NAME:=BananaPi BPi-R3 Mini BUILD_SUBTARGET:=filogic BUILD_DEVICES:=bananapi_bpi-r3-mini UBOOT_CONFIG:=mt7986a_bpi-r3-mini-emmc @@ -429,7 +429,7 @@ define U-Boot/mt7986_bananapi_bpi-r3-mini-emmc endef define U-Boot/mt7986_bananapi_bpi-r3-mini-snand - NAME:=BananaPi BPi-R3 + NAME:=BananaPi BPi-R3 Mini BUILD_SUBTARGET:=filogic BUILD_DEVICES:=bananapi_bpi-r3-mini UBOOT_CONFIG:=mt7986a_bpi-r3-mini-snand From c6319de48b193651a6103f8b079e80267bbc98a2 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Wed, 28 Feb 2024 09:52:08 +0100 Subject: [PATCH 6/6] mediatek: re-enable mt7622-rfb1-ubi with changed partition layout The boot loader does not have a fixed size limit for the kernel, so we're free to change the layout. This may break sysupgrade, but a fresh flash from initramfs works. Fixes: 6e2962d4c548 ("mediatek: mt7622: skip build for MT7622 rfb1 (UBI)") Signed-off-by: Felix Fietkau --- target/linux/mediatek/dts/mt7622-rfb1-ubi.dts | 4 ++-- target/linux/mediatek/image/mt7622.mk | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/target/linux/mediatek/dts/mt7622-rfb1-ubi.dts b/target/linux/mediatek/dts/mt7622-rfb1-ubi.dts index 0f6d9bbc50..721695227a 100644 --- a/target/linux/mediatek/dts/mt7622-rfb1-ubi.dts +++ b/target/linux/mediatek/dts/mt7622-rfb1-ubi.dts @@ -44,12 +44,12 @@ partition@200000 { label = "kernel"; - reg = <0x2c0000 0x400000>; + reg = <0x2c0000 0x600000>; }; partition@6c0000 { label = "ubi"; - reg = <0x6c0000 0x6f00000>; + reg = <0x8c0000 0x6f00000>; }; /delete-node/ partition@2200000; diff --git a/target/linux/mediatek/image/mt7622.mk b/target/linux/mediatek/image/mt7622.mk index 2b39d1849c..f06175041e 100644 --- a/target/linux/mediatek/image/mt7622.mk +++ b/target/linux/mediatek/image/mt7622.mk @@ -295,14 +295,14 @@ define Device/mediatek_mt7622-rfb1-ubi UBINIZE_OPTS := -E 5 BLOCKSIZE := 128k PAGESIZE := 2048 - KERNEL_SIZE := 4194304 + KERNEL_SIZE := 6291456 IMAGE_SIZE := 32768k IMAGES += factory.bin IMAGE/factory.bin := append-kernel | pad-to $$(KERNEL_SIZE) | append-ubi | \ check-size $$$$(IMAGE_SIZE) IMAGE/sysupgrade.bin := sysupgrade-tar | append-metadata endef -# TARGET_DEVICES += mediatek_mt7622-rfb1-ubi +TARGET_DEVICES += mediatek_mt7622-rfb1-ubi define Device/netgear_wax206 $(Device/dsa-migration)