* [Buildroot] [PATCH 1/1] configs/stm32mp157a_dk1: add hashes
@ 2024-06-22 18:04 Dario Binacchi
2024-07-12 13:55 ` Thomas Petazzoni via buildroot
2024-07-31 16:51 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Dario Binacchi @ 2024-06-22 18:04 UTC (permalink / raw)
To: buildroot; +Cc: linux-amarula, Bartosz Bilas, Dario Binacchi, Marleen Vos
The patch adds .hash files for Arm trusted firmware, Linux, Linux headers
and U-Boot and then enables BR2_DOWNLOAD_FORCE_CHECK_HASHES. With this, we
can now drop the defconfig from .checkpackageignore.
Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
---
.checkpackageignore | 1 -
.../patches/arm-trusted-firmware/arm-trusted-firmware.hash | 2 ++
| 1 +
.../stmicroelectronics/stm32mp157a-dk1/patches/linux/linux.hash | 2 ++
.../stmicroelectronics/stm32mp157a-dk1/patches/uboot/uboot.hash | 2 ++
configs/stm32mp157a_dk1_defconfig | 2 ++
6 files changed, 9 insertions(+), 1 deletion(-)
create mode 100644 board/stmicroelectronics/stm32mp157a-dk1/patches/arm-trusted-firmware/arm-trusted-firmware.hash
create mode 120000 board/stmicroelectronics/stm32mp157a-dk1/patches/linux-headers/linux-headers.hash
create mode 100644 board/stmicroelectronics/stm32mp157a-dk1/patches/linux/linux.hash
create mode 100644 board/stmicroelectronics/stm32mp157a-dk1/patches/uboot/uboot.hash
diff --git a/.checkpackageignore b/.checkpackageignore
index 807cee1a08f8..a8693e6b1f08 100644
--- a/.checkpackageignore
+++ b/.checkpackageignore
@@ -332,7 +332,6 @@ configs/solidrun_macchiatobin_defconfig lib_defconfig.ForceCheckHash
configs/spike_riscv64_defconfig lib_defconfig.ForceCheckHash
configs/stm32f469_disco_sd_defconfig lib_defconfig.ForceCheckHash
configs/stm32f469_disco_xip_defconfig lib_defconfig.ForceCheckHash
-configs/stm32mp157a_dk1_defconfig lib_defconfig.ForceCheckHash
configs/stm32mp157c_dk2_defconfig lib_defconfig.ForceCheckHash
configs/stm32mp157c_odyssey_defconfig lib_defconfig.ForceCheckHash
configs/terasic_de10nano_cyclone5_defconfig lib_defconfig.ForceCheckHash
diff --git a/board/stmicroelectronics/stm32mp157a-dk1/patches/arm-trusted-firmware/arm-trusted-firmware.hash b/board/stmicroelectronics/stm32mp157a-dk1/patches/arm-trusted-firmware/arm-trusted-firmware.hash
new file mode 100644
index 000000000000..97c4500711fd
--- /dev/null
+++ b/board/stmicroelectronics/stm32mp157a-dk1/patches/arm-trusted-firmware/arm-trusted-firmware.hash
@@ -0,0 +1,2 @@
+# Locally calculated
+sha256 068325043b7c8ecc47ebb8b4f241f01e86d3f69dc49a63f340aa94bd41a9e6df arm-trusted-firmware/arm-trusted-firmware-lts-v2.8.16.tar.gz
--git a/board/stmicroelectronics/stm32mp157a-dk1/patches/linux-headers/linux-headers.hash b/board/stmicroelectronics/stm32mp157a-dk1/patches/linux-headers/linux-headers.hash
new file mode 120000
index 000000000000..5808d92afe89
--- /dev/null
+++ b/board/stmicroelectronics/stm32mp157a-dk1/patches/linux-headers/linux-headers.hash
@@ -0,0 +1 @@
+../linux/linux.hash
\ No newline at end of file
diff --git a/board/stmicroelectronics/stm32mp157a-dk1/patches/linux/linux.hash b/board/stmicroelectronics/stm32mp157a-dk1/patches/linux/linux.hash
new file mode 100644
index 000000000000..8b7624cceb9e
--- /dev/null
+++ b/board/stmicroelectronics/stm32mp157a-dk1/patches/linux/linux.hash
@@ -0,0 +1,2 @@
+# Locally calculated
+sha256 3f6baa97f37518439f51df2e4f3d65a822ca5ff016aa8e60d2cc53b95a6c89d9 linux-5.13.tar.xz
diff --git a/board/stmicroelectronics/stm32mp157a-dk1/patches/uboot/uboot.hash b/board/stmicroelectronics/stm32mp157a-dk1/patches/uboot/uboot.hash
new file mode 100644
index 000000000000..7cef5b688ec3
--- /dev/null
+++ b/board/stmicroelectronics/stm32mp157a-dk1/patches/uboot/uboot.hash
@@ -0,0 +1,2 @@
+# Locally calculated
+sha256 e31cac91545ff41b71cec5d8c22afd695645cd6e2a442ccdacacd60534069341 u-boot-2023.04.tar.bz2
diff --git a/configs/stm32mp157a_dk1_defconfig b/configs/stm32mp157a_dk1_defconfig
index aed6cfad3438..38f7bc8946c1 100644
--- a/configs/stm32mp157a_dk1_defconfig
+++ b/configs/stm32mp157a_dk1_defconfig
@@ -6,6 +6,8 @@ BR2_cortex_a7=y
BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_13=y
# System configuration
+BR2_GLOBAL_PATCH_DIR="board/stmicroelectronics/stm32mp157a-dk1/patches"
+BR2_DOWNLOAD_FORCE_CHECK_HASHES=y
BR2_ROOTFS_OVERLAY="board/stmicroelectronics/stm32mp157a-dk1/overlay/"
BR2_ROOTFS_POST_IMAGE_SCRIPT="board/stmicroelectronics/common/stm32mp157/post-image.sh"
--
2.43.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [Buildroot] [PATCH 1/1] configs/stm32mp157a_dk1: add hashes
2024-06-22 18:04 [Buildroot] [PATCH 1/1] configs/stm32mp157a_dk1: add hashes Dario Binacchi
@ 2024-07-12 13:55 ` Thomas Petazzoni via buildroot
2024-07-31 16:51 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-07-12 13:55 UTC (permalink / raw)
To: Dario Binacchi; +Cc: Marleen Vos, Bartosz Bilas, linux-amarula, buildroot
On Sat, 22 Jun 2024 20:04:32 +0200
Dario Binacchi <dario.binacchi@amarulasolutions.com> wrote:
> The patch adds .hash files for Arm trusted firmware, Linux, Linux headers
> and U-Boot and then enables BR2_DOWNLOAD_FORCE_CHECK_HASHES. With this, we
> can now drop the defconfig from .checkpackageignore.
>
> Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
> ---
> .checkpackageignore | 1 -
> .../patches/arm-trusted-firmware/arm-trusted-firmware.hash | 2 ++
> .../stm32mp157a-dk1/patches/linux-headers/linux-headers.hash | 1 +
> .../stmicroelectronics/stm32mp157a-dk1/patches/linux/linux.hash | 2 ++
> .../stmicroelectronics/stm32mp157a-dk1/patches/uboot/uboot.hash | 2 ++
> configs/stm32mp157a_dk1_defconfig | 2 ++
> 6 files changed, 9 insertions(+), 1 deletion(-)
> create mode 100644 board/stmicroelectronics/stm32mp157a-dk1/patches/arm-trusted-firmware/arm-trusted-firmware.hash
> create mode 120000 board/stmicroelectronics/stm32mp157a-dk1/patches/linux-headers/linux-headers.hash
> create mode 100644 board/stmicroelectronics/stm32mp157a-dk1/patches/linux/linux.hash
> create mode 100644 board/stmicroelectronics/stm32mp157a-dk1/patches/uboot/uboot.hash
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/1] configs/stm32mp157a_dk1: add hashes
2024-06-22 18:04 [Buildroot] [PATCH 1/1] configs/stm32mp157a_dk1: add hashes Dario Binacchi
2024-07-12 13:55 ` Thomas Petazzoni via buildroot
@ 2024-07-31 16:51 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2024-07-31 16:51 UTC (permalink / raw)
To: Dario Binacchi; +Cc: Marleen Vos, Bartosz Bilas, linux-amarula, buildroot
>>>>> "Dario" == Dario Binacchi <dario.binacchi@amarulasolutions.com> writes:
> The patch adds .hash files for Arm trusted firmware, Linux, Linux headers
> and U-Boot and then enables BR2_DOWNLOAD_FORCE_CHECK_HASHES. With this, we
> can now drop the defconfig from .checkpackageignore.
> Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Committed to 2024.02.x and 2024.05.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-07-31 16:51 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-22 18:04 [Buildroot] [PATCH 1/1] configs/stm32mp157a_dk1: add hashes Dario Binacchi
2024-07-12 13:55 ` Thomas Petazzoni via buildroot
2024-07-31 16:51 ` Peter Korsgaard
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.