aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2014-10-29 20:50:40 +0000
committerJohn Crispin <blogic@openwrt.org>2014-10-29 20:50:40 +0000
commit576cb5c5ebe394927aa490c4b661bf282de5efe7 (patch)
treeea6bf36ccb0a28e8a58e7190a07eb34d8739ab38 /target/linux
parenta5ef2aabf40763af102cee2c8a7b56ec42613ed9 (diff)
downloadmaster-187ad058-576cb5c5ebe394927aa490c4b661bf282de5efe7.tar.gz
master-187ad058-576cb5c5ebe394927aa490c4b661bf282de5efe7.tar.bz2
master-187ad058-576cb5c5ebe394927aa490c4b661bf282de5efe7.zip
lantiq: vgv7519: fix board_config on dts, read mac address and set
Signed-off-by: Eddi De Pieri <eddi@depieri.net> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43109 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r--target/linux/lantiq/base-files/etc/uci-defaults/02_network6
-rw-r--r--target/linux/lantiq/dts/VGV7519BRN.dts11
-rw-r--r--target/linux/lantiq/dts/VGV7519NOR.dts13
3 files changed, 16 insertions, 14 deletions
diff --git a/target/linux/lantiq/base-files/etc/uci-defaults/02_network b/target/linux/lantiq/base-files/etc/uci-defaults/02_network
index 8d9ae4f57f..777e38dcbd 100644
--- a/target/linux/lantiq/base-files/etc/uci-defaults/02_network
+++ b/target/linux/lantiq/base-files/etc/uci-defaults/02_network
@@ -168,6 +168,12 @@ BTHOMEHUBV2B)
lan_mac=$(mtd_get_mac_ascii uboot_env ethaddr)
wan_mac=$(macaddr_add "$lan_mac" 1)
;;
+
+VGV7519)
+ lan_mac=$(mtd_get_mac_binary board_config 22)
+ wan_mac=$(macaddr_add "$lan_mac" 1)
+ ;;
+
esac
[ -z "$(ls /lib/modules/`uname -r`/ltq_atm*)" ] || set_atm_wan "$vpi" "$vci" "$encaps" "$payload"
diff --git a/target/linux/lantiq/dts/VGV7519BRN.dts b/target/linux/lantiq/dts/VGV7519BRN.dts
index b885952b05..c90b680490 100644
--- a/target/linux/lantiq/dts/VGV7519BRN.dts
+++ b/target/linux/lantiq/dts/VGV7519BRN.dts
@@ -13,6 +13,11 @@
#address-cells = <1>;
#size-cells = <1>;
+ partition@40000 {
+ label = "board_config";
+ reg = <0x40000 0x10000>;
+ read-only;
+ };
partition@80000 {
label = "firmware";
reg = <0x80000 0x780000>;
@@ -22,12 +27,6 @@
label = "rootfs_data";
reg = <0x880000 0x780000>;
};
-
- partition@1f80000 {
- label = "board_config";
- reg = <0x40000 0x10000>;
- read-only;
- };
};
};
};
diff --git a/target/linux/lantiq/dts/VGV7519NOR.dts b/target/linux/lantiq/dts/VGV7519NOR.dts
index 744efe6e34..355a90c94c 100644
--- a/target/linux/lantiq/dts/VGV7519NOR.dts
+++ b/target/linux/lantiq/dts/VGV7519NOR.dts
@@ -17,12 +17,15 @@
label = "uboot";
reg = <0x00000 0x40000>;
};
-
+ partition@40000 {
+ label = "board_config";
+ reg = <0x40000 0x10000>;
+ read-only;
+ };
partition@60000 {
label = "uboot_env";
reg = <0x60000 0x10000>;
};
-
partition@80000 {
label = "firmware";
reg = <0x80000 0xf80000>;
@@ -30,12 +33,6 @@
// 0x1b0000 - 0x1000000 : rootfs (squashfs)
// 0x390000 - 0x1000000 : rootfs_data
};
-
- partition@1f80000 {
- label = "board_config";
- reg = <0x40000 0x10000>;
- read-only;
- };
};
};
};