All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2 1/7] board/zynq/patches: add xilinx_2024.1 hashes
@ 2024-05-31  9:47 Neal Frager via buildroot
  2024-05-31  9:47 ` [Buildroot] [PATCH v2 2/7] board/zynq/post-image.sh: support linux 6.6 dts directory structure Neal Frager via buildroot
                   ` (5 more replies)
  0 siblings, 6 replies; 15+ messages in thread
From: Neal Frager via buildroot @ 2024-05-31  9:47 UTC (permalink / raw)
  To: buildroot
  Cc: martin.chabot, brandon.maier, ju.o, juju, michal.simek,
	thomas.petazzoni, Neal Frager, luca.ceresoli

Add the Linux and u-boot hashes for xilinx_2024.1 release.

xilinx_2024.1 release includes:
 - uboot 2024.01
 - linux 6.6.10

Signed-off-by: Neal Frager <neal.frager@amd.com>
---
V1->V2:
- no changes
---
 board/zynq/patches/linux/linux.hash | 1 +
 board/zynq/patches/uboot/uboot.hash | 1 +
 2 files changed, 2 insertions(+)

diff --git a/board/zynq/patches/linux/linux.hash b/board/zynq/patches/linux/linux.hash
index 8ed4bbead4..db57012f98 100644
--- a/board/zynq/patches/linux/linux.hash
+++ b/board/zynq/patches/linux/linux.hash
@@ -1,2 +1,3 @@
 # Locally calculated
 sha256  56acddefc6f6fdc00df5b75ceb4f86a9d0af9a4fef78cf57f9f2c274b22f006f  xlnx_rebase_v6.1_LTS_merge_6.1.70.tar.gz
+sha256  ea85988e66b9a2e19ccd76d0f5f5e657988a873fed292160917712f45605a805  xlnx_rebase_v6.6_LTS_2024.1.tar.gz
diff --git a/board/zynq/patches/uboot/uboot.hash b/board/zynq/patches/uboot/uboot.hash
index 35e54e0baf..516707bf26 100644
--- a/board/zynq/patches/uboot/uboot.hash
+++ b/board/zynq/patches/uboot/uboot.hash
@@ -1,2 +1,3 @@
 # Locally calculated
 sha256  32a997a748697ff27e5e6db8edaff5ba893077214bc18b5267daff0b708dab53  xlnx_rebase_v2023.01_2023.2.tar.gz
+sha256  58e391a001d9d8ed347ab3258ff7c8435c866b1ff2b2c22ebc95af592444c0f5  xlnx_rebase_v2024.01_2024.1.tar.gz
-- 
2.25.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [Buildroot] [PATCH v2 2/7] board/zynq/post-image.sh: support linux 6.6 dts directory structure
  2024-05-31  9:47 [Buildroot] [PATCH v2 1/7] board/zynq/patches: add xilinx_2024.1 hashes Neal Frager via buildroot
@ 2024-05-31  9:47 ` Neal Frager via buildroot
  2024-05-31 12:00   ` Peter Korsgaard
  2024-05-31  9:47 ` [Buildroot] [PATCH v2 3/7] configs/zynq_zc702_defconfig: bump to xilinx-v2024.1 Neal Frager via buildroot
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 15+ messages in thread
From: Neal Frager via buildroot @ 2024-05-31  9:47 UTC (permalink / raw)
  To: buildroot
  Cc: martin.chabot, brandon.maier, ju.o, juju, michal.simek,
	thomas.petazzoni, Neal Frager, luca.ceresoli

Linux 6.6 includes a xilinx directory in the dts directory structure for zynq
boards.  This patch updates the post-image.sh to match the zynqmp post-image.sh
in order to support this change.

Signed-off-by: Neal Frager <neal.frager@amd.com>
---
V1->V2:
- added this patch to support new dts dir structure
---
 board/zynq/post-image.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/board/zynq/post-image.sh b/board/zynq/post-image.sh
index 192354b5be..f44b66342d 100755
--- a/board/zynq/post-image.sh
+++ b/board/zynq/post-image.sh
@@ -4,9 +4,9 @@
 # let's use a symlink with that name that points to the *first*
 # devicetree listed in the config.
 
-FIRST_DT=$(sed -n \
-           's/^BR2_LINUX_KERNEL_INTREE_DTS_NAME="\([a-z0-9\-]*\).*"$/\1/p' \
-           "${BR2_CONFIG}")
+FIRST_DT=$(sed -nr \
+               -e 's|^BR2_LINUX_KERNEL_INTREE_DTS_NAME="(xilinx/)?([-_/[:alnum:]\\.]*).*"$|\2|p' \
+               "${BR2_CONFIG}")
 
 [ -z "${FIRST_DT}" ] || ln -fs "${FIRST_DT}.dtb" "${BINARIES_DIR}/system.dtb"
 
-- 
2.25.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [Buildroot] [PATCH v2 3/7] configs/zynq_zc702_defconfig: bump to xilinx-v2024.1
  2024-05-31  9:47 [Buildroot] [PATCH v2 1/7] board/zynq/patches: add xilinx_2024.1 hashes Neal Frager via buildroot
  2024-05-31  9:47 ` [Buildroot] [PATCH v2 2/7] board/zynq/post-image.sh: support linux 6.6 dts directory structure Neal Frager via buildroot
@ 2024-05-31  9:47 ` Neal Frager via buildroot
  2024-05-31 12:17   ` Peter Korsgaard
  2024-05-31  9:47 ` [Buildroot] [PATCH v2 4/7] configs/zynq_zc706_defconfig: " Neal Frager via buildroot
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 15+ messages in thread
From: Neal Frager via buildroot @ 2024-05-31  9:47 UTC (permalink / raw)
  To: buildroot
  Cc: martin.chabot, brandon.maier, ju.o, juju, michal.simek,
	thomas.petazzoni, Neal Frager, luca.ceresoli

This patch bumps the zynq_zc702_defconfig to xilinx-v2024.1 which includes
the following updates:

- Linux v6.6.10
- U-Boot v2024.01

Signed-off-by: Neal Frager <neal.frager@amd.com>
---
V1->V2:
- update linux dts name to include new xilinx directory
---
 configs/zynq_zc702_defconfig | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/configs/zynq_zc702_defconfig b/configs/zynq_zc702_defconfig
index 84c8843ced..9e37678d9b 100644
--- a/configs/zynq_zc702_defconfig
+++ b/configs/zynq_zc702_defconfig
@@ -2,26 +2,26 @@ BR2_arm=y
 BR2_cortex_a9=y
 BR2_ARM_ENABLE_NEON=y
 BR2_ARM_ENABLE_VFP=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y
 BR2_GLOBAL_PATCH_DIR="board/zynq/patches"
 BR2_DOWNLOAD_FORCE_CHECK_HASHES=y
 BR2_ROOTFS_POST_BUILD_SCRIPT="board/zynq/post-build.sh"
 BR2_ROOTFS_POST_IMAGE_SCRIPT="board/zynq/post-image.sh"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
-BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,Xilinx,linux-xlnx,xlnx_rebase_v6.1_LTS_merge_6.1.70)/xlnx_rebase_v6.1_LTS_merge_6.1.70.tar.gz"
+BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,Xilinx,linux-xlnx,xlnx_rebase_v6.6_LTS_2024.1)/xlnx_rebase_v6.6_LTS_2024.1.tar.gz"
 BR2_LINUX_KERNEL_DEFCONFIG="xilinx_zynq"
 BR2_LINUX_KERNEL_UIMAGE=y
 BR2_LINUX_KERNEL_UIMAGE_LOADADDR="0x8000"
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
-BR2_LINUX_KERNEL_INTREE_DTS_NAME="zynq-zc702"
+BR2_LINUX_KERNEL_INTREE_DTS_NAME="xilinx/zynq-zc702"
 BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_TARGET_ROOTFS_EXT2=y
 BR2_TARGET_ROOTFS_EXT2_4=y
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
 BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
-BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,Xilinx,u-boot-xlnx,xlnx_rebase_v2023.01_2023.2)/xlnx_rebase_v2023.01_2023.2.tar.gz"
+BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,Xilinx,u-boot-xlnx,xlnx_rebase_v2024.01_2024.1)/xlnx_rebase_v2024.01_2024.1.tar.gz"
 BR2_TARGET_UBOOT_BOARD_DEFCONFIG="xilinx_zynq_virt"
 BR2_TARGET_UBOOT_CUSTOM_MAKEOPTS="DEVICE_TREE=zynq-zc702"
 BR2_TARGET_UBOOT_NEEDS_DTC=y
-- 
2.25.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [Buildroot] [PATCH v2 4/7] configs/zynq_zc706_defconfig: bump to xilinx-v2024.1
  2024-05-31  9:47 [Buildroot] [PATCH v2 1/7] board/zynq/patches: add xilinx_2024.1 hashes Neal Frager via buildroot
  2024-05-31  9:47 ` [Buildroot] [PATCH v2 2/7] board/zynq/post-image.sh: support linux 6.6 dts directory structure Neal Frager via buildroot
  2024-05-31  9:47 ` [Buildroot] [PATCH v2 3/7] configs/zynq_zc702_defconfig: bump to xilinx-v2024.1 Neal Frager via buildroot
@ 2024-05-31  9:47 ` Neal Frager via buildroot
  2024-05-31 12:18   ` Peter Korsgaard
  2024-05-31  9:47 ` [Buildroot] [PATCH v2 5/7] configs/zynq_zed_defconfig: " Neal Frager via buildroot
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 15+ messages in thread
From: Neal Frager via buildroot @ 2024-05-31  9:47 UTC (permalink / raw)
  To: buildroot
  Cc: martin.chabot, brandon.maier, ju.o, juju, michal.simek,
	thomas.petazzoni, Neal Frager, luca.ceresoli

This patch bumps the zynq_zc706_defconfig to xilinx-v2024.1 which includes
the following updates:

- Linux v6.6.10
- U-Boot v2024.01

Signed-off-by: Neal Frager <neal.frager@amd.com>
---
V1->V2:
- update linux dts name to include new xilinx directory
---
 configs/zynq_zc706_defconfig | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/configs/zynq_zc706_defconfig b/configs/zynq_zc706_defconfig
index e22ba7a3d9..9ccf23f6e1 100644
--- a/configs/zynq_zc706_defconfig
+++ b/configs/zynq_zc706_defconfig
@@ -2,26 +2,26 @@ BR2_arm=y
 BR2_cortex_a9=y
 BR2_ARM_ENABLE_NEON=y
 BR2_ARM_ENABLE_VFP=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y
 BR2_GLOBAL_PATCH_DIR="board/zynq/patches"
 BR2_DOWNLOAD_FORCE_CHECK_HASHES=y
 BR2_ROOTFS_POST_BUILD_SCRIPT="board/zynq/post-build.sh"
 BR2_ROOTFS_POST_IMAGE_SCRIPT="board/zynq/post-image.sh"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
-BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,Xilinx,linux-xlnx,xlnx_rebase_v6.1_LTS_merge_6.1.70)/xlnx_rebase_v6.1_LTS_merge_6.1.70.tar.gz"
+BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,Xilinx,linux-xlnx,xlnx_rebase_v6.6_LTS_2024.1)/xlnx_rebase_v6.6_LTS_2024.1.tar.gz"
 BR2_LINUX_KERNEL_DEFCONFIG="xilinx_zynq"
 BR2_LINUX_KERNEL_UIMAGE=y
 BR2_LINUX_KERNEL_UIMAGE_LOADADDR="0x8000"
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
-BR2_LINUX_KERNEL_INTREE_DTS_NAME="zynq-zc706"
+BR2_LINUX_KERNEL_INTREE_DTS_NAME="xilinx/zynq-zc706"
 BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_TARGET_ROOTFS_EXT2=y
 BR2_TARGET_ROOTFS_EXT2_4=y
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
 BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
-BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,Xilinx,u-boot-xlnx,xlnx_rebase_v2023.01_2023.2)/xlnx_rebase_v2023.01_2023.2.tar.gz"
+BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,Xilinx,u-boot-xlnx,xlnx_rebase_v2024.01_2024.1)/xlnx_rebase_v2024.01_2024.1.tar.gz"
 BR2_TARGET_UBOOT_BOARD_DEFCONFIG="xilinx_zynq_virt"
 BR2_TARGET_UBOOT_CUSTOM_MAKEOPTS="DEVICE_TREE=zynq-zc706"
 BR2_TARGET_UBOOT_NEEDS_DTC=y
-- 
2.25.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [Buildroot] [PATCH v2 5/7] configs/zynq_zed_defconfig: bump to xilinx-v2024.1
  2024-05-31  9:47 [Buildroot] [PATCH v2 1/7] board/zynq/patches: add xilinx_2024.1 hashes Neal Frager via buildroot
                   ` (2 preceding siblings ...)
  2024-05-31  9:47 ` [Buildroot] [PATCH v2 4/7] configs/zynq_zc706_defconfig: " Neal Frager via buildroot
@ 2024-05-31  9:47 ` Neal Frager via buildroot
  2024-05-31 12:18   ` Peter Korsgaard
  2024-05-31  9:47 ` [Buildroot] [PATCH v2 6/7] configs/zynq_microzed_defconfig: " Neal Frager via buildroot
  2024-05-31  9:47 ` [Buildroot] [PATCH v2 7/7] board/zynq/patches: remove xilinx 6.1.70 hashes Neal Frager via buildroot
  5 siblings, 1 reply; 15+ messages in thread
From: Neal Frager via buildroot @ 2024-05-31  9:47 UTC (permalink / raw)
  To: buildroot
  Cc: martin.chabot, brandon.maier, ju.o, juju, michal.simek,
	thomas.petazzoni, Neal Frager, luca.ceresoli

This patch bumps the zynq_zed_defconfig to xilinx-v2024.1 which includes
the following updates:

- Linux v6.6.10
- U-Boot v2024.01

Signed-off-by: Neal Frager <neal.frager@amd.com>
---
V1->V2:
- update linux dts name to include new xilinx directory
---
 configs/zynq_zed_defconfig | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/configs/zynq_zed_defconfig b/configs/zynq_zed_defconfig
index 33e7aa02e0..95606caf5c 100644
--- a/configs/zynq_zed_defconfig
+++ b/configs/zynq_zed_defconfig
@@ -2,26 +2,26 @@ BR2_arm=y
 BR2_cortex_a9=y
 BR2_ARM_ENABLE_NEON=y
 BR2_ARM_ENABLE_VFP=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y
 BR2_GLOBAL_PATCH_DIR="board/zynq/patches"
 BR2_DOWNLOAD_FORCE_CHECK_HASHES=y
 BR2_ROOTFS_POST_BUILD_SCRIPT="board/zynq/post-build.sh"
 BR2_ROOTFS_POST_IMAGE_SCRIPT="board/zynq/post-image.sh"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
-BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,Xilinx,linux-xlnx,xlnx_rebase_v6.1_LTS_merge_6.1.70)/xlnx_rebase_v6.1_LTS_merge_6.1.70.tar.gz"
+BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,Xilinx,linux-xlnx,xlnx_rebase_v6.6_LTS_2024.1)/xlnx_rebase_v6.6_LTS_2024.1.tar.gz"
 BR2_LINUX_KERNEL_DEFCONFIG="xilinx_zynq"
 BR2_LINUX_KERNEL_UIMAGE=y
 BR2_LINUX_KERNEL_UIMAGE_LOADADDR="0x8000"
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
-BR2_LINUX_KERNEL_INTREE_DTS_NAME="zynq-zed"
+BR2_LINUX_KERNEL_INTREE_DTS_NAME="xilinx/zynq-zed"
 BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_TARGET_ROOTFS_EXT2=y
 BR2_TARGET_ROOTFS_EXT2_4=y
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
 BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
-BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,Xilinx,u-boot-xlnx,xlnx_rebase_v2023.01_2023.2)/xlnx_rebase_v2023.01_2023.2.tar.gz"
+BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,Xilinx,u-boot-xlnx,xlnx_rebase_v2024.01_2024.1)/xlnx_rebase_v2024.01_2024.1.tar.gz"
 BR2_TARGET_UBOOT_BOARD_DEFCONFIG="xilinx_zynq_virt"
 BR2_TARGET_UBOOT_CUSTOM_MAKEOPTS="DEVICE_TREE=zynq-zed"
 BR2_TARGET_UBOOT_NEEDS_DTC=y
-- 
2.25.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [Buildroot] [PATCH v2 6/7] configs/zynq_microzed_defconfig: bump to xilinx-v2024.1
  2024-05-31  9:47 [Buildroot] [PATCH v2 1/7] board/zynq/patches: add xilinx_2024.1 hashes Neal Frager via buildroot
                   ` (3 preceding siblings ...)
  2024-05-31  9:47 ` [Buildroot] [PATCH v2 5/7] configs/zynq_zed_defconfig: " Neal Frager via buildroot
@ 2024-05-31  9:47 ` Neal Frager via buildroot
  2024-05-31 12:19   ` Peter Korsgaard
  2024-05-31  9:47 ` [Buildroot] [PATCH v2 7/7] board/zynq/patches: remove xilinx 6.1.70 hashes Neal Frager via buildroot
  5 siblings, 1 reply; 15+ messages in thread
From: Neal Frager via buildroot @ 2024-05-31  9:47 UTC (permalink / raw)
  To: buildroot
  Cc: martin.chabot, brandon.maier, ju.o, juju, michal.simek,
	thomas.petazzoni, Neal Frager, luca.ceresoli

This patch bumps the zynq_microzed_defconfig to xilinx-v2024.1 which includes
the following updates:

- Linux v6.6.10
- U-Boot v2024.01

Signed-off-by: Neal Frager <neal.frager@amd.com>
---
V1->V2:
- update linux dts name to include new xilinx directory
---
 configs/zynq_microzed_defconfig | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/configs/zynq_microzed_defconfig b/configs/zynq_microzed_defconfig
index 8fb9bc49dc..c6ca5a6244 100644
--- a/configs/zynq_microzed_defconfig
+++ b/configs/zynq_microzed_defconfig
@@ -2,26 +2,26 @@ BR2_arm=y
 BR2_cortex_a9=y
 BR2_ARM_ENABLE_NEON=y
 BR2_ARM_ENABLE_VFP=y
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_1=y
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_6=y
 BR2_GLOBAL_PATCH_DIR="board/zynq/patches"
 BR2_DOWNLOAD_FORCE_CHECK_HASHES=y
 BR2_ROOTFS_POST_BUILD_SCRIPT="board/zynq/post-build.sh"
 BR2_ROOTFS_POST_IMAGE_SCRIPT="board/zynq/post-image.sh"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
-BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,Xilinx,linux-xlnx,xlnx_rebase_v6.1_LTS_merge_6.1.70)/xlnx_rebase_v6.1_LTS_merge_6.1.70.tar.gz"
+BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,Xilinx,linux-xlnx,xlnx_rebase_v6.6_LTS_2024.1)/xlnx_rebase_v6.6_LTS_2024.1.tar.gz"
 BR2_LINUX_KERNEL_DEFCONFIG="xilinx_zynq"
 BR2_LINUX_KERNEL_UIMAGE=y
 BR2_LINUX_KERNEL_UIMAGE_LOADADDR="0x8000"
 BR2_LINUX_KERNEL_DTS_SUPPORT=y
-BR2_LINUX_KERNEL_INTREE_DTS_NAME="zynq-microzed"
+BR2_LINUX_KERNEL_INTREE_DTS_NAME="xilinx/zynq-microzed"
 BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
 BR2_TARGET_ROOTFS_EXT2=y
 BR2_TARGET_ROOTFS_EXT2_4=y
 BR2_TARGET_UBOOT=y
 BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
 BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
-BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,Xilinx,u-boot-xlnx,xlnx_rebase_v2023.01_2023.2)/xlnx_rebase_v2023.01_2023.2.tar.gz"
+BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,Xilinx,u-boot-xlnx,xlnx_rebase_v2024.01_2024.1)/xlnx_rebase_v2024.01_2024.1.tar.gz"
 BR2_TARGET_UBOOT_BOARD_DEFCONFIG="xilinx_zynq_virt"
 BR2_TARGET_UBOOT_CUSTOM_MAKEOPTS="DEVICE_TREE=zynq-microzed"
 BR2_TARGET_UBOOT_NEEDS_DTC=y
-- 
2.25.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [Buildroot] [PATCH v2 7/7] board/zynq/patches: remove xilinx 6.1.70 hashes
  2024-05-31  9:47 [Buildroot] [PATCH v2 1/7] board/zynq/patches: add xilinx_2024.1 hashes Neal Frager via buildroot
                   ` (4 preceding siblings ...)
  2024-05-31  9:47 ` [Buildroot] [PATCH v2 6/7] configs/zynq_microzed_defconfig: " Neal Frager via buildroot
@ 2024-05-31  9:47 ` Neal Frager via buildroot
  2024-05-31 12:20   ` Peter Korsgaard
  5 siblings, 1 reply; 15+ messages in thread
From: Neal Frager via buildroot @ 2024-05-31  9:47 UTC (permalink / raw)
  To: buildroot
  Cc: martin.chabot, brandon.maier, ju.o, juju, michal.simek,
	thomas.petazzoni, Neal Frager, luca.ceresoli

Now that the zynq_* defconfigs have migrated to xilinx_2024.1, remove the
older hashes.

Signed-off-by: Neal Frager <neal.frager@amd.com>
---
V1->V2:
- no changes
---
 board/zynq/patches/linux/linux.hash | 1 -
 board/zynq/patches/uboot/uboot.hash | 1 -
 2 files changed, 2 deletions(-)

diff --git a/board/zynq/patches/linux/linux.hash b/board/zynq/patches/linux/linux.hash
index db57012f98..d85f773478 100644
--- a/board/zynq/patches/linux/linux.hash
+++ b/board/zynq/patches/linux/linux.hash
@@ -1,3 +1,2 @@
 # Locally calculated
-sha256  56acddefc6f6fdc00df5b75ceb4f86a9d0af9a4fef78cf57f9f2c274b22f006f  xlnx_rebase_v6.1_LTS_merge_6.1.70.tar.gz
 sha256  ea85988e66b9a2e19ccd76d0f5f5e657988a873fed292160917712f45605a805  xlnx_rebase_v6.6_LTS_2024.1.tar.gz
diff --git a/board/zynq/patches/uboot/uboot.hash b/board/zynq/patches/uboot/uboot.hash
index 516707bf26..a5ab9fae05 100644
--- a/board/zynq/patches/uboot/uboot.hash
+++ b/board/zynq/patches/uboot/uboot.hash
@@ -1,3 +1,2 @@
 # Locally calculated
-sha256  32a997a748697ff27e5e6db8edaff5ba893077214bc18b5267daff0b708dab53  xlnx_rebase_v2023.01_2023.2.tar.gz
 sha256  58e391a001d9d8ed347ab3258ff7c8435c866b1ff2b2c22ebc95af592444c0f5  xlnx_rebase_v2024.01_2024.1.tar.gz
-- 
2.25.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* Re: [Buildroot] [PATCH v2 2/7] board/zynq/post-image.sh: support linux 6.6 dts directory structure
  2024-05-31  9:47 ` [Buildroot] [PATCH v2 2/7] board/zynq/post-image.sh: support linux 6.6 dts directory structure Neal Frager via buildroot
@ 2024-05-31 12:00   ` Peter Korsgaard
  2024-05-31 12:18     ` Peter Korsgaard
  0 siblings, 1 reply; 15+ messages in thread
From: Peter Korsgaard @ 2024-05-31 12:00 UTC (permalink / raw)
  To: Neal Frager
  Cc: martin.chabot, brandon.maier, ju.o, juju, michal.simek,
	thomas.petazzoni, buildroot, luca.ceresoli

>>>>> "Neal" == Neal Frager <neal.frager@amd.com> writes:

 > Linux 6.6 includes a xilinx directory in the dts directory structure for zynq
 > boards.  This patch updates the post-image.sh to match the zynqmp post-image.sh
 > in order to support this change.

 > Signed-off-by: Neal Frager <neal.frager@amd.com>
 > ---
 V1-> V2:
 > - added this patch to support new dts dir structure

Committed, thanks.

Given that these two files are now identical I have added a patch that
simply replaces this with a symlink to ../zynqmp/post-image.sh

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [Buildroot] [PATCH v2 3/7] configs/zynq_zc702_defconfig: bump to xilinx-v2024.1
  2024-05-31  9:47 ` [Buildroot] [PATCH v2 3/7] configs/zynq_zc702_defconfig: bump to xilinx-v2024.1 Neal Frager via buildroot
@ 2024-05-31 12:17   ` Peter Korsgaard
  2024-05-31 12:18     ` Peter Korsgaard
  0 siblings, 1 reply; 15+ messages in thread
From: Peter Korsgaard @ 2024-05-31 12:17 UTC (permalink / raw)
  To: Neal Frager
  Cc: martin.chabot, brandon.maier, ju.o, juju, michal.simek,
	thomas.petazzoni, buildroot, luca.ceresoli

>>>>> "Neal" == Neal Frager <neal.frager@amd.com> writes:

 > This patch bumps the zynq_zc702_defconfig to xilinx-v2024.1 which includes
 > the following updates:

 > - Linux v6.6.10
 > - U-Boot v2024.01

 > Signed-off-by: Neal Frager <neal.frager@amd.com>
 > ---
 V1-> V2:
 > - update linux dts name to include new xilinx directory

Committed to 2024.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [Buildroot] [PATCH v2 2/7] board/zynq/post-image.sh: support linux 6.6 dts directory structure
  2024-05-31 12:00   ` Peter Korsgaard
@ 2024-05-31 12:18     ` Peter Korsgaard
  0 siblings, 0 replies; 15+ messages in thread
From: Peter Korsgaard @ 2024-05-31 12:18 UTC (permalink / raw)
  To: Neal Frager
  Cc: martin.chabot, brandon.maier, ju.o, juju, michal.simek,
	thomas.petazzoni, buildroot, luca.ceresoli

>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:

>>>>> "Neal" == Neal Frager <neal.frager@amd.com> writes:
 >> Linux 6.6 includes a xilinx directory in the dts directory structure for zynq
 >> boards.  This patch updates the post-image.sh to match the zynqmp post-image.sh
 >> in order to support this change.

 >> Signed-off-by: Neal Frager <neal.frager@amd.com>
 >> ---
 V1-> V2:
 >> - added this patch to support new dts dir structure

 > Committed, thanks.

To next that is.

 > Given that these two files are now identical I have added a patch that
 > simply replaces this with a symlink to ../zynqmp/post-image.sh

 > -- 
 > Bye, Peter Korsgaard

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [Buildroot] [PATCH v2 3/7] configs/zynq_zc702_defconfig: bump to xilinx-v2024.1
  2024-05-31 12:17   ` Peter Korsgaard
@ 2024-05-31 12:18     ` Peter Korsgaard
  0 siblings, 0 replies; 15+ messages in thread
From: Peter Korsgaard @ 2024-05-31 12:18 UTC (permalink / raw)
  To: Neal Frager
  Cc: martin.chabot, brandon.maier, ju.o, juju, michal.simek,
	thomas.petazzoni, buildroot, luca.ceresoli

>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:

>>>>> "Neal" == Neal Frager <neal.frager@amd.com> writes:
 >> This patch bumps the zynq_zc702_defconfig to xilinx-v2024.1 which includes
 >> the following updates:

 >> - Linux v6.6.10
 >> - U-Boot v2024.01

 >> Signed-off-by: Neal Frager <neal.frager@amd.com>
 >> ---
 V1-> V2:
 >> - update linux dts name to include new xilinx directory

 > Committed to 2024.02.x, thanks.

Wrong keyboard shortcut, committed to next naturally.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [Buildroot] [PATCH v2 4/7] configs/zynq_zc706_defconfig: bump to xilinx-v2024.1
  2024-05-31  9:47 ` [Buildroot] [PATCH v2 4/7] configs/zynq_zc706_defconfig: " Neal Frager via buildroot
@ 2024-05-31 12:18   ` Peter Korsgaard
  0 siblings, 0 replies; 15+ messages in thread
From: Peter Korsgaard @ 2024-05-31 12:18 UTC (permalink / raw)
  To: Neal Frager
  Cc: martin.chabot, brandon.maier, ju.o, juju, michal.simek,
	thomas.petazzoni, buildroot, luca.ceresoli

>>>>> "Neal" == Neal Frager <neal.frager@amd.com> writes:

 > This patch bumps the zynq_zc706_defconfig to xilinx-v2024.1 which includes
 > the following updates:

 > - Linux v6.6.10
 > - U-Boot v2024.01

 > Signed-off-by: Neal Frager <neal.frager@amd.com>
 > ---
 V1-> V2:
 > - update linux dts name to include new xilinx directory

Committed to next, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [Buildroot] [PATCH v2 5/7] configs/zynq_zed_defconfig: bump to xilinx-v2024.1
  2024-05-31  9:47 ` [Buildroot] [PATCH v2 5/7] configs/zynq_zed_defconfig: " Neal Frager via buildroot
@ 2024-05-31 12:18   ` Peter Korsgaard
  0 siblings, 0 replies; 15+ messages in thread
From: Peter Korsgaard @ 2024-05-31 12:18 UTC (permalink / raw)
  To: Neal Frager
  Cc: martin.chabot, brandon.maier, ju.o, juju, michal.simek,
	thomas.petazzoni, buildroot, luca.ceresoli

>>>>> "Neal" == Neal Frager <neal.frager@amd.com> writes:

 > This patch bumps the zynq_zed_defconfig to xilinx-v2024.1 which includes
 > the following updates:

 > - Linux v6.6.10
 > - U-Boot v2024.01

 > Signed-off-by: Neal Frager <neal.frager@amd.com>
 > ---
 V1-> V2:
 > - update linux dts name to include new xilinx directory

Committed to next, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [Buildroot] [PATCH v2 6/7] configs/zynq_microzed_defconfig: bump to xilinx-v2024.1
  2024-05-31  9:47 ` [Buildroot] [PATCH v2 6/7] configs/zynq_microzed_defconfig: " Neal Frager via buildroot
@ 2024-05-31 12:19   ` Peter Korsgaard
  0 siblings, 0 replies; 15+ messages in thread
From: Peter Korsgaard @ 2024-05-31 12:19 UTC (permalink / raw)
  To: Neal Frager
  Cc: martin.chabot, brandon.maier, ju.o, juju, michal.simek,
	thomas.petazzoni, buildroot, luca.ceresoli

>>>>> "Neal" == Neal Frager <neal.frager@amd.com> writes:

 > This patch bumps the zynq_microzed_defconfig to xilinx-v2024.1 which includes
 > the following updates:

 > - Linux v6.6.10
 > - U-Boot v2024.01

 > Signed-off-by: Neal Frager <neal.frager@amd.com>
 > ---
 V1-> V2:
 > - update linux dts name to include new xilinx directory

Committed to next, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [Buildroot] [PATCH v2 7/7] board/zynq/patches: remove xilinx 6.1.70 hashes
  2024-05-31  9:47 ` [Buildroot] [PATCH v2 7/7] board/zynq/patches: remove xilinx 6.1.70 hashes Neal Frager via buildroot
@ 2024-05-31 12:20   ` Peter Korsgaard
  0 siblings, 0 replies; 15+ messages in thread
From: Peter Korsgaard @ 2024-05-31 12:20 UTC (permalink / raw)
  To: Neal Frager
  Cc: martin.chabot, brandon.maier, ju.o, juju, michal.simek,
	thomas.petazzoni, buildroot, luca.ceresoli

>>>>> "Neal" == Neal Frager <neal.frager@amd.com> writes:

 > Now that the zynq_* defconfigs have migrated to xilinx_2024.1, remove the
 > older hashes.

 > Signed-off-by: Neal Frager <neal.frager@amd.com>
 > ---
 V1-> V2:
 > - no changes

Committed to next, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2024-05-31 12:20 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-31  9:47 [Buildroot] [PATCH v2 1/7] board/zynq/patches: add xilinx_2024.1 hashes Neal Frager via buildroot
2024-05-31  9:47 ` [Buildroot] [PATCH v2 2/7] board/zynq/post-image.sh: support linux 6.6 dts directory structure Neal Frager via buildroot
2024-05-31 12:00   ` Peter Korsgaard
2024-05-31 12:18     ` Peter Korsgaard
2024-05-31  9:47 ` [Buildroot] [PATCH v2 3/7] configs/zynq_zc702_defconfig: bump to xilinx-v2024.1 Neal Frager via buildroot
2024-05-31 12:17   ` Peter Korsgaard
2024-05-31 12:18     ` Peter Korsgaard
2024-05-31  9:47 ` [Buildroot] [PATCH v2 4/7] configs/zynq_zc706_defconfig: " Neal Frager via buildroot
2024-05-31 12:18   ` Peter Korsgaard
2024-05-31  9:47 ` [Buildroot] [PATCH v2 5/7] configs/zynq_zed_defconfig: " Neal Frager via buildroot
2024-05-31 12:18   ` Peter Korsgaard
2024-05-31  9:47 ` [Buildroot] [PATCH v2 6/7] configs/zynq_microzed_defconfig: " Neal Frager via buildroot
2024-05-31 12:19   ` Peter Korsgaard
2024-05-31  9:47 ` [Buildroot] [PATCH v2 7/7] board/zynq/patches: remove xilinx 6.1.70 hashes Neal Frager via buildroot
2024-05-31 12:20   ` 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.