mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-30 01:52:51 +00:00
68 lines
2.2 KiB
Diff
68 lines
2.2 KiB
Diff
From ee837f028bd7af515d30a8a90cc2b5ee61eecf19 Mon Sep 17 00:00:00 2001
|
|
From: John Crispin <john@phrozen.org>
|
|
Date: Sat, 4 Sep 2021 06:04:54 +0200
|
|
Subject: [PATCH 35/43] certificates: add ability to persistently store
|
|
certificates
|
|
|
|
Signed-off-by: John Crispin <john@phrozen.org>
|
|
---
|
|
target/linux/ath79/dts/qca9563_tplink_cpe710-v1.dts | 7 ++++++-
|
|
.../files/arch/arm/boot/dts/qcom-ipq4019-xx8300.dtsi | 3 +--
|
|
.../linux/ramips/dts/mt7628an_tplink_8m-split-uboot.dtsi | 7 ++++++-
|
|
3 files changed, 13 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/target/linux/ath79/dts/qca9563_tplink_cpe710-v1.dts b/target/linux/ath79/dts/qca9563_tplink_cpe710-v1.dts
|
|
index 830c3d30b8..71c6381f86 100644
|
|
--- a/target/linux/ath79/dts/qca9563_tplink_cpe710-v1.dts
|
|
+++ b/target/linux/ath79/dts/qca9563_tplink_cpe710-v1.dts
|
|
@@ -86,7 +86,12 @@
|
|
partition@70000 {
|
|
compatible = "denx,uimage";
|
|
label = "firmware";
|
|
- reg = <0x070000 0xf50000>;
|
|
+ reg = <0x070000 0xf40000>;
|
|
+ };
|
|
+
|
|
+ partition@fb0000 {
|
|
+ label = "certificates";
|
|
+ reg = <0xfb0000 0x10000>;
|
|
};
|
|
|
|
partition@fc0000 {
|
|
diff --git a/target/linux/ipq40xx/files/arch/arm/boot/dts/qcom-ipq4019-xx8300.dtsi b/target/linux/ipq40xx/files/arch/arm/boot/dts/qcom-ipq4019-xx8300.dtsi
|
|
index 8f971e505c..0f1f083a5b 100644
|
|
--- a/target/linux/ipq40xx/files/arch/arm/boot/dts/qcom-ipq4019-xx8300.dtsi
|
|
+++ b/target/linux/ipq40xx/files/arch/arm/boot/dts/qcom-ipq4019-xx8300.dtsi
|
|
@@ -229,9 +229,8 @@
|
|
};
|
|
|
|
partition@b880000 {
|
|
- label = "syscfg";
|
|
+ label = "certificates";
|
|
reg = <0xb880000 0x4680000>;
|
|
- read-only;
|
|
};
|
|
};
|
|
};
|
|
diff --git a/target/linux/ramips/dts/mt7628an_tplink_8m-split-uboot.dtsi b/target/linux/ramips/dts/mt7628an_tplink_8m-split-uboot.dtsi
|
|
index b6ce7b1f56..471be72001 100644
|
|
--- a/target/linux/ramips/dts/mt7628an_tplink_8m-split-uboot.dtsi
|
|
+++ b/target/linux/ramips/dts/mt7628an_tplink_8m-split-uboot.dtsi
|
|
@@ -43,7 +43,12 @@
|
|
partition@50000 {
|
|
compatible = "tplink,firmware";
|
|
label = "firmware";
|
|
- reg = <0x50000 0x770000>;
|
|
+ reg = <0x50000 0x760000>;
|
|
+ };
|
|
+
|
|
+ partition@7b0000 {
|
|
+ label = "certificates";
|
|
+ reg = <0x7b0000 0x10000>;
|
|
};
|
|
|
|
partition@7c0000 {
|
|
--
|
|
2.25.1
|
|
|