public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
* [PATCH] expand-on-first-boot: List fdisk as explicit dependency
@ 2021-01-15 16:53 Jan Kiszka
  2021-01-18 15:40 ` Henning Schild
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Jan Kiszka @ 2021-01-15 16:53 UTC (permalink / raw)
  To: isar-users

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

Needed for bullseye where this dropped from util-linux.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
 .../expand-on-first-boot/expand-on-first-boot_1.1.bb            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb b/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
index 49d6c3bd..1703a648 100644
--- a/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
+++ b/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
@@ -9,7 +9,7 @@ inherit dpkg-raw
 
 DESCRIPTION = "This service grows the last partition to the full medium during first boot"
 
-DEBIAN_DEPENDS = "systemd, sed, grep, coreutils, mount, e2fsprogs, util-linux"
+DEBIAN_DEPENDS = "systemd, sed, grep, coreutils, mount, e2fsprogs, fdisk, util-linux"
 
 SRC_URI = " \
     file://expand-on-first-boot.service \
-- 
2.26.2

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

* Re: [PATCH] expand-on-first-boot: List fdisk as explicit dependency
  2021-01-15 16:53 [PATCH] expand-on-first-boot: List fdisk as explicit dependency Jan Kiszka
@ 2021-01-18 15:40 ` Henning Schild
  2021-01-18 16:14   ` Jan Kiszka
  2021-02-10  9:14 ` Anton Mikanovich
  2022-10-25 15:14 ` Henning Schild
  2 siblings, 1 reply; 7+ messages in thread
From: Henning Schild @ 2021-01-18 15:40 UTC (permalink / raw)
  To: [ext] Jan Kiszka; +Cc: isar-users

Am Fri, 15 Jan 2021 17:53:51 +0100
schrieb "[ext] Jan Kiszka" <jan.kiszka@siemens.com>:

> From: Jan Kiszka <jan.kiszka@siemens.com>
> 
> Needed for bullseye where this dropped from util-linux.

And util-linux remains needed?

Henning

> 
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
> ---
>  .../expand-on-first-boot/expand-on-first-boot_1.1.bb            | 2
> +- 1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git
> a/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
> b/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
> index 49d6c3bd..1703a648 100644 ---
> a/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
> +++
> b/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
> @@ -9,7 +9,7 @@ inherit dpkg-raw DESCRIPTION = "This service grows
> the last partition to the full medium during first boot"
> -DEBIAN_DEPENDS = "systemd, sed, grep, coreutils, mount, e2fsprogs,
> util-linux" +DEBIAN_DEPENDS = "systemd, sed, grep, coreutils, mount,
> e2fsprogs, fdisk, util-linux" SRC_URI = " \
>      file://expand-on-first-boot.service \


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

* Re: [PATCH] expand-on-first-boot: List fdisk as explicit dependency
  2021-01-18 15:40 ` Henning Schild
@ 2021-01-18 16:14   ` Jan Kiszka
  0 siblings, 0 replies; 7+ messages in thread
From: Jan Kiszka @ 2021-01-18 16:14 UTC (permalink / raw)
  To: Henning Schild; +Cc: isar-users

On 18.01.21 16:40, Henning Schild wrote:
> Am Fri, 15 Jan 2021 17:53:51 +0100
> schrieb "[ext] Jan Kiszka" <jan.kiszka@siemens.com>:
> 
>> From: Jan Kiszka <jan.kiszka@siemens.com>
>>
>> Needed for bullseye where this dropped from util-linux.
> 
> And util-linux remains needed?

Yes, for findmnt or partx, possibly more.

Jan

> 
> Henning
> 
>>
>> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
>> ---
>>  .../expand-on-first-boot/expand-on-first-boot_1.1.bb            | 2
>> +- 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git
>> a/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
>> b/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
>> index 49d6c3bd..1703a648 100644 ---
>> a/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
>> +++
>> b/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
>> @@ -9,7 +9,7 @@ inherit dpkg-raw DESCRIPTION = "This service grows
>> the last partition to the full medium during first boot"
>> -DEBIAN_DEPENDS = "systemd, sed, grep, coreutils, mount, e2fsprogs,
>> util-linux" +DEBIAN_DEPENDS = "systemd, sed, grep, coreutils, mount,
>> e2fsprogs, fdisk, util-linux" SRC_URI = " \
>>      file://expand-on-first-boot.service \
> 

-- 
Siemens AG, T RDA IOT
Corporate Competence Center Embedded Linux

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

* Re: [PATCH] expand-on-first-boot: List fdisk as explicit dependency
  2021-01-15 16:53 [PATCH] expand-on-first-boot: List fdisk as explicit dependency Jan Kiszka
  2021-01-18 15:40 ` Henning Schild
@ 2021-02-10  9:14 ` Anton Mikanovich
  2022-10-25 15:14 ` Henning Schild
  2 siblings, 0 replies; 7+ messages in thread
From: Anton Mikanovich @ 2021-02-10  9:14 UTC (permalink / raw)
  To: Jan Kiszka, isar-users

15.01.2021 19:53, Jan Kiszka wrote:
> From: Jan Kiszka <jan.kiszka@siemens.com>
>
> Needed for bullseye where this dropped from util-linux.
>
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>

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] 7+ messages in thread

* Re: [PATCH] expand-on-first-boot: List fdisk as explicit dependency
  2021-01-15 16:53 [PATCH] expand-on-first-boot: List fdisk as explicit dependency Jan Kiszka
  2021-01-18 15:40 ` Henning Schild
  2021-02-10  9:14 ` Anton Mikanovich
@ 2022-10-25 15:14 ` Henning Schild
  2022-10-25 18:21   ` Jan Kiszka
  2 siblings, 1 reply; 7+ messages in thread
From: Henning Schild @ 2022-10-25 15:14 UTC (permalink / raw)
  To: [ext] Jan Kiszka; +Cc: isar-users

This breaks stretch since sfdisk is part of the package util-linux
there and there is not package called fdisk.

Henning

Am Fri, 15 Jan 2021 17:53:51 +0100
schrieb "[ext] Jan Kiszka" <jan.kiszka@siemens.com>:

> From: Jan Kiszka <jan.kiszka@siemens.com>
> 
> Needed for bullseye where this dropped from util-linux.
> 
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
> ---
>  .../expand-on-first-boot/expand-on-first-boot_1.1.bb            | 2
> +- 1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git
> a/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
> b/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
> index 49d6c3bd..1703a648 100644 ---
> a/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
> +++
> b/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
> @@ -9,7 +9,7 @@ inherit dpkg-raw DESCRIPTION = "This service grows
> the last partition to the full medium during first boot"
> -DEBIAN_DEPENDS = "systemd, sed, grep, coreutils, mount, e2fsprogs,
> util-linux" +DEBIAN_DEPENDS = "systemd, sed, grep, coreutils, mount,
> e2fsprogs, fdisk, util-linux" SRC_URI = " \
>      file://expand-on-first-boot.service \


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

* Re: [PATCH] expand-on-first-boot: List fdisk as explicit dependency
  2022-10-25 15:14 ` Henning Schild
@ 2022-10-25 18:21   ` Jan Kiszka
  2022-10-26  7:58     ` Henning Schild
  0 siblings, 1 reply; 7+ messages in thread
From: Jan Kiszka @ 2022-10-25 18:21 UTC (permalink / raw)
  To: Henning Schild; +Cc: isar-users

On 25.10.22 17:14, Henning Schild wrote:
> This breaks stretch since sfdisk is part of the package util-linux
> there and there is not package called fdisk.
> 

If that was only noticed now, I suppose we are overdue with officially
dropping stretch. It's not tested anywhere broadly (or at all) anymore.

Jan

> Henning
> 
> Am Fri, 15 Jan 2021 17:53:51 +0100
> schrieb "[ext] Jan Kiszka" <jan.kiszka@siemens.com>:
> 
>> From: Jan Kiszka <jan.kiszka@siemens.com>
>>
>> Needed for bullseye where this dropped from util-linux.
>>
>> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
>> ---
>>  .../expand-on-first-boot/expand-on-first-boot_1.1.bb            | 2
>> +- 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git
>> a/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
>> b/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
>> index 49d6c3bd..1703a648 100644 ---
>> a/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
>> +++
>> b/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
>> @@ -9,7 +9,7 @@ inherit dpkg-raw DESCRIPTION = "This service grows
>> the last partition to the full medium during first boot"
>> -DEBIAN_DEPENDS = "systemd, sed, grep, coreutils, mount, e2fsprogs,
>> util-linux" +DEBIAN_DEPENDS = "systemd, sed, grep, coreutils, mount,
>> e2fsprogs, fdisk, util-linux" SRC_URI = " \
>>      file://expand-on-first-boot.service \
> 

-- 
Siemens AG, Technology
Competence Center Embedded Linux


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

* Re: [PATCH] expand-on-first-boot: List fdisk as explicit dependency
  2022-10-25 18:21   ` Jan Kiszka
@ 2022-10-26  7:58     ` Henning Schild
  0 siblings, 0 replies; 7+ messages in thread
From: Henning Schild @ 2022-10-26  7:58 UTC (permalink / raw)
  To: Jan Kiszka; +Cc: isar-users

Am Tue, 25 Oct 2022 20:21:51 +0200
schrieb Jan Kiszka <jan.kiszka@siemens.com>:

> On 25.10.22 17:14, Henning Schild wrote:
> > This breaks stretch since sfdisk is part of the package util-linux
> > there and there is not package called fdisk.
> >   
> 
> If that was only noticed now, I suppose we are overdue with officially
> dropping stretch. It's not tested anywhere broadly (or at all)
> anymore.

I have a patch for that ready. And we can merge that while we still
have stretch. But i also agree that we can probably drop that distro,
not sure why Isar still has it.

Henning

> Jan
> 
> > Henning
> > 
> > Am Fri, 15 Jan 2021 17:53:51 +0100
> > schrieb "[ext] Jan Kiszka" <jan.kiszka@siemens.com>:
> >   
> >> From: Jan Kiszka <jan.kiszka@siemens.com>
> >>
> >> Needed for bullseye where this dropped from util-linux.
> >>
> >> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
> >> ---
> >>  .../expand-on-first-boot/expand-on-first-boot_1.1.bb            |
> >> 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
> >>
> >> diff --git
> >> a/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
> >> b/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
> >> index 49d6c3bd..1703a648 100644 ---
> >> a/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
> >> +++
> >> b/meta/recipes-support/expand-on-first-boot/expand-on-first-boot_1.1.bb
> >> @@ -9,7 +9,7 @@ inherit dpkg-raw DESCRIPTION = "This service grows
> >> the last partition to the full medium during first boot"
> >> -DEBIAN_DEPENDS = "systemd, sed, grep, coreutils, mount, e2fsprogs,
> >> util-linux" +DEBIAN_DEPENDS = "systemd, sed, grep, coreutils,
> >> mount, e2fsprogs, fdisk, util-linux" SRC_URI = " \
> >>      file://expand-on-first-boot.service \  
> >   
> 


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

end of thread, other threads:[~2022-10-26  7:58 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-15 16:53 [PATCH] expand-on-first-boot: List fdisk as explicit dependency Jan Kiszka
2021-01-18 15:40 ` Henning Schild
2021-01-18 16:14   ` Jan Kiszka
2021-02-10  9:14 ` Anton Mikanovich
2022-10-25 15:14 ` Henning Schild
2022-10-25 18:21   ` Jan Kiszka
2022-10-26  7:58     ` Henning Schild

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