* [Buildroot] [PATCH 1/2] configs/ti_am64x_sk_defconfig: explicitly set the kernel version
@ 2024-02-07 9:21 Romain Naour
2024-02-07 9:21 ` [Buildroot] [PATCH 2/2] configs/ti_am64x_sk_defconfig: drop redundant defconfig choice Romain Naour
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Romain Naour @ 2024-02-07 9:21 UTC (permalink / raw)
To: buildroot; +Cc: Romain Naour
Commit 6b2329bb80 ("configs/ti_am64x_sk: new defconfig") forgot to
specify the Linux kernel version, so do that now.
When the defconfig was added, the default version was 6.4.x, so use
version 6.4.16.
Signed-off-by: Romain Naour <romain.naour@smile.fr>
---
configs/ti_am64x_sk_defconfig | 3 +++
1 file changed, 3 insertions(+)
diff --git a/configs/ti_am64x_sk_defconfig b/configs/ti_am64x_sk_defconfig
index 052c440093..b3e69e9e93 100644
--- a/configs/ti_am64x_sk_defconfig
+++ b/configs/ti_am64x_sk_defconfig
@@ -1,7 +1,10 @@
BR2_aarch64=y
+BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_4=y
BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh"
BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/ti/am64x-sk/genimage.cfg"
BR2_LINUX_KERNEL=y
+BR2_LINUX_KERNEL_CUSTOM_VERSION=y
+BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.4.16"
BR2_LINUX_KERNEL_USE_ARCH_DEFAULT_CONFIG=y
BR2_LINUX_KERNEL_DTS_SUPPORT=y
BR2_LINUX_KERNEL_INTREE_DTS_NAME="ti/k3-am642-sk"
--
2.43.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 2/2] configs/ti_am64x_sk_defconfig: drop redundant defconfig choice
2024-02-07 9:21 [Buildroot] [PATCH 1/2] configs/ti_am64x_sk_defconfig: explicitly set the kernel version Romain Naour
@ 2024-02-07 9:21 ` Romain Naour
2024-03-01 10:08 ` Peter Korsgaard
2024-02-07 14:57 ` [Buildroot] [PATCH 1/2] configs/ti_am64x_sk_defconfig: explicitly set the kernel version Thomas Petazzoni via buildroot
2024-03-01 10:07 ` Peter Korsgaard
2 siblings, 1 reply; 5+ messages in thread
From: Romain Naour @ 2024-02-07 9:21 UTC (permalink / raw)
To: buildroot; +Cc: Romain Naour
The defconfig choice is the default one, so it is redundant and can be
removed without effect.
Signed-off-by: Romain Naour <romain.naour@smile.fr>
---
configs/ti_am64x_sk_defconfig | 1 -
1 file changed, 1 deletion(-)
diff --git a/configs/ti_am64x_sk_defconfig b/configs/ti_am64x_sk_defconfig
index b3e69e9e93..4bfd31f0c8 100644
--- a/configs/ti_am64x_sk_defconfig
+++ b/configs/ti_am64x_sk_defconfig
@@ -24,7 +24,6 @@ BR2_TARGET_OPTEE_OS=y
BR2_TARGET_OPTEE_OS_PLATFORM="k3"
BR2_TARGET_TI_K3_IMAGE_GEN=y
BR2_TARGET_TI_K3_IMAGE_GEN_SOC_AM64X=y
-BR2_TARGET_TI_K3_IMAGE_GEN_SECTYPE_GP=y
BR2_TARGET_TI_K3_R5_LOADER=y
BR2_TARGET_TI_K3_R5_LOADER_BOARD_DEFCONFIG="am64x_evm_r5"
BR2_TARGET_UBOOT=y
--
2.43.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Buildroot] [PATCH 1/2] configs/ti_am64x_sk_defconfig: explicitly set the kernel version
2024-02-07 9:21 [Buildroot] [PATCH 1/2] configs/ti_am64x_sk_defconfig: explicitly set the kernel version Romain Naour
2024-02-07 9:21 ` [Buildroot] [PATCH 2/2] configs/ti_am64x_sk_defconfig: drop redundant defconfig choice Romain Naour
@ 2024-02-07 14:57 ` Thomas Petazzoni via buildroot
2024-03-01 10:07 ` Peter Korsgaard
2 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-02-07 14:57 UTC (permalink / raw)
To: Romain Naour; +Cc: buildroot
On Wed, 7 Feb 2024 10:21:10 +0100
Romain Naour <romain.naour@smile.fr> wrote:
> Commit 6b2329bb80 ("configs/ti_am64x_sk: new defconfig") forgot to
> specify the Linux kernel version, so do that now.
>
> When the defconfig was added, the default version was 6.4.x, so use
> version 6.4.16.
>
> Signed-off-by: Romain Naour <romain.naour@smile.fr>
> ---
> configs/ti_am64x_sk_defconfig | 3 +++
> 1 file changed, 3 insertions(+)
Both 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] 5+ messages in thread
* Re: [Buildroot] [PATCH 1/2] configs/ti_am64x_sk_defconfig: explicitly set the kernel version
2024-02-07 9:21 [Buildroot] [PATCH 1/2] configs/ti_am64x_sk_defconfig: explicitly set the kernel version Romain Naour
2024-02-07 9:21 ` [Buildroot] [PATCH 2/2] configs/ti_am64x_sk_defconfig: drop redundant defconfig choice Romain Naour
2024-02-07 14:57 ` [Buildroot] [PATCH 1/2] configs/ti_am64x_sk_defconfig: explicitly set the kernel version Thomas Petazzoni via buildroot
@ 2024-03-01 10:07 ` Peter Korsgaard
2 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2024-03-01 10:07 UTC (permalink / raw)
To: Romain Naour; +Cc: buildroot
>>>>> "Romain" == Romain Naour <romain.naour@smile.fr> writes:
> Commit 6b2329bb80 ("configs/ti_am64x_sk: new defconfig") forgot to
> specify the Linux kernel version, so do that now.
> When the defconfig was added, the default version was 6.4.x, so use
> version 6.4.16.
> Signed-off-by: Romain Naour <romain.naour@smile.fr>
Committed to 2023.11.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Buildroot] [PATCH 2/2] configs/ti_am64x_sk_defconfig: drop redundant defconfig choice
2024-02-07 9:21 ` [Buildroot] [PATCH 2/2] configs/ti_am64x_sk_defconfig: drop redundant defconfig choice Romain Naour
@ 2024-03-01 10:08 ` Peter Korsgaard
0 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2024-03-01 10:08 UTC (permalink / raw)
To: Romain Naour; +Cc: buildroot
>>>>> "Romain" == Romain Naour <romain.naour@smile.fr> writes:
> The defconfig choice is the default one, so it is redundant and can be
> removed without effect.
> Signed-off-by: Romain Naour <romain.naour@smile.fr>
Committed to 2023.11.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-03-01 10:08 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-07 9:21 [Buildroot] [PATCH 1/2] configs/ti_am64x_sk_defconfig: explicitly set the kernel version Romain Naour
2024-02-07 9:21 ` [Buildroot] [PATCH 2/2] configs/ti_am64x_sk_defconfig: drop redundant defconfig choice Romain Naour
2024-03-01 10:08 ` Peter Korsgaard
2024-02-07 14:57 ` [Buildroot] [PATCH 1/2] configs/ti_am64x_sk_defconfig: explicitly set the kernel version Thomas Petazzoni via buildroot
2024-03-01 10:07 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox