diff options
| author | Florian Maurer | 2025-01-15 20:31:47 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-01-20 23:16:40 +0000 |
| commit | b957ee982ae1a38aeeeee44baf4c6e8d2c239978 (patch) | |
| tree | 46c74234bed7d9d3e07938d907900dcc266ee3d5 | |
| parent | c8c1156e9dda1b72d525d442d76d819737b79d87 (diff) | |
| download | openwrt-b957ee982ae1a38aeeeee44baf4c6e8d2c239978.tar.gz | |
lantiq: xrx200: fb7430 set correct label-mac
the CWMP account mac is correctly set on the lan device but was not correctly as label-mac
Signed-off-by: Florian Maurer <f.maurer@outlook.de>
Link: https://github.com/openwrt/openwrt/pull/17618
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
(cherry picked from commit f9813f41b2e9fccb644ae149eabe575fbae12fa3)
| -rw-r--r-- | target/linux/lantiq/xrx200/base-files/etc/board.d/02_network | 2 |
1 files changed, 2 insertions, 0 deletions
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 8c2cdb12af..bf90757897 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 @@ -125,6 +125,7 @@ lantiq_setup_macs() tffsdev=$(find_mtd_chardev "nand-tffs") lan_mac=$(/usr/bin/fritz_tffs_nand -d $tffsdev -n maca -o) wan_mac=$(/usr/bin/fritz_tffs_nand -d $tffsdev -n macdsl -o) + label_mac=$lan_mac ;; bt,homehub-v5a) lan_mac=$(mtd_get_mac_binary_ubi caldata 0x110c) @@ -142,6 +143,7 @@ lantiq_setup_macs() [ -n "$lan_mac" ] && ucidef_set_interface_macaddr "lan" "$lan_mac" [ -n "$wan_mac" ] && ucidef_set_interface_macaddr "wan" "$wan_mac" + [ -n "$label_mac" ] && ucidef_set_label_macaddr "$label_mac" } board_config_update |