Save own configuration for zbtlink we2426-c
This commit is contained in:
commit
c21d01a806
7047
.config.mt7628an_zbtlink_zbt-we2426-c
Normal file
7047
.config.mt7628an_zbtlink_zbt-we2426-c
Normal file
File diff suppressed because it is too large
Load Diff
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
* -text
|
||||||
66
.gitignore
vendored
Normal file
66
.gitignore
vendored
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
*.o
|
||||||
|
.DS_Store
|
||||||
|
.*.swp
|
||||||
|
/env
|
||||||
|
/dl
|
||||||
|
/.config
|
||||||
|
/.config.old
|
||||||
|
/.toolchain_build_ver
|
||||||
|
/bin
|
||||||
|
/build_dir
|
||||||
|
/staging_dir
|
||||||
|
/tmp
|
||||||
|
/logs
|
||||||
|
/feeds
|
||||||
|
/feeds.conf
|
||||||
|
/files
|
||||||
|
/target/linux/feeds
|
||||||
|
/overlay
|
||||||
|
/package/feeds
|
||||||
|
/package/openwrt-packages
|
||||||
|
/*.patch
|
||||||
|
/llvm-bpf*
|
||||||
|
/tools
|
||||||
|
/toolchain
|
||||||
|
/.git.upstream
|
||||||
|
key-build*
|
||||||
|
private-key.pem
|
||||||
|
public-key.pem
|
||||||
|
version
|
||||||
|
version.date
|
||||||
|
*.orig
|
||||||
|
*.rej
|
||||||
|
*~
|
||||||
|
.#*
|
||||||
|
*#
|
||||||
|
.emacs.desktop*
|
||||||
|
TAGS*~
|
||||||
|
git-src
|
||||||
|
.project
|
||||||
|
.cproject
|
||||||
|
.ccache
|
||||||
|
.vscode*
|
||||||
|
.github/
|
||||||
|
config/
|
||||||
|
.devcontainer/
|
||||||
|
include/
|
||||||
|
scripts/
|
||||||
|
package/
|
||||||
|
LICENSES/
|
||||||
|
*.upstream
|
||||||
|
Makefile
|
||||||
|
feeds.conf.default
|
||||||
|
COPYING
|
||||||
|
Config.in
|
||||||
|
BSDmakefile
|
||||||
|
README.md
|
||||||
|
rules.mk
|
||||||
|
/target/imagebuilder/
|
||||||
|
/target/sdk/
|
||||||
|
/target/toolchain/
|
||||||
|
/target/linux/*
|
||||||
|
!/target/linux/ramips/
|
||||||
|
/target/linux/ramips/*
|
||||||
|
!/target/linux/ramips/dts/
|
||||||
|
/target/linux/ramips/dts/*
|
||||||
|
!/target/linux/ramips/dts/mt7628an_zbtlink_zbt-we2426-c.dts
|
||||||
117
target/linux/ramips/dts/mt7628an_zbtlink_zbt-we2426-c.dts
Normal file
117
target/linux/ramips/dts/mt7628an_zbtlink_zbt-we2426-c.dts
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
#include "mt7628an.dtsi"
|
||||||
|
|
||||||
|
#include <dt-bindings/gpio/gpio.h>
|
||||||
|
#include <dt-bindings/input/input.h>
|
||||||
|
|
||||||
|
/ {
|
||||||
|
compatible = "wrtnode,wrtnode2", "mediatek,mt7628an-soc";
|
||||||
|
|
||||||
|
chosen {
|
||||||
|
bootargs = "console=ttyS0,115200";
|
||||||
|
};
|
||||||
|
|
||||||
|
keys {
|
||||||
|
compatible = "gpio-keys";
|
||||||
|
|
||||||
|
reset {
|
||||||
|
label = "reset";
|
||||||
|
gpios = <&gpio 5 GPIO_ACTIVE_LOW>;
|
||||||
|
linux,code = <KEY_RESTART>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&spi0 {
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
flash@0 {
|
||||||
|
compatible = "jedec,spi-nor";
|
||||||
|
reg = <0>;
|
||||||
|
spi-max-frequency = <10000000>;
|
||||||
|
broken-flash-reset;
|
||||||
|
|
||||||
|
partitions {
|
||||||
|
compatible = "fixed-partitions";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
|
||||||
|
partition@0 {
|
||||||
|
label = "u-boot";
|
||||||
|
reg = <0x0 0x30000>;
|
||||||
|
read-only;
|
||||||
|
};
|
||||||
|
|
||||||
|
partition@30000 {
|
||||||
|
label = "u-boot-env";
|
||||||
|
reg = <0x30000 0x10000>;
|
||||||
|
read-only;
|
||||||
|
};
|
||||||
|
|
||||||
|
factory: partition@40000 {
|
||||||
|
label = "factory";
|
||||||
|
reg = <0x40000 0x10000>;
|
||||||
|
read-only;
|
||||||
|
|
||||||
|
nvmem-layout {
|
||||||
|
compatible = "fixed-layout";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
|
||||||
|
eeprom_factory_0: eeprom@0 {
|
||||||
|
reg = <0x0 0x400>;
|
||||||
|
};
|
||||||
|
|
||||||
|
macaddr_factory_4: macaddr@4 {
|
||||||
|
reg = <0x4 0x6>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
partition@50000 {
|
||||||
|
compatible = "denx,uimage";
|
||||||
|
label = "firmware";
|
||||||
|
reg = <0x50000 0x1fb0000>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&uart1 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&i2c {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
ðernet {
|
||||||
|
nvmem-cells = <&macaddr_factory_4>;
|
||||||
|
nvmem-cell-names = "mac-address";
|
||||||
|
};
|
||||||
|
|
||||||
|
&esw {
|
||||||
|
mediatek,portmap = <0x3e>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&sdhci {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&pcie {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&pcie0 {
|
||||||
|
mt76@0,0 {
|
||||||
|
reg = <0x0000 0 0 0 0>;
|
||||||
|
mediatek,mtd-eeprom = <&factory 0x8000>;
|
||||||
|
ieee80211-freq-limit = <5000000 6000000>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&wmac {
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
nvmem-cells = <&eeprom_factory_0>;
|
||||||
|
nvmem-cell-names = "eeprom";
|
||||||
|
};
|
||||||
Loading…
x
Reference in New Issue
Block a user