All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/botan: fix build with sh4{a, eb, aeb}
@ 2022-09-17 16:16 Fabrice Fontaine
  2022-09-17 19:51 ` Thomas Petazzoni
  2022-09-28 21:04 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2022-09-17 16:16 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

Fix the following build failure with sh4{a,eb,aeb} probably raised since
the addition of the package in commit
e43da7bb32285bbd41b38a379aef77132d149df7:

  ERROR: Unknown or unidentifiable processor "sh4a"

Fixes:
 - http://autobuild.buildroot.org/results/fb6885a8a299f20ed77e4c10b330d2a2a7853931

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 ...01-Add-superh-alias-needed-by-Debian.patch | 22 ++++++++++++++
 ...-data-arch-superh.txt-add-sh4-eb-aeb.patch | 30 +++++++++++++++++++
 2 files changed, 52 insertions(+)
 create mode 100644 package/botan/0001-Add-superh-alias-needed-by-Debian.patch
 create mode 100644 package/botan/0002-src-build-data-arch-superh.txt-add-sh4-eb-aeb.patch

diff --git a/package/botan/0001-Add-superh-alias-needed-by-Debian.patch b/package/botan/0001-Add-superh-alias-needed-by-Debian.patch
new file mode 100644
index 0000000000..c6236849e9
--- /dev/null
+++ b/package/botan/0001-Add-superh-alias-needed-by-Debian.patch
@@ -0,0 +1,22 @@
+From 454c7c04385a47d511cf8999ccff2746afbab06b Mon Sep 17 00:00:00 2001
+From: Jack Lloyd <jack@randombit.net>
+Date: Sat, 21 Nov 2020 12:37:06 -0500
+Subject: [PATCH] Add superh alias needed by Debian
+
+[Retrieved from:
+https://github.com/randombit/botan/commit/454c7c04385a47d511cf8999ccff2746afbab06b]
+Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
+---
+ src/build-data/arch/superh.txt | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/build-data/arch/superh.txt b/src/build-data/arch/superh.txt
+index 6af6dbe682..8e2833a914 100644
+--- a/src/build-data/arch/superh.txt
++++ b/src/build-data/arch/superh.txt
+@@ -1,4 +1,5 @@
+ 
+ <aliases>
+ sh4
++sh4a
+ </aliases>
diff --git a/package/botan/0002-src-build-data-arch-superh.txt-add-sh4-eb-aeb.patch b/package/botan/0002-src-build-data-arch-superh.txt-add-sh4-eb-aeb.patch
new file mode 100644
index 0000000000..aa9f3ad5ba
--- /dev/null
+++ b/package/botan/0002-src-build-data-arch-superh.txt-add-sh4-eb-aeb.patch
@@ -0,0 +1,30 @@
+From c88897ebaf173b97068811b520a4741039f09dcd Mon Sep 17 00:00:00 2001
+From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
+Date: Sat, 20 Aug 2022 15:16:22 +0200
+Subject: [PATCH] src/build-data/arch/superh.txt: add sh4{eb,aeb}
+
+Fix the following build failure with sh4{eb,aeb}:
+
+  ERROR: Unknown or unidentifiable processor "sh4aeb"
+
+Fixes:
+ - http://autobuild.buildroot.org/results/d7750b734736a66e10bc5a8ee06708041b36443a
+
+Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
+[Retrieved from:
+https://github.com/randombit/botan/commit/c88897ebaf173b97068811b520a4741039f09dcd]
+---
+ src/build-data/arch/superh.txt | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/src/build-data/arch/superh.txt b/src/build-data/arch/superh.txt
+index 8e2833a914..e17edb097a 100644
+--- a/src/build-data/arch/superh.txt
++++ b/src/build-data/arch/superh.txt
+@@ -2,4 +2,6 @@
+ <aliases>
+ sh4
+ sh4a
++sh4eb
++sh4aeb
+ </aliases>
-- 
2.35.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/botan: fix build with sh4{a, eb, aeb}
  2022-09-17 16:16 [Buildroot] [PATCH 1/1] package/botan: fix build with sh4{a, eb, aeb} Fabrice Fontaine
@ 2022-09-17 19:51 ` Thomas Petazzoni
  2022-09-28 21:04 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2022-09-17 19:51 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

On Sat, 17 Sep 2022 18:16:50 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Fix the following build failure with sh4{a,eb,aeb} probably raised since
> the addition of the package in commit
> e43da7bb32285bbd41b38a379aef77132d149df7:
> 
>   ERROR: Unknown or unidentifiable processor "sh4a"
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/fb6885a8a299f20ed77e4c10b330d2a2a7853931
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  ...01-Add-superh-alias-needed-by-Debian.patch | 22 ++++++++++++++
>  ...-data-arch-superh.txt-add-sh4-eb-aeb.patch | 30 +++++++++++++++++++
>  2 files changed, 52 insertions(+)
>  create mode 100644 package/botan/0001-Add-superh-alias-needed-by-Debian.patch
>  create mode 100644 package/botan/0002-src-build-data-arch-superh.txt-add-sh4-eb-aeb.patch

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] package/botan: fix build with sh4{a, eb, aeb}
  2022-09-17 16:16 [Buildroot] [PATCH 1/1] package/botan: fix build with sh4{a, eb, aeb} Fabrice Fontaine
  2022-09-17 19:51 ` Thomas Petazzoni
@ 2022-09-28 21:04 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2022-09-28 21:04 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

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

 > Fix the following build failure with sh4{a,eb,aeb} probably raised since
 > the addition of the package in commit
 > e43da7bb32285bbd41b38a379aef77132d149df7:

 >   ERROR: Unknown or unidentifiable processor "sh4a"

 > Fixes:
 >  - http://autobuild.buildroot.org/results/fb6885a8a299f20ed77e4c10b330d2a2a7853931

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

Committed to 2022.02.x, 2022.05.x and 2022.08.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:[~2022-09-28 21:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-17 16:16 [Buildroot] [PATCH 1/1] package/botan: fix build with sh4{a, eb, aeb} Fabrice Fontaine
2022-09-17 19:51 ` Thomas Petazzoni
2022-09-28 21:04 ` 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.