mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-29 09:32:34 +00:00
51 lines
1.5 KiB
Diff
51 lines
1.5 KiB
Diff
From b3177e08af3db3ddee379869450e35f810362d5c Mon Sep 17 00:00:00 2001
|
|
From: John Crispin <john@phrozen.org>
|
|
Date: Sat, 15 Jul 2023 15:16:57 +0200
|
|
Subject: [PATCH 01/15] ramips: add certificates partitions
|
|
|
|
Signed-off-by: John Crispin <john@phrozen.org>
|
|
---
|
|
target/linux/ramips/dts/mt7621_yuncore_ax820.dts | 7 ++++++-
|
|
target/linux/ramips/dts/mt7621_yuncore_fap640.dts | 7 ++++++-
|
|
2 files changed, 12 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/target/linux/ramips/dts/mt7621_yuncore_ax820.dts b/target/linux/ramips/dts/mt7621_yuncore_ax820.dts
|
|
index 1aba94a912..51fd358095 100644
|
|
--- a/target/linux/ramips/dts/mt7621_yuncore_ax820.dts
|
|
+++ b/target/linux/ramips/dts/mt7621_yuncore_ax820.dts
|
|
@@ -120,7 +120,12 @@
|
|
partition@90000 {
|
|
compatible = "denx,uimage";
|
|
label = "firmware";
|
|
- reg = <0x90000 0xf70000>;
|
|
+ reg = <0x90000 0xf60000>;
|
|
+ };
|
|
+
|
|
+ partition@ff0000 {
|
|
+ label = "certificates";
|
|
+ reg = <0xff0000 0x10000>;
|
|
};
|
|
};
|
|
};
|
|
diff --git a/target/linux/ramips/dts/mt7621_yuncore_fap640.dts b/target/linux/ramips/dts/mt7621_yuncore_fap640.dts
|
|
index d525dde385..754b7c23ea 100644
|
|
--- a/target/linux/ramips/dts/mt7621_yuncore_fap640.dts
|
|
+++ b/target/linux/ramips/dts/mt7621_yuncore_fap640.dts
|
|
@@ -128,7 +128,12 @@
|
|
partition@90000 {
|
|
compatible = "denx,uimage";
|
|
label = "firmware";
|
|
- reg = <0x90000 0xf70000>;
|
|
+ reg = <0x90000 0xf60000>;
|
|
+ };
|
|
+
|
|
+ partition@ff0000 {
|
|
+ label = "certificates";
|
|
+ reg = <0xff0000 0x10000>;
|
|
};
|
|
};
|
|
};
|
|
--
|
|
2.34.1
|
|
|