public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
* [PATCH] docker: Take qemu-user-static from stretch for Isar image
@ 2018-02-27  6:57 Jan Kiszka
  2018-03-02 14:30 ` Alexander Smirnov
  2018-03-06  9:23 ` Daniel Wagner
  0 siblings, 2 replies; 4+ messages in thread
From: Jan Kiszka @ 2018-02-27  6:57 UTC (permalink / raw)
  To: kas-devel; +Cc: Henning Schild, isar-users

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

The jessie version easily crashes, e.g. during kernel build over
dpkg-deb.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
 Dockerfile.isar | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Dockerfile.isar b/Dockerfile.isar
index f46c890..14bc2a4 100644
--- a/Dockerfile.isar
+++ b/Dockerfile.isar
@@ -7,12 +7,12 @@ RUN echo 'deb http://deb.debian.org/debian jessie-backports main' >> /etc/apt/so
     apt-get update && \
     apt-get install -y -f --no-install-recommends --target-release jessie \
             autoconf automake gdisk libtool bash-completion \
-            sudo grub2 grub-efi-amd64-bin grub-efi-ia32-bin qemu-user-static \
+            sudo grub2 grub-efi-amd64-bin grub-efi-ia32-bin \
             reprepro python3 binfmt-support && \
     apt-get install -y -f --no-install-recommends --target-release jessie-backports \
             e2fsprogs && \
     apt-get install -y -f --no-install-recommends --target-release stretch \
-            multistrap && \
+            multistrap qemu-user-static && \
     apt-get clean && \
     rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp*
 
-- 
2.13.6

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

* Re: [PATCH] docker: Take qemu-user-static from stretch for Isar image
  2018-02-27  6:57 [PATCH] docker: Take qemu-user-static from stretch for Isar image Jan Kiszka
@ 2018-03-02 14:30 ` Alexander Smirnov
  2018-03-02 14:39   ` Jan Kiszka
  2018-03-06  9:23 ` Daniel Wagner
  1 sibling, 1 reply; 4+ messages in thread
From: Alexander Smirnov @ 2018-03-02 14:30 UTC (permalink / raw)
  To: Jan Kiszka; +Cc: isar-users

On 02/27/2018 09:57 AM, Jan Kiszka wrote:
> From: Jan Kiszka <jan.kiszka@siemens.com>
> 
> The jessie version easily crashes, e.g. during kernel build over
> dpkg-deb.
> 
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
> ---
>   Dockerfile.isar | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/Dockerfile.isar b/Dockerfile.isar
> index f46c890..14bc2a4 100644
> --- a/Dockerfile.isar
> +++ b/Dockerfile.isar

No this file in isar at github, or I'm wrong?

Alex

> @@ -7,12 +7,12 @@ RUN echo 'deb http://deb.debian.org/debian jessie-backports main' >> /etc/apt/so
>       apt-get update && \
>       apt-get install -y -f --no-install-recommends --target-release jessie \
>               autoconf automake gdisk libtool bash-completion \
> -            sudo grub2 grub-efi-amd64-bin grub-efi-ia32-bin qemu-user-static \
> +            sudo grub2 grub-efi-amd64-bin grub-efi-ia32-bin \
>               reprepro python3 binfmt-support && \
>       apt-get install -y -f --no-install-recommends --target-release jessie-backports \
>               e2fsprogs && \
>       apt-get install -y -f --no-install-recommends --target-release stretch \
> -            multistrap && \
> +            multistrap qemu-user-static && \
>       apt-get clean && \
>       rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp*
>   
> 

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

* Re: [PATCH] docker: Take qemu-user-static from stretch for Isar image
  2018-03-02 14:30 ` Alexander Smirnov
@ 2018-03-02 14:39   ` Jan Kiszka
  0 siblings, 0 replies; 4+ messages in thread
From: Jan Kiszka @ 2018-03-02 14:39 UTC (permalink / raw)
  To: Alexander Smirnov; +Cc: isar-users

On 2018-03-02 15:30, Alexander Smirnov wrote:
> On 02/27/2018 09:57 AM, Jan Kiszka wrote:
>> From: Jan Kiszka <jan.kiszka@siemens.com>
>>
>> The jessie version easily crashes, e.g. during kernel build over
>> dpkg-deb.
>>
>> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
>> ---
>>   Dockerfile.isar | 4 ++--
>>   1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/Dockerfile.isar b/Dockerfile.isar
>> index f46c890..14bc2a4 100644
>> --- a/Dockerfile.isar
>> +++ b/Dockerfile.isar
> 
> No this file in isar at github, or I'm wrong?

This is a kas patch, sorry. I cross-posted to document for the Isar
community that there is an issue with jessie's qemu-user-static.

Jan

-- 
Siemens AG, Corporate Technology, CT RDA IOT SES-DE
Corporate Competence Center Embedded Linux

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

* Re: [PATCH] docker: Take qemu-user-static from stretch for Isar image
  2018-02-27  6:57 [PATCH] docker: Take qemu-user-static from stretch for Isar image Jan Kiszka
  2018-03-02 14:30 ` Alexander Smirnov
@ 2018-03-06  9:23 ` Daniel Wagner
  1 sibling, 0 replies; 4+ messages in thread
From: Daniel Wagner @ 2018-03-06  9:23 UTC (permalink / raw)
  To: [ext] Jan Kiszka, kas-devel; +Cc: Henning Schild, isar-users

Hi Jan,
On 02/27/2018 07:57 AM, [ext] Jan Kiszka wrote:
> From: Jan Kiszka <jan.kiszka@siemens.com>
> 
> The jessie version easily crashes, e.g. during kernel build over
> dpkg-deb.

Sorry for the long the delay. Fall through the cracks.

Patch applied on next.

Thanks,
Daniel

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

end of thread, other threads:[~2018-03-06  9:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-27  6:57 [PATCH] docker: Take qemu-user-static from stretch for Isar image Jan Kiszka
2018-03-02 14:30 ` Alexander Smirnov
2018-03-02 14:39   ` Jan Kiszka
2018-03-06  9:23 ` Daniel Wagner

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