All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/libgpg-error: add or1k support
@ 2022-02-01 22:06 Fabrice Fontaine
  2022-02-01 22:12 ` Giulio Benetti
  2022-02-05 15:31 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2022-02-01 22:06 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

or1k is supported since version 1.18 and
https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgpg-error.git;a=commit;h=c143fa81462584ad39ea780908266bce3fb9a49e

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/libgpg-error/Config.in | 23 +++++++++++++++--------
 1 file changed, 15 insertions(+), 8 deletions(-)

diff --git a/package/libgpg-error/Config.in b/package/libgpg-error/Config.in
index 44e9d67aaf..03157dd9fe 100644
--- a/package/libgpg-error/Config.in
+++ b/package/libgpg-error/Config.in
@@ -2,14 +2,19 @@ config BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS
 	bool
 	# see src/syscfg/
 	default y if \
-		BR2_aarch64	|| BR2_aarch64_eb	|| BR2_arm	|| \
-		BR2_armeb	|| BR2_i386		|| BR2_mips	|| \
-		BR2_mipsel	|| BR2_mips64		|| BR2_mips64el	|| \
-		BR2_m68k	|| BR2_nios2		|| BR2_powerpc	|| \
-		BR2_powerpc64 	|| BR2_powerpc64le 	|| BR2_RISCV_64	|| \
-		BR2_RISCV_32	|| BR2_s390x		|| BR2_sh4	|| \
-		BR2_sh4eb	|| BR2_sh4a		|| BR2_sh4aeb	|| \
-		BR2_sparc	|| BR2_sparc64		|| BR2_x86_64
+		BR2_aarch64	|| BR2_aarch64_eb	|| \
+		BR2_arm		|| BR2_armeb		|| \
+		BR2_i386	|| BR2_mips		|| \
+		BR2_mipsel	|| BR2_mips64		|| \
+		BR2_mips64el	|| BR2_m68k		|| \
+		BR2_nios2	|| BR2_or1k		|| \
+		BR2_powerpc	|| BR2_powerpc64 	|| \
+		BR2_powerpc64le	|| BR2_RISCV_64		|| \
+		BR2_RISCV_32	|| BR2_s390x		|| \
+		BR2_sh4		|| BR2_sh4eb		|| \
+		BR2_sh4a	|| BR2_sh4aeb		|| \
+		BR2_sparc	|| BR2_sparc64		|| \
+		BR2_x86_64
 
 config BR2_PACKAGE_LIBGPG_ERROR
 	bool "libgpg-error"
@@ -36,6 +41,8 @@ config BR2_PACKAGE_LIBGPG_ERROR_SYSCFG
 		if BR2_m68k
 	default "nios2-unknown-linux-gnu" \
 		if BR2_nios2
+	default "or1k-unknown-linux-gnu" \
+		if BR2_or1k
 	default "powerpc-unknown-linux-gnu" \
 		if BR2_powerpc
 	default "powerpc64-unknown-linux-gnu" \
-- 
2.34.1

_______________________________________________
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] package/libgpg-error: add or1k support
  2022-02-01 22:06 [Buildroot] [PATCH 1/1] package/libgpg-error: add or1k support Fabrice Fontaine
@ 2022-02-01 22:12 ` Giulio Benetti
  2022-02-05 15:31 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Giulio Benetti @ 2022-02-01 22:12 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

Hi Fabrice,

> Il giorno 1 feb 2022, alle ore 23:08, Fabrice Fontaine <fontaine.fabrice@gmail.com> ha scritto:
> 
> or1k is supported since version 1.18 and
> https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgpg-error.git;a=commit;h=c143fa81462584ad39ea780908266bce3fb9a49e
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

The or1k revenge :-)

Reviewed-by: Giulio Benetti <giulio.benetti@benettiengineering.com>

Best regards
Giulio

> ---
> package/libgpg-error/Config.in | 23 +++++++++++++++--------
> 1 file changed, 15 insertions(+), 8 deletions(-)
> 
> diff --git a/package/libgpg-error/Config.in b/package/libgpg-error/Config.in
> index 44e9d67aaf..03157dd9fe 100644
> --- a/package/libgpg-error/Config.in
> +++ b/package/libgpg-error/Config.in
> @@ -2,14 +2,19 @@ config BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS
>    bool
>    # see src/syscfg/
>    default y if \
> -        BR2_aarch64    || BR2_aarch64_eb    || BR2_arm    || \
> -        BR2_armeb    || BR2_i386        || BR2_mips    || \
> -        BR2_mipsel    || BR2_mips64        || BR2_mips64el    || \
> -        BR2_m68k    || BR2_nios2        || BR2_powerpc    || \
> -        BR2_powerpc64    || BR2_powerpc64le    || BR2_RISCV_64    || \
> -        BR2_RISCV_32    || BR2_s390x        || BR2_sh4    || \
> -        BR2_sh4eb    || BR2_sh4a        || BR2_sh4aeb    || \
> -        BR2_sparc    || BR2_sparc64        || BR2_x86_64
> +        BR2_aarch64    || BR2_aarch64_eb    || \
> +        BR2_arm        || BR2_armeb        || \
> +        BR2_i386    || BR2_mips        || \
> +        BR2_mipsel    || BR2_mips64        || \
> +        BR2_mips64el    || BR2_m68k        || \
> +        BR2_nios2    || BR2_or1k        || \
> +        BR2_powerpc    || BR2_powerpc64    || \
> +        BR2_powerpc64le    || BR2_RISCV_64        || \
> +        BR2_RISCV_32    || BR2_s390x        || \
> +        BR2_sh4        || BR2_sh4eb        || \
> +        BR2_sh4a    || BR2_sh4aeb        || \
> +        BR2_sparc    || BR2_sparc64        || \
> +        BR2_x86_64
> 
> config BR2_PACKAGE_LIBGPG_ERROR
>    bool "libgpg-error"
> @@ -36,6 +41,8 @@ config BR2_PACKAGE_LIBGPG_ERROR_SYSCFG
>        if BR2_m68k
>    default "nios2-unknown-linux-gnu" \
>        if BR2_nios2
> +    default "or1k-unknown-linux-gnu" \
> +        if BR2_or1k
>    default "powerpc-unknown-linux-gnu" \
>        if BR2_powerpc
>    default "powerpc64-unknown-linux-gnu" \
> -- 
> 2.34.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

_______________________________________________
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] package/libgpg-error: add or1k support
  2022-02-01 22:06 [Buildroot] [PATCH 1/1] package/libgpg-error: add or1k support Fabrice Fontaine
  2022-02-01 22:12 ` Giulio Benetti
@ 2022-02-05 15:31 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2022-02-05 15:31 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > or1k is supported since version 1.18 and
 > https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgpg-error.git;a=commit;h=c143fa81462584ad39ea780908266bce3fb9a49e

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed, 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:[~2022-02-05 15:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-01 22:06 [Buildroot] [PATCH 1/1] package/libgpg-error: add or1k support Fabrice Fontaine
2022-02-01 22:12 ` Giulio Benetti
2022-02-05 15:31 ` 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.