mirror of
https://github.com/FUjr/gl-infra-builder.git
synced 2025-12-17 17:44:06 +00:00
mt3000: add radio property and pretty patch
Signed-off-by: Jianhui Zhao <jianhui.zhao@gl-inet.com>
This commit is contained in:
parent
deae832d81
commit
bbe06cd975
@ -1,22 +1,22 @@
|
|||||||
From 88aa415bca03a5f572c0c78225367892a4e216eb Mon Sep 17 00:00:00 2001
|
From 907b856350b1a04125e1ee47b7a1218f7e5a9c5a Mon Sep 17 00:00:00 2001
|
||||||
From: Jianhui Zhao <jianhui.zhao@gl-inet.com>
|
From: Jianhui Zhao <jianhui.zhao@gl-inet.com>
|
||||||
Date: Thu, 16 Jun 2022 15:06:35 +0800
|
Date: Thu, 16 Jun 2022 15:06:35 +0800
|
||||||
Subject: [PATCH] target/mediatek: add board for GL.iNet GL-MT3000
|
Subject: [PATCH] target/mediatek: add board for GL.iNet GL-MT3000
|
||||||
|
|
||||||
Signed-off-by: Jianhui Zhao <jianhui.zhao@gl-inet.com>
|
Signed-off-by: Jianhui Zhao <jianhui.zhao@gl-inet.com>
|
||||||
---
|
---
|
||||||
.../boot/dts/mediatek/mt7981-gl-mt3000.dts | 266 ++++++++++++++++++
|
.../boot/dts/mediatek/mt7981-gl-mt3000.dts | 274 ++++++++++++++++++
|
||||||
target/linux/mediatek/image/mt7981.mk | 18 ++
|
target/linux/mediatek/image/mt7981.mk | 18 ++
|
||||||
.../mt7981/base-files/etc/board.d/02_network | 3 +
|
.../mt7981/base-files/etc/board.d/02_network | 3 +
|
||||||
3 files changed, 287 insertions(+)
|
3 files changed, 295 insertions(+)
|
||||||
create mode 100755 target/linux/mediatek/files-5.4/arch/arm64/boot/dts/mediatek/mt7981-gl-mt3000.dts
|
create mode 100755 target/linux/mediatek/files-5.4/arch/arm64/boot/dts/mediatek/mt7981-gl-mt3000.dts
|
||||||
|
|
||||||
diff --git a/target/linux/mediatek/files-5.4/arch/arm64/boot/dts/mediatek/mt7981-gl-mt3000.dts b/target/linux/mediatek/files-5.4/arch/arm64/boot/dts/mediatek/mt7981-gl-mt3000.dts
|
diff --git a/target/linux/mediatek/files-5.4/arch/arm64/boot/dts/mediatek/mt7981-gl-mt3000.dts b/target/linux/mediatek/files-5.4/arch/arm64/boot/dts/mediatek/mt7981-gl-mt3000.dts
|
||||||
new file mode 100755
|
new file mode 100755
|
||||||
index 0000000000..070acd6f44
|
index 0000000000..f382be2a2c
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ b/target/linux/mediatek/files-5.4/arch/arm64/boot/dts/mediatek/mt7981-gl-mt3000.dts
|
+++ b/target/linux/mediatek/files-5.4/arch/arm64/boot/dts/mediatek/mt7981-gl-mt3000.dts
|
||||||
@@ -0,0 +1,266 @@
|
@@ -0,0 +1,274 @@
|
||||||
+/dts-v1/;
|
+/dts-v1/;
|
||||||
+
|
+
|
||||||
+#include "mt7981.dtsi"
|
+#include "mt7981.dtsi"
|
||||||
@ -102,8 +102,13 @@ index 0000000000..070acd6f44
|
|||||||
+ };
|
+ };
|
||||||
+
|
+
|
||||||
+ partition@580000 {
|
+ partition@580000 {
|
||||||
|
+ label = "log";
|
||||||
|
+ reg = <0x580000 0x40000>;
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ partition@5c0000 {
|
||||||
+ label = "ubi";
|
+ label = "ubi";
|
||||||
+ reg = <0x580000 0>;
|
+ reg = <0x5c0000 0>;
|
||||||
+ };
|
+ };
|
||||||
+ };
|
+ };
|
||||||
+ };
|
+ };
|
||||||
@ -117,6 +122,9 @@ index 0000000000..070acd6f44
|
|||||||
+ fan = "pwmchip0";
|
+ fan = "pwmchip0";
|
||||||
+ flash_size = <256>;
|
+ flash_size = <256>;
|
||||||
+ temperature = "/sys/devices/virtual/thermal/thermal_zone0/temp";
|
+ temperature = "/sys/devices/virtual/thermal/thermal_zone0/temp";
|
||||||
|
+ switch-button = "gpio-455";
|
||||||
|
+ reset-button = "gpio-456";
|
||||||
|
+ radio = "mt798111 mt798112";
|
||||||
+ dfs;
|
+ dfs;
|
||||||
+ factory_data {
|
+ factory_data {
|
||||||
+ device_mac = "Factory", "0x0a";
|
+ device_mac = "Factory", "0x0a";
|
||||||
|
|||||||
@ -1,42 +1,14 @@
|
|||||||
From a2a4380d23905bb5448bb32596ad6025203a4d45 Mon Sep 17 00:00:00 2001
|
From 5bebb7d75f88c08b23001e571688259e85d4c787 Mon Sep 17 00:00:00 2001
|
||||||
From: "GL.iNet-Hongjian.Zhang" <hongjian.zhang@gl-inet.com>
|
From: Jianhui Zhao <jianhui.zhao@gl-inet.com>
|
||||||
Date: Wed, 10 Aug 2022 14:27:33 +0800
|
Date: Wed, 17 Aug 2022 17:35:25 +0800
|
||||||
Subject: [PATCH] target/mediatek: fix crash log for gl-mt3000
|
Subject: [PATCH] target/mediatek: fix crash log for gl-mt3000
|
||||||
|
|
||||||
|
Signed-off-by: Jianhui Zhao <jianhui.zhao@gl-inet.com>
|
||||||
---
|
---
|
||||||
.../boot/dts/mediatek/mt7981-gl-mt3000.dts | 9 ++-
|
|
||||||
.../patches-5.4/416-mtd-fix-mtdoops.patch | 58 +++++++++++++++++++
|
.../patches-5.4/416-mtd-fix-mtdoops.patch | 58 +++++++++++++++++++
|
||||||
2 files changed, 66 insertions(+), 1 deletion(-)
|
1 file changed, 58 insertions(+)
|
||||||
create mode 100755 target/linux/mediatek/patches-5.4/416-mtd-fix-mtdoops.patch
|
create mode 100755 target/linux/mediatek/patches-5.4/416-mtd-fix-mtdoops.patch
|
||||||
|
|
||||||
diff --git a/target/linux/mediatek/files-5.4/arch/arm64/boot/dts/mediatek/mt7981-gl-mt3000.dts b/target/linux/mediatek/files-5.4/arch/arm64/boot/dts/mediatek/mt7981-gl-mt3000.dts
|
|
||||||
index 4a16357194..17289fef2b 100755
|
|
||||||
--- a/target/linux/mediatek/files-5.4/arch/arm64/boot/dts/mediatek/mt7981-gl-mt3000.dts
|
|
||||||
+++ b/target/linux/mediatek/files-5.4/arch/arm64/boot/dts/mediatek/mt7981-gl-mt3000.dts
|
|
||||||
@@ -83,8 +83,13 @@
|
|
||||||
};
|
|
||||||
|
|
||||||
partition@580000 {
|
|
||||||
+ label = "log";
|
|
||||||
+ reg = <0x580000 0x40000>;
|
|
||||||
+ };
|
|
||||||
+
|
|
||||||
+ partition@5c0000 {
|
|
||||||
label = "ubi";
|
|
||||||
- reg = <0x580000 0>;
|
|
||||||
+ reg = <0x5c0000 0>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
@@ -97,6 +102,8 @@
|
|
||||||
usb-port = "1-1";
|
|
||||||
fan = "pwmchip0";
|
|
||||||
flash_size = <256>;
|
|
||||||
+ switch-button = "gpio-0";
|
|
||||||
+ reset-button = "gpio-1";
|
|
||||||
temperature = "/sys/devices/virtual/thermal/thermal_zone0/temp";
|
|
||||||
dfs;
|
|
||||||
factory_data {
|
|
||||||
diff --git a/target/linux/mediatek/patches-5.4/416-mtd-fix-mtdoops.patch b/target/linux/mediatek/patches-5.4/416-mtd-fix-mtdoops.patch
|
diff --git a/target/linux/mediatek/patches-5.4/416-mtd-fix-mtdoops.patch b/target/linux/mediatek/patches-5.4/416-mtd-fix-mtdoops.patch
|
||||||
new file mode 100755
|
new file mode 100755
|
||||||
index 0000000000..4a41ec7181
|
index 0000000000..4a41ec7181
|
||||||
@ -102,5 +74,5 @@ index 0000000000..4a41ec7181
|
|||||||
+
|
+
|
||||||
+ static void find_next_position(struct mtdoops_context *cxt)
|
+ static void find_next_position(struct mtdoops_context *cxt)
|
||||||
--
|
--
|
||||||
2.17.1
|
2.25.1
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user