[OpenWrt-Devel] [PATCH] mpc85xx: fix WAN/LAN-MAC for TP-LINK TL-WDR4900 v1
John Crispin
blogic at openwrt.org
Sat Oct 25 03:32:09 EDT 2014
can you write a sentence about the bootloader issue that you are fixing ?
On 23/10/2014 22:10, Bastian Bittorf wrote:
> mpc85xx: fix WAN/LAN-MAC for TP-LINK TL-WDR4900 v1
>
> This works around a bootloader issue and reads the macs from
> config-partition during initial network setup. We have 9 valid
> macs stored in the partition, the 1st two are used for the radios,
> 3 and 4 are now used for WAN/LAN.
>
> https://dev.openwrt.org/ticket/14714
>
> Signed-off-by: Bastian Bittorf <bittorf at bluebottle.com>
> ---
> .../mpc85xx/base-files/etc/uci-defaults/02_network | 26 ++++----------------
> 1 files changed, 5 insertions(+), 21 deletions(-)
>
> diff --git a/target/linux/mpc85xx/base-files/etc/uci-defaults/02_network b/target/linux/mpc85xx/base-files/etc/uci-defaults/02_network
> index 10a2cc8..e4e3566 100755
> --- a/target/linux/mpc85xx/base-files/etc/uci-defaults/02_network
> +++ b/target/linux/mpc85xx/base-files/etc/uci-defaults/02_network
> @@ -1,22 +1,5 @@
> #!/bin/sh
> -#
> -# Copyright (C) 2013 OpenWrt.org
> -#
> -
> -tplink_set_mac()
> -{
> - local cfg=$1
> - local offset=$2
> - local mac
> -
> - . /lib/functions.sh
> -
> - mac=$(mtd_get_mac_binary u-boot 326656)
> - mac=$(macaddr_add $mac $offset)
> -
> - ucidef_set_interface_macaddr $cfg $mac
> -}
> -
> +# Copyright (C) 2014 OpenWrt.org
>
> [ -e /etc/config/network ] && exit 0
>
> @@ -24,6 +7,8 @@ touch /etc/config/network
>
> . /lib/functions/uci-defaults.sh
> . /lib/mpc85xx.sh
> +. /lib/functions.sh
> +. /lib/functions/system.sh
>
> ucidef_set_interface_loopback
>
> @@ -35,10 +20,9 @@ tl-wdr4900-v1)
> ucidef_add_switch "switch0" "1" "1"
> ucidef_add_switch_vlan "switch0" "1" "0t 2 3 4 5"
> ucidef_add_switch_vlan "switch0" "2" "0t 1"
> - tplink_set_mac lan -2
> - tplink_set_mac wan 1
> + ucidef_set_interface_macaddr lan "$(mtd_get_mac_binary config 338)"
> + ucidef_set_interface_macaddr wan "$(mtd_get_mac_binary config 344)"
> ;;
> -
> *)
> ucidef_set_interfaces_lan_wan "eth0" "eth1"
> ;;
>
_______________________________________________
openwrt-devel mailing list
openwrt-devel at lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel
More information about the openwrt-devel
mailing list