public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
* [PATCH] u-boot: Exclude libubootenv.a from dh_strip
@ 2021-09-08 10:01 Jan Kiszka
  2021-09-08 15:59 ` Tim Orling
  2021-09-17  8:52 ` Anton Mikanovich
  0 siblings, 2 replies; 3+ messages in thread
From: Jan Kiszka @ 2021-09-08 10:01 UTC (permalink / raw)
  To: isar-users

From: Jan Kiszka <jan.kiszka@siemens.com>

With latest U-Boot (2021.10-rcX), this breaks on aarch64 at least with

aarch64-linux-gnu-strip: debian/u-boot-iot2050-dev/usr/lib/libubootenv.a:
sorry: copying thin archives is not currently supported: invalid operation

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
 meta/recipes-bsp/u-boot/files/debian/rules | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-bsp/u-boot/files/debian/rules b/meta/recipes-bsp/u-boot/files/debian/rules
index a5c2cd2..3d66762 100755
--- a/meta/recipes-bsp/u-boot/files/debian/rules
+++ b/meta/recipes-bsp/u-boot/files/debian/rules
@@ -27,5 +27,8 @@ override_dh_auto_install:
 
 override_dh_auto_test:
 
+override_dh_strip:
+	dh_strip -X libubootenv.a
+
 %:
 	dh $@ --parallel
-- 
2.31.1

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

* Re: [PATCH] u-boot: Exclude libubootenv.a from dh_strip
  2021-09-08 10:01 [PATCH] u-boot: Exclude libubootenv.a from dh_strip Jan Kiszka
@ 2021-09-08 15:59 ` Tim Orling
  2021-09-17  8:52 ` Anton Mikanovich
  1 sibling, 0 replies; 3+ messages in thread
From: Tim Orling @ 2021-09-08 15:59 UTC (permalink / raw)
  To: Jan Kiszka; +Cc: isar-users

[-- Attachment #1: Type: text/plain, Size: 1337 bytes --]

On Wed, Sep 8, 2021 at 3:01 AM Jan Kiszka <jan.kiszka@siemens.com> wrote:

> From: Jan Kiszka <jan.kiszka@siemens.com>
>
> With latest U-Boot (2021.10-rcX), this breaks on aarch64 at least with
>

Happens on riscv64 as well.

>
> aarch64-linux-gnu-strip: debian/u-boot-iot2050-dev/usr/lib/libubootenv.a:
> sorry: copying thin archives is not currently supported: invalid operation
>
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
> ---
>  meta/recipes-bsp/u-boot/files/debian/rules | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/meta/recipes-bsp/u-boot/files/debian/rules
> b/meta/recipes-bsp/u-boot/files/debian/rules
> index a5c2cd2..3d66762 100755
> --- a/meta/recipes-bsp/u-boot/files/debian/rules
> +++ b/meta/recipes-bsp/u-boot/files/debian/rules
> @@ -27,5 +27,8 @@ override_dh_auto_install:
>
>  override_dh_auto_test:
>
> +override_dh_strip:
> +       dh_strip -X libubootenv.a
> +
>  %:
>         dh $@ --parallel
> --
> 2.31.1
>
> --
> You received this message because you are subscribed to the Google Groups
> "isar-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to isar-users+unsubscribe@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/isar-users/44392510-df6d-f212-9a8a-42c6ceae1b36%40siemens.com
> .
>

[-- Attachment #2: Type: text/html, Size: 2355 bytes --]

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

* Re: [PATCH] u-boot: Exclude libubootenv.a from dh_strip
  2021-09-08 10:01 [PATCH] u-boot: Exclude libubootenv.a from dh_strip Jan Kiszka
  2021-09-08 15:59 ` Tim Orling
@ 2021-09-17  8:52 ` Anton Mikanovich
  1 sibling, 0 replies; 3+ messages in thread
From: Anton Mikanovich @ 2021-09-17  8:52 UTC (permalink / raw)
  To: Jan Kiszka, isar-users

08.09.2021 13:01, Jan Kiszka wrote:
> From: Jan Kiszka <jan.kiszka@siemens.com>
>
> With latest U-Boot (2021.10-rcX), this breaks on aarch64 at least with
>
> aarch64-linux-gnu-strip: debian/u-boot-iot2050-dev/usr/lib/libubootenv.a:
> sorry: copying thin archives is not currently supported: invalid operation
>
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
> ---
>   meta/recipes-bsp/u-boot/files/debian/rules | 3 +++
>   1 file changed, 3 insertions(+)
>
> diff --git a/meta/recipes-bsp/u-boot/files/debian/rules b/meta/recipes-bsp/u-boot/files/debian/rules
> index a5c2cd2..3d66762 100755
> --- a/meta/recipes-bsp/u-boot/files/debian/rules
> +++ b/meta/recipes-bsp/u-boot/files/debian/rules
> @@ -27,5 +27,8 @@ override_dh_auto_install:
>   
>   override_dh_auto_test:
>   
> +override_dh_strip:
> +	dh_strip -X libubootenv.a
> +
>   %:
>   	dh $@ --parallel

Applied to next, thanks.

-- 
Anton Mikanovich
Promwad Ltd.
External service provider of ilbers GmbH
Maria-Merian-Str. 8
85521 Ottobrunn, Germany
+49 (89) 122 67 24-0
Commercial register Munich, HRB 214197
General Manager: Baurzhan Ismagulov


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

end of thread, other threads:[~2021-09-17  8:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-08 10:01 [PATCH] u-boot: Exclude libubootenv.a from dh_strip Jan Kiszka
2021-09-08 15:59 ` Tim Orling
2021-09-17  8:52 ` Anton Mikanovich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox