* [Buildroot] [PATCH 1/4] configs/qemu_riscv32_virt_defconfig: use OpenSBI 1.2
@ 2023-01-07 8:27 Peter Korsgaard
2023-01-07 8:27 ` [Buildroot] [PATCH 2/4] configs/qemu_riscv64_virt_defconfig: " Peter Korsgaard
` (3 more replies)
0 siblings, 4 replies; 10+ messages in thread
From: Peter Korsgaard @ 2023-01-07 8:27 UTC (permalink / raw)
To: buildroot; +Cc: Mark Corbin, Romain Naour
Rather than the default (currently 0.9).
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
configs/qemu_riscv32_virt_defconfig | 2 ++
1 file changed, 2 insertions(+)
diff --git a/configs/qemu_riscv32_virt_defconfig b/configs/qemu_riscv32_virt_defconfig
index faf4e1e312..f354e303e5 100644
--- a/configs/qemu_riscv32_virt_defconfig
+++ b/configs/qemu_riscv32_virt_defconfig
@@ -25,6 +25,8 @@ BR2_LINUX_KERNEL_IMAGE=y
# Bootloader
BR2_TARGET_OPENSBI=y
+BR2_TARGET_OPENSBI_CUSTOM_VERSION=y
+BR2_TARGET_OPENSBI_CUSTOM_VERSION_VALUE="1.2"
BR2_TARGET_OPENSBI_PLAT="generic"
# host-qemu for gitlab testing
--
2.30.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [Buildroot] [PATCH 2/4] configs/qemu_riscv64_virt_defconfig: use OpenSBI 1.2
2023-01-07 8:27 [Buildroot] [PATCH 1/4] configs/qemu_riscv32_virt_defconfig: use OpenSBI 1.2 Peter Korsgaard
@ 2023-01-07 8:27 ` Peter Korsgaard
2023-01-07 19:25 ` Peter Korsgaard
2023-01-07 8:27 ` [Buildroot] [PATCH 3/4] configs/spike_riscv64_defconfig: " Peter Korsgaard
` (2 subsequent siblings)
3 siblings, 1 reply; 10+ messages in thread
From: Peter Korsgaard @ 2023-01-07 8:27 UTC (permalink / raw)
To: buildroot; +Cc: Mark Corbin, Romain Naour
Rather than the default (currently 0.9).
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
configs/qemu_riscv64_virt_defconfig | 2 ++
1 file changed, 2 insertions(+)
diff --git a/configs/qemu_riscv64_virt_defconfig b/configs/qemu_riscv64_virt_defconfig
index c455680ee0..b3174a152c 100644
--- a/configs/qemu_riscv64_virt_defconfig
+++ b/configs/qemu_riscv64_virt_defconfig
@@ -25,6 +25,8 @@ BR2_LINUX_KERNEL_IMAGE=y
# Bootloader
BR2_TARGET_OPENSBI=y
+BR2_TARGET_OPENSBI_CUSTOM_VERSION=y
+BR2_TARGET_OPENSBI_CUSTOM_VERSION_VALUE="1.2"
BR2_TARGET_OPENSBI_PLAT="generic"
# host-qemu for gitlab testing
--
2.30.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [Buildroot] [PATCH 3/4] configs/spike_riscv64_defconfig: use OpenSBI 1.2
2023-01-07 8:27 [Buildroot] [PATCH 1/4] configs/qemu_riscv32_virt_defconfig: use OpenSBI 1.2 Peter Korsgaard
2023-01-07 8:27 ` [Buildroot] [PATCH 2/4] configs/qemu_riscv64_virt_defconfig: " Peter Korsgaard
@ 2023-01-07 8:27 ` Peter Korsgaard
2023-01-07 11:01 ` Julien Olivain
2023-01-07 19:25 ` Peter Korsgaard
2023-01-07 8:27 ` [Buildroot] [PATCH 4/4] configs/hifive_unleashed_defconfig: explicitly use OpenSBI 0.9 Peter Korsgaard
2023-01-07 19:25 ` [Buildroot] [PATCH 1/4] configs/qemu_riscv32_virt_defconfig: use OpenSBI 1.2 Peter Korsgaard
3 siblings, 2 replies; 10+ messages in thread
From: Peter Korsgaard @ 2023-01-07 8:27 UTC (permalink / raw)
To: buildroot; +Cc: Julien Olivain
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
configs/spike_riscv64_defconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configs/spike_riscv64_defconfig b/configs/spike_riscv64_defconfig
index 26103682f9..e23f1ce32c 100644
--- a/configs/spike_riscv64_defconfig
+++ b/configs/spike_riscv64_defconfig
@@ -9,7 +9,7 @@ BR2_TARGET_ROOTFS_CPIO=y
# BR2_TARGET_ROOTFS_TAR is not set
BR2_TARGET_OPENSBI=y
BR2_TARGET_OPENSBI_CUSTOM_VERSION=y
-BR2_TARGET_OPENSBI_CUSTOM_VERSION_VALUE="1.1"
+BR2_TARGET_OPENSBI_CUSTOM_VERSION_VALUE="1.2"
BR2_TARGET_OPENSBI_PLAT="generic"
BR2_TARGET_OPENSBI_LINUX_PAYLOAD=y
BR2_PACKAGE_HOST_RISCV_ISA_SIM=y
--
2.30.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [Buildroot] [PATCH 4/4] configs/hifive_unleashed_defconfig: explicitly use OpenSBI 0.9
2023-01-07 8:27 [Buildroot] [PATCH 1/4] configs/qemu_riscv32_virt_defconfig: use OpenSBI 1.2 Peter Korsgaard
2023-01-07 8:27 ` [Buildroot] [PATCH 2/4] configs/qemu_riscv64_virt_defconfig: " Peter Korsgaard
2023-01-07 8:27 ` [Buildroot] [PATCH 3/4] configs/spike_riscv64_defconfig: " Peter Korsgaard
@ 2023-01-07 8:27 ` Peter Korsgaard
2023-01-07 8:40 ` Peter Korsgaard
2023-01-07 19:25 ` Peter Korsgaard
2023-01-07 19:25 ` [Buildroot] [PATCH 1/4] configs/qemu_riscv32_virt_defconfig: use OpenSBI 1.2 Peter Korsgaard
3 siblings, 2 replies; 10+ messages in thread
From: Peter Korsgaard @ 2023-01-07 8:27 UTC (permalink / raw)
To: buildroot; +Cc: Alistair Francis
Rather than relying on what is currently the default.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
configs/hifive_unleashed_defconfig | 2 ++
1 file changed, 2 insertions(+)
diff --git a/configs/hifive_unleashed_defconfig b/configs/hifive_unleashed_defconfig
index 0b87f2588f..2b6ee6c08e 100644
--- a/configs/hifive_unleashed_defconfig
+++ b/configs/hifive_unleashed_defconfig
@@ -37,6 +37,8 @@ BR2_LINUX_KERNEL_INSTALL_TARGET=y
# Bootloader
BR2_TARGET_OPENSBI=y
+BR2_TARGET_OPENSBI_CUSTOM_VERSION=y
+BR2_TARGET_OPENSBI_CUSTOM_VERSION_VALUE="0.9"
BR2_TARGET_OPENSBI_PLAT="generic"
BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_CUSTOM_VERSION=y
--
2.30.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [Buildroot] [PATCH 4/4] configs/hifive_unleashed_defconfig: explicitly use OpenSBI 0.9
2023-01-07 8:27 ` [Buildroot] [PATCH 4/4] configs/hifive_unleashed_defconfig: explicitly use OpenSBI 0.9 Peter Korsgaard
@ 2023-01-07 8:40 ` Peter Korsgaard
2023-01-07 19:25 ` Peter Korsgaard
1 sibling, 0 replies; 10+ messages in thread
From: Peter Korsgaard @ 2023-01-07 8:40 UTC (permalink / raw)
To: buildroot; +Cc: Alistair Francis
>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:
> Rather than relying on what is currently the default.
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
> ---
FYI, 1.2 would probably also work but I don't have the hardware to
verify.
> configs/hifive_unleashed_defconfig | 2 ++
> 1 file changed, 2 insertions(+)
> diff --git a/configs/hifive_unleashed_defconfig b/configs/hifive_unleashed_defconfig
> index 0b87f2588f..2b6ee6c08e 100644
> --- a/configs/hifive_unleashed_defconfig
> +++ b/configs/hifive_unleashed_defconfig
> @@ -37,6 +37,8 @@ BR2_LINUX_KERNEL_INSTALL_TARGET=y
> # Bootloader
> BR2_TARGET_OPENSBI=y
> +BR2_TARGET_OPENSBI_CUSTOM_VERSION=y
> +BR2_TARGET_OPENSBI_CUSTOM_VERSION_VALUE="0.9"
> BR2_TARGET_OPENSBI_PLAT="generic"
> BR2_TARGET_UBOOT=y
> BR2_TARGET_UBOOT_CUSTOM_VERSION=y
> --
> 2.30.2
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Buildroot] [PATCH 3/4] configs/spike_riscv64_defconfig: use OpenSBI 1.2
2023-01-07 8:27 ` [Buildroot] [PATCH 3/4] configs/spike_riscv64_defconfig: " Peter Korsgaard
@ 2023-01-07 11:01 ` Julien Olivain
2023-01-07 19:25 ` Peter Korsgaard
1 sibling, 0 replies; 10+ messages in thread
From: Julien Olivain @ 2023-01-07 11:01 UTC (permalink / raw)
To: Peter Korsgaard; +Cc: buildroot
Hi Peter,
I successfully tested this patch on top of branch master
at commit a0a428f with commands:
make spike_riscv64_defconfig
make
./board/spike/riscv64/start.sh
On 07/01/2023 09:27, Peter Korsgaard wrote:
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Reviewed-by: Julien Olivain <ju.o@free.fr>
Tested-by: Julien Olivain <ju.o@free.fr>
> ---
> configs/spike_riscv64_defconfig | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/configs/spike_riscv64_defconfig
> b/configs/spike_riscv64_defconfig
> index 26103682f9..e23f1ce32c 100644
> --- a/configs/spike_riscv64_defconfig
> +++ b/configs/spike_riscv64_defconfig
> @@ -9,7 +9,7 @@ BR2_TARGET_ROOTFS_CPIO=y
> # BR2_TARGET_ROOTFS_TAR is not set
> BR2_TARGET_OPENSBI=y
> BR2_TARGET_OPENSBI_CUSTOM_VERSION=y
> -BR2_TARGET_OPENSBI_CUSTOM_VERSION_VALUE="1.1"
> +BR2_TARGET_OPENSBI_CUSTOM_VERSION_VALUE="1.2"
> BR2_TARGET_OPENSBI_PLAT="generic"
> BR2_TARGET_OPENSBI_LINUX_PAYLOAD=y
> BR2_PACKAGE_HOST_RISCV_ISA_SIM=y
Best regards,
Julien.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Buildroot] [PATCH 1/4] configs/qemu_riscv32_virt_defconfig: use OpenSBI 1.2
2023-01-07 8:27 [Buildroot] [PATCH 1/4] configs/qemu_riscv32_virt_defconfig: use OpenSBI 1.2 Peter Korsgaard
` (2 preceding siblings ...)
2023-01-07 8:27 ` [Buildroot] [PATCH 4/4] configs/hifive_unleashed_defconfig: explicitly use OpenSBI 0.9 Peter Korsgaard
@ 2023-01-07 19:25 ` Peter Korsgaard
3 siblings, 0 replies; 10+ messages in thread
From: Peter Korsgaard @ 2023-01-07 19:25 UTC (permalink / raw)
To: buildroot; +Cc: Romain Naour, Mark Corbin
>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:
> Rather than the default (currently 0.9).
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Committed, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Buildroot] [PATCH 3/4] configs/spike_riscv64_defconfig: use OpenSBI 1.2
2023-01-07 8:27 ` [Buildroot] [PATCH 3/4] configs/spike_riscv64_defconfig: " Peter Korsgaard
2023-01-07 11:01 ` Julien Olivain
@ 2023-01-07 19:25 ` Peter Korsgaard
1 sibling, 0 replies; 10+ messages in thread
From: Peter Korsgaard @ 2023-01-07 19:25 UTC (permalink / raw)
To: buildroot; +Cc: Julien Olivain
>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Committed, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Buildroot] [PATCH 2/4] configs/qemu_riscv64_virt_defconfig: use OpenSBI 1.2
2023-01-07 8:27 ` [Buildroot] [PATCH 2/4] configs/qemu_riscv64_virt_defconfig: " Peter Korsgaard
@ 2023-01-07 19:25 ` Peter Korsgaard
0 siblings, 0 replies; 10+ messages in thread
From: Peter Korsgaard @ 2023-01-07 19:25 UTC (permalink / raw)
To: buildroot; +Cc: Romain Naour, Mark Corbin
>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:
> Rather than the default (currently 0.9).
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Committed, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Buildroot] [PATCH 4/4] configs/hifive_unleashed_defconfig: explicitly use OpenSBI 0.9
2023-01-07 8:27 ` [Buildroot] [PATCH 4/4] configs/hifive_unleashed_defconfig: explicitly use OpenSBI 0.9 Peter Korsgaard
2023-01-07 8:40 ` Peter Korsgaard
@ 2023-01-07 19:25 ` Peter Korsgaard
1 sibling, 0 replies; 10+ messages in thread
From: Peter Korsgaard @ 2023-01-07 19:25 UTC (permalink / raw)
To: buildroot; +Cc: Alistair Francis
>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:
> Rather than relying on what is currently the default.
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Committed, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2023-01-07 19:26 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-07 8:27 [Buildroot] [PATCH 1/4] configs/qemu_riscv32_virt_defconfig: use OpenSBI 1.2 Peter Korsgaard
2023-01-07 8:27 ` [Buildroot] [PATCH 2/4] configs/qemu_riscv64_virt_defconfig: " Peter Korsgaard
2023-01-07 19:25 ` Peter Korsgaard
2023-01-07 8:27 ` [Buildroot] [PATCH 3/4] configs/spike_riscv64_defconfig: " Peter Korsgaard
2023-01-07 11:01 ` Julien Olivain
2023-01-07 19:25 ` Peter Korsgaard
2023-01-07 8:27 ` [Buildroot] [PATCH 4/4] configs/hifive_unleashed_defconfig: explicitly use OpenSBI 0.9 Peter Korsgaard
2023-01-07 8:40 ` Peter Korsgaard
2023-01-07 19:25 ` Peter Korsgaard
2023-01-07 19:25 ` [Buildroot] [PATCH 1/4] configs/qemu_riscv32_virt_defconfig: use OpenSBI 1.2 Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox