mirror of https://github.com/hak5/openwrt.git
ralink: set the mac addr via the dts file
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 38902lede-17.01
parent
6cbad59ead
commit
5b437e204f
|
@ -163,64 +163,30 @@ ramips_setup_macs()
|
|||
local wan_mac=""
|
||||
|
||||
case $board in
|
||||
all0256n | \
|
||||
all5002 | \
|
||||
dir-615-h1)
|
||||
lan_mac=$(mtd_get_mac_binary factory 40)
|
||||
;;
|
||||
3g-6200n | \
|
||||
3g300m | \
|
||||
w150m | \
|
||||
air3gii | \
|
||||
argus-atp52b | \
|
||||
bc2 | \
|
||||
br6425 | \
|
||||
broadway | \
|
||||
dir-620-d1 | \
|
||||
f5d8235-v1 | \
|
||||
ip2202 | \
|
||||
mpr-a1 | \
|
||||
mpr-a2 | \
|
||||
dir-300-b7 | \
|
||||
dir-320-b1 | \
|
||||
mzk-w300nh2 | \
|
||||
nw718 | \
|
||||
psr-680w | \
|
||||
rt-n15 | \
|
||||
sl-r7205 | \
|
||||
wmr300 | \
|
||||
wl-351)
|
||||
lan_mac=$(mtd_get_mac_binary factory 4)
|
||||
*)
|
||||
wan_mac=$(macaddr_add "$lan_mac" 1)
|
||||
;;
|
||||
|
||||
asl26555)
|
||||
lan_mac=$(mtd_get_mac_binary devdata 16388)
|
||||
;;
|
||||
|
||||
w306r-v20)
|
||||
lan_mac=$(mtd_get_mac_binary factory 4)
|
||||
wan_mac=$(macaddr_add "$lan_mac" 5)
|
||||
;;
|
||||
|
||||
rt-n13u | \
|
||||
hg255d | \
|
||||
fonera20n | \
|
||||
dir-810l)
|
||||
lan_mac=$(mtd_get_mac_binary factory 40)
|
||||
wan_mac=$(macaddr_add "$lan_mac" 1)
|
||||
tew-691gr)
|
||||
wan_mac=$(macaddr_add "$lan_mac" 3)
|
||||
;;
|
||||
|
||||
dir-300-b1 |\
|
||||
dir-300-b2 |\
|
||||
dir-600-b1 |\
|
||||
dir-610-a1)
|
||||
lan_mac=$(mtd_get_mac_binary devdata 16388)
|
||||
wan_mac=$(macaddr_add "$lan_mac" 1)
|
||||
tew-692gr)
|
||||
wan_mac=$(macaddr_add "$lan_mac" 4)
|
||||
;;
|
||||
|
||||
m3 |\
|
||||
m4 |\
|
||||
x5 |\
|
||||
x8)
|
||||
lan_mac=$(macaddr_add "$lan_mac" -1)
|
||||
;;
|
||||
|
||||
dir-620-a1)
|
||||
lan_mac=$(mtd_get_mac_binary factory 4)
|
||||
lan_mac=$(macaddr_setbit_la "$lan_mac")
|
||||
wan_mac=$(macaddr_add "$lan_mac" 1)
|
||||
;;
|
||||
|
@ -230,57 +196,20 @@ ramips_setup_macs()
|
|||
wan_mac=$(mtd_get_mac_ascii nvram wanmac)
|
||||
;;
|
||||
|
||||
esr-9753 | \
|
||||
ur-326n4g | \
|
||||
ur-336un)
|
||||
lan_mac=$(mtd_get_mac_binary devdata 16388)
|
||||
wan_mac=$(macaddr_add "$lan_mac" 1)
|
||||
;;
|
||||
|
||||
m3 |\
|
||||
m4 |\
|
||||
x5 |\
|
||||
x8)
|
||||
lan_mac=$(mtd_get_mac_binary factory 4)
|
||||
lan_mac=$(macaddr_add "$lan_mac" -1)
|
||||
;;
|
||||
|
||||
nbg-419n | \
|
||||
wcr-150gn)
|
||||
lan_mac=$(mtd_get_mac_binary factory 4)
|
||||
wan_mac=$(mtd_get_mac_binary factory 40)
|
||||
;;
|
||||
|
||||
omni-emb-hpm)
|
||||
lan_mac=$(mtd_get_mac_binary factory 40)
|
||||
;;
|
||||
|
||||
f5d8235-v2)
|
||||
lan_mac=$(mtd_get_mac_binary "u-boot" 262148)
|
||||
wan_mac=$(macaddr_add "$lan_mac" 1)
|
||||
;;
|
||||
|
||||
rt-n56u)
|
||||
lan_mac=$(mtd_get_mac_binary factory 4)
|
||||
wan_mac=$(mtd_get_mac_binary factory 32772)
|
||||
;;
|
||||
|
||||
tew-691gr)
|
||||
lan_mac=$(mtd_get_mac_binary factory 40)
|
||||
wan_mac=$(macaddr_add "$lan_mac" 3)
|
||||
;;
|
||||
|
||||
tew-692gr)
|
||||
lan_mac=$(mtd_get_mac_binary factory 40)
|
||||
wan_mac=$(macaddr_add "$lan_mac" 4)
|
||||
;;
|
||||
|
||||
all0239-3g | \
|
||||
carambola | \
|
||||
freestation5 | \
|
||||
w502u | \
|
||||
wnce2001)
|
||||
lan_mac=$(mtd_get_mac_binary factory 40)
|
||||
wan_mac=$(mtd_get_mac_binary factory 46)
|
||||
;;
|
||||
|
||||
|
@ -289,11 +218,6 @@ ramips_setup_macs()
|
|||
wan_mac=$(macaddr_add "$lan_mac" 1)
|
||||
;;
|
||||
|
||||
d105 | \
|
||||
wli-tx4-ag300n)
|
||||
lan_mac=$(mtd_get_mac_binary factory 4)
|
||||
;;
|
||||
|
||||
esac
|
||||
|
||||
[ -n "$lan_mac" ] && ucidef_set_interface_macaddr lan $lan_mac
|
||||
|
|
|
@ -54,6 +54,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -97,6 +97,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -56,6 +56,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -48,6 +48,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x28>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
status = "okay";
|
||||
ralink,portmap = <0x3e>;
|
||||
|
|
|
@ -56,6 +56,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x28>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x3f>;
|
||||
};
|
||||
|
|
|
@ -56,6 +56,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x28>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x3f>;
|
||||
};
|
||||
|
|
|
@ -56,6 +56,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x28>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x3f>;
|
||||
};
|
||||
|
|
|
@ -75,6 +75,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x3e>;
|
||||
};
|
||||
|
|
|
@ -68,6 +68,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4004>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x1e>;
|
||||
};
|
||||
|
|
|
@ -26,8 +26,8 @@
|
|||
reg = <0x0 0x30000>;
|
||||
read-only;
|
||||
};
|
||||
partition@30000 {
|
||||
label = "devdata";
|
||||
factory: partition@30000 {
|
||||
label = "factory";
|
||||
reg = <0x30000 0x10000>;
|
||||
read-only;
|
||||
};
|
||||
|
@ -63,6 +63,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4004>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x1e>;
|
||||
};
|
||||
|
|
|
@ -68,6 +68,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -25,6 +25,10 @@
|
|||
#size-cells = <1>;
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -48,6 +48,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x3e>;
|
||||
};
|
||||
|
|
|
@ -52,6 +52,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x28>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x3f>;
|
||||
};
|
||||
|
|
|
@ -72,6 +72,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -48,6 +48,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4004>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -52,6 +52,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
ralink,led_polarity = <0x17>;
|
||||
|
|
|
@ -52,6 +52,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
ralink,led_polarity = <0x17>;
|
||||
|
|
|
@ -48,6 +48,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4004>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -52,6 +52,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4004>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
status = "okay";
|
||||
ralink,portmap = <0x2f>;
|
||||
|
|
|
@ -60,6 +60,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x28>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -48,6 +48,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -60,6 +60,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -77,6 +77,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x28>;
|
||||
};
|
||||
|
||||
gsw@10110000 {
|
||||
ralink,port4 = "ephy";
|
||||
|
||||
|
|
|
@ -77,6 +77,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4004>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x3e>;
|
||||
};
|
||||
|
|
|
@ -55,6 +55,7 @@
|
|||
|
||||
ethernet@400000 {
|
||||
status = "okay";
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
|
||||
port@0 {
|
||||
ralink,fixed-link = <1000 1 1 1>;
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
|
||||
partition@0 {
|
||||
uboot: partition@0 {
|
||||
label = "u-boot";
|
||||
reg = <0x0 0x50000>;
|
||||
read-only;
|
||||
|
@ -46,6 +46,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&uboot 0x40004>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x3f>;
|
||||
};
|
||||
|
|
|
@ -82,6 +82,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x28>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
|
||||
|
|
|
@ -52,6 +52,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x28>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x01>;
|
||||
};
|
||||
|
|
|
@ -104,6 +104,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x28>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -48,6 +48,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -52,6 +52,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
ralink,led_polarity = <1>;
|
||||
|
|
|
@ -52,6 +52,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
ralink,led_polarity = <1>;
|
||||
|
|
|
@ -52,6 +52,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
ralink,led_polarity = <1>;
|
||||
|
|
|
@ -52,6 +52,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -52,6 +52,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -54,6 +54,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -48,6 +48,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -52,6 +52,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -60,6 +60,7 @@
|
|||
ethernet@10100000 {
|
||||
phy-handle = <&phy0>;
|
||||
phy-mode = "rgmii";
|
||||
mtd-mac-address = <&factory 0x28>;
|
||||
|
||||
mdio-bus {
|
||||
status = "okay";
|
||||
|
|
|
@ -52,6 +52,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x3e>;
|
||||
};
|
||||
|
|
|
@ -82,6 +82,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x28>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -53,6 +53,7 @@
|
|||
|
||||
ethernet@400000 {
|
||||
status = "okay";
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
|
||||
port@0 {
|
||||
ralink,fixed-link = <1000 1 1 1>;
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
port@0 {
|
||||
ralink,fixed-link = <1000 1 1 1>;
|
||||
};
|
||||
|
|
|
@ -48,6 +48,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x3e>;
|
||||
};
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x28>;
|
||||
port@0 {
|
||||
phy-handle = <&phy0>;
|
||||
phy-mode = "rgmii";
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
|
||||
ethernet@10100000 {
|
||||
status = "okay";
|
||||
mtd-mac-address = <&factory 0x28>;
|
||||
port@0 {
|
||||
phy-handle = <&phy0>;
|
||||
phy-mode = "rgmii";
|
||||
|
|
|
@ -48,6 +48,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4004>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -25,6 +25,10 @@
|
|||
#size-cells = <1>;
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4004>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -93,6 +93,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -48,6 +48,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x3e>;
|
||||
};
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x28>;
|
||||
};
|
||||
|
||||
/dts-v1/;
|
||||
|
||||
/include/ "rt3050.dtsi"
|
||||
|
@ -52,6 +56,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x28>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x3e>;
|
||||
};
|
||||
|
|
|
@ -77,6 +77,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
};
|
||||
|
|
|
@ -48,6 +48,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x3f>;
|
||||
ralink,fct2 = <0x0002500c>;
|
||||
|
|
|
@ -52,6 +52,7 @@
|
|||
|
||||
ethernet@400000 {
|
||||
status = "okay";
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
|
||||
port@0 {
|
||||
ralink,fixed-link = <1000 1 1 1>;
|
||||
|
|
|
@ -49,6 +49,7 @@
|
|||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
ralink,port-map = "wllll";
|
||||
};
|
||||
|
||||
|
|
|
@ -73,6 +73,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x28>;
|
||||
};
|
||||
|
||||
gpio-leds {
|
||||
compatible = "gpio-leds";
|
||||
power-green {
|
||||
|
|
|
@ -52,6 +52,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
ralink,led_polarity = <1>;
|
||||
|
|
|
@ -52,6 +52,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
ethernet@10100000 {
|
||||
mtd-mac-address = <&factory 0x4>;
|
||||
};
|
||||
|
||||
esw@10110000 {
|
||||
ralink,portmap = <0x2f>;
|
||||
ralink,led_polarity = <1>;
|
||||
|
|
Loading…
Reference in New Issue