* [RFC PATCH 0/2] Add initial support for Debian 14 @ 2026-03-31 9:09 'Quirin Gylstorff' via isar-users 2026-03-31 9:09 ` [RFC PATCH 1/2] Add Debian 14 (Forky) option 'Quirin Gylstorff' via isar-users 2026-03-31 9:09 ` [RFC PATCH 2/2] Use virtual package dcpd-client in Debian 14(Forky) 'Quirin Gylstorff' via isar-users 0 siblings, 2 replies; 7+ messages in thread From: 'Quirin Gylstorff' via isar-users @ 2026-03-31 9:09 UTC (permalink / raw) To: isar-users From: Quirin Gylstorff <quirin.gylstorff@siemens.com> This adds the necessary files to add Debian 14 to ISAR. As Debian 14 As around one year away we should start testing to ensure contining support. Quirin Gylstorff (2): Add Debian 14 (Forky) option Use virtual package dcpd-client in Debian 14(Forky) kas/distro/Kconfig | 8 ++++++++ kas/distro/debian-forky.yaml | 7 +++++++ kas/package/Kconfig | 3 ++- meta/conf/distro/debian-forky.conf | 21 +++++++++++++++++++++ meta/conf/distro/debian-forky.list | 8 ++++++++ 5 files changed, 46 insertions(+), 1 deletion(-) create mode 100644 kas/distro/debian-forky.yaml create mode 100644 meta/conf/distro/debian-forky.conf create mode 100644 meta/conf/distro/debian-forky.list -- 2.53.0 -- 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 visit https://groups.google.com/d/msgid/isar-users/20260331091019.173688-1-Quirin.Gylstorff%40siemens.com. ^ permalink raw reply [flat|nested] 7+ messages in thread
* [RFC PATCH 1/2] Add Debian 14 (Forky) option 2026-03-31 9:09 [RFC PATCH 0/2] Add initial support for Debian 14 'Quirin Gylstorff' via isar-users @ 2026-03-31 9:09 ` 'Quirin Gylstorff' via isar-users 2026-03-31 13:16 ` 'MOESSBAUER, Felix' via isar-users 2026-03-31 9:09 ` [RFC PATCH 2/2] Use virtual package dcpd-client in Debian 14(Forky) 'Quirin Gylstorff' via isar-users 1 sibling, 1 reply; 7+ messages in thread From: 'Quirin Gylstorff' via isar-users @ 2026-03-31 9:09 UTC (permalink / raw) To: isar-users From: Quirin Gylstorff <quirin.gylstorff@siemens.com> This adds debian 14(Forky) as distro option to Isar. Signed-off-by: Quirin Gylstorff <quirin.gylstorff@siemens.com> --- kas/distro/Kconfig | 8 ++++++++ kas/distro/debian-forky.yaml | 7 +++++++ meta/conf/distro/debian-forky.conf | 21 +++++++++++++++++++++ meta/conf/distro/debian-forky.list | 8 ++++++++ 4 files changed, 44 insertions(+) create mode 100644 kas/distro/debian-forky.yaml create mode 100644 meta/conf/distro/debian-forky.conf create mode 100644 meta/conf/distro/debian-forky.list diff --git a/kas/distro/Kconfig b/kas/distro/Kconfig index 879446a3..e819ab70 100644 --- a/kas/distro/Kconfig +++ b/kas/distro/Kconfig @@ -29,6 +29,9 @@ config CODENAME_BOOKWORM config CODENAME_TRIXIE bool +config CODENAME_FORKY + bool + config CODENAME_SID bool @@ -61,6 +64,10 @@ config DEBIAN_TRIXIE bool "Debian 13 (trixie)" depends on (DISTRO_DEBIAN && CODENAME_TRIXIE) || ANY_MACHINE_DISTRO +config DEBIAN_FORKY + bool "Debian 14 (forky)" + depends on (DISTRO_DEBIAN && CODENAME_FORKY) || ANY_MACHINE_DISTRO + config DEBIAN_SID bool "Debian Sid (unstable)" depends on (DISTRO_DEBIAN && CODENAME_SID) || ANY_MACHINE_DISTRO @@ -100,6 +107,7 @@ config KAS_INCLUDE_DISTRO default "kas/distro/debian-bullseye.yaml" if DEBIAN_BULLSEYE default "kas/distro/debian-bookworm.yaml" if DEBIAN_BOOKWORM default "kas/distro/debian-trixie.yaml" if DEBIAN_TRIXIE + default "kas/distro/debian-forky.yaml" if DEBIAN_FORKY default "kas/distro/debian-sid.yaml" if DEBIAN_SID default "kas/distro/raspios-bullseye.yaml" if RASPIOS_BULLSEYE default "kas/distro/raspios-bookworm.yaml" if RASPIOS_BOOKWORM diff --git a/kas/distro/debian-forky.yaml b/kas/distro/debian-forky.yaml new file mode 100644 index 00000000..282aaf46 --- /dev/null +++ b/kas/distro/debian-forky.yaml @@ -0,0 +1,7 @@ +# This software is a part of ISAR. +# Copyright (C) 2023 ilbers GmbH + +header: + version: 14 + +distro: debian-forky diff --git a/meta/conf/distro/debian-forky.conf b/meta/conf/distro/debian-forky.conf new file mode 100644 index 00000000..c1d8277e --- /dev/null +++ b/meta/conf/distro/debian-forky.conf @@ -0,0 +1,21 @@ +# This software is a part of Isar. +# Copyright (C) 2024 ilbers GmbH +# +# SPDX-License-Identifier: MIT + +require debian-common.conf + +BASE_DISTRO_CODENAME = "forky" + +HOST_DISTRO ?= "debian-${BASE_DISTRO_CODENAME}" + +DISTRO_CONFIG_SCRIPT ?= "debian-configscript.sh" +DISTRO_KERNELS ?= "5kc-malta amd64 arm64 armmp armmp-lpae cloud-amd64 \ + cloud-arm64 loongson-3 mips64r2el mips64r6el octeon powerpc64le \ + powerpc64le-64k riscv64 rpi rt-amd64 rt-arm64 rt-armmp s390x" + +DISTRO_GCC = "15" + +DEBIAN_COMPAT = "13" + +DEBIAN_STANDARDS_VERSION ?= "4.7.2" diff --git a/meta/conf/distro/debian-forky.list b/meta/conf/distro/debian-forky.list new file mode 100644 index 00000000..fe80ba5f --- /dev/null +++ b/meta/conf/distro/debian-forky.list @@ -0,0 +1,8 @@ +deb http://deb.debian.org/debian forky main contrib non-free-firmware non-free +deb-src http://deb.debian.org/debian forky main contrib non-free-firmware non-free + +deb http://deb.debian.org/debian-security forky-security main contrib non-free-firmware non-free +deb-src http://deb.debian.org/debian-security forky-security main contrib non-free-firmware non-free + +deb http://deb.debian.org/debian forky-updates main contrib non-free-firmware non-free +deb-src http://deb.debian.org/debian forky-updates main contrib non-free-firmware non-free -- 2.53.0 -- 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 visit https://groups.google.com/d/msgid/isar-users/20260331091019.173688-2-Quirin.Gylstorff%40siemens.com. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [RFC PATCH 1/2] Add Debian 14 (Forky) option 2026-03-31 9:09 ` [RFC PATCH 1/2] Add Debian 14 (Forky) option 'Quirin Gylstorff' via isar-users @ 2026-03-31 13:16 ` 'MOESSBAUER, Felix' via isar-users 2026-04-01 15:15 ` 'Quirin Gylstorff' via isar-users 0 siblings, 1 reply; 7+ messages in thread From: 'MOESSBAUER, Felix' via isar-users @ 2026-03-31 13:16 UTC (permalink / raw) To: Gylstorff, Quirin, isar-users On Tue, 2026-03-31 at 11:09 +0200, 'Quirin Gylstorff' via isar-users wrote: > From: Quirin Gylstorff <quirin.gylstorff@siemens.com> > > This adds debian 14(Forky) as distro option to Isar. > > Signed-off-by: Quirin Gylstorff <quirin.gylstorff@siemens.com> > --- > kas/distro/Kconfig | 8 ++++++++ > kas/distro/debian-forky.yaml | 7 +++++++ > meta/conf/distro/debian-forky.conf | 21 +++++++++++++++++++++ > meta/conf/distro/debian-forky.list | 8 ++++++++ > 4 files changed, 44 insertions(+) > create mode 100644 kas/distro/debian-forky.yaml > create mode 100644 meta/conf/distro/debian-forky.conf > create mode 100644 meta/conf/distro/debian-forky.list > > diff --git a/kas/distro/Kconfig b/kas/distro/Kconfig > index 879446a3..e819ab70 100644 > --- a/kas/distro/Kconfig > +++ b/kas/distro/Kconfig > @@ -29,6 +29,9 @@ config CODENAME_BOOKWORM > config CODENAME_TRIXIE > bool > > +config CODENAME_FORKY > + bool > + > config CODENAME_SID > bool > > @@ -61,6 +64,10 @@ config DEBIAN_TRIXIE > bool "Debian 13 (trixie)" > depends on (DISTRO_DEBIAN && CODENAME_TRIXIE) || ANY_MACHINE_DISTRO > > +config DEBIAN_FORKY > + bool "Debian 14 (forky)" > + depends on (DISTRO_DEBIAN && CODENAME_FORKY) || ANY_MACHINE_DISTRO > + > config DEBIAN_SID > bool "Debian Sid (unstable)" > depends on (DISTRO_DEBIAN && CODENAME_SID) || ANY_MACHINE_DISTRO > @@ -100,6 +107,7 @@ config KAS_INCLUDE_DISTRO > default "kas/distro/debian-bullseye.yaml" if DEBIAN_BULLSEYE > default "kas/distro/debian-bookworm.yaml" if DEBIAN_BOOKWORM > default "kas/distro/debian-trixie.yaml" if DEBIAN_TRIXIE > + default "kas/distro/debian-forky.yaml" if DEBIAN_FORKY > default "kas/distro/debian-sid.yaml" if DEBIAN_SID > default "kas/distro/raspios-bullseye.yaml" if RASPIOS_BULLSEYE > default "kas/distro/raspios-bookworm.yaml" if RASPIOS_BOOKWORM > diff --git a/kas/distro/debian-forky.yaml b/kas/distro/debian-forky.yaml > new file mode 100644 > index 00000000..282aaf46 > --- /dev/null > +++ b/kas/distro/debian-forky.yaml > @@ -0,0 +1,7 @@ > +# This software is a part of ISAR. > +# Copyright (C) 2023 ilbers GmbH > + > +header: > + version: 14 > + > +distro: debian-forky > diff --git a/meta/conf/distro/debian-forky.conf b/meta/conf/distro/debian-forky.conf > new file mode 100644 > index 00000000..c1d8277e > --- /dev/null > +++ b/meta/conf/distro/debian-forky.conf > @@ -0,0 +1,21 @@ > +# This software is a part of Isar. > +# Copyright (C) 2024 ilbers GmbH > +# > +# SPDX-License-Identifier: MIT > + > +require debian-common.conf > + > +BASE_DISTRO_CODENAME = "forky" > + > +HOST_DISTRO ?= "debian-${BASE_DISTRO_CODENAME}" > + > +DISTRO_CONFIG_SCRIPT ?= "debian-configscript.sh" > +DISTRO_KERNELS ?= "5kc-malta amd64 arm64 armmp armmp-lpae cloud-amd64 \ > + cloud-arm64 loongson-3 mips64r2el mips64r6el octeon powerpc64le \ > + powerpc64le-64k riscv64 rpi rt-amd64 rt-arm64 rt-armmp s390x" > + > +DISTRO_GCC = "15" > + > +DEBIAN_COMPAT = "13" > + > +DEBIAN_STANDARDS_VERSION ?= "4.7.2" > diff --git a/meta/conf/distro/debian-forky.list b/meta/conf/distro/debian-forky.list > new file mode 100644 > index 00000000..fe80ba5f > --- /dev/null > +++ b/meta/conf/distro/debian-forky.list > @@ -0,0 +1,8 @@ > +deb http://deb.debian.org/debian forky main contrib non-free-firmware non-free > +deb-src http://deb.debian.org/debian forky main contrib non-free-firmware non-free > + > +deb http://deb.debian.org/debian-security forky-security main contrib non-free-firmware non-free > +deb-src http://deb.debian.org/debian-security forky-security main contrib non-free-firmware non-free > + > +deb http://deb.debian.org/debian forky-updates main contrib non-free-firmware non-free > +deb-src http://deb.debian.org/debian forky-updates main contrib non-free-firmware non-free Hi, do we already know if the pre deb822 format will be supported in Forky? Unfortunately we can't easily switch to deb822 as this needs quite some changes to the sources.list handling in isar. Felix > -- > 2.53.0 > > -- > 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 visit https://groups.google.com/d/msgid/isar-users/20260331091019.173688-2-Quirin.Gylstorff%40siemens.com. -- Siemens AG Linux Expert Center Friedrich-Ludwig-Bauer-Str. 3 85748 Garching, Germany -- 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 visit https://groups.google.com/d/msgid/isar-users/1fc3550c668ee052d8b12e2686cb62c874a09351.camel%40siemens.com. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [RFC PATCH 1/2] Add Debian 14 (Forky) option 2026-03-31 13:16 ` 'MOESSBAUER, Felix' via isar-users @ 2026-04-01 15:15 ` 'Quirin Gylstorff' via isar-users 0 siblings, 0 replies; 7+ messages in thread From: 'Quirin Gylstorff' via isar-users @ 2026-04-01 15:15 UTC (permalink / raw) To: Moessbauer, Felix (FT RPD CED OES-DE), isar-users On 3/31/26 3:16 PM, Moessbauer, Felix (FT RPD CED OES-DE) wrote: > On Tue, 2026-03-31 at 11:09 +0200, 'Quirin Gylstorff' via isar-users > wrote: >> From: Quirin Gylstorff <quirin.gylstorff@siemens.com> >> >> This adds debian 14(Forky) as distro option to Isar. >> >> Signed-off-by: Quirin Gylstorff <quirin.gylstorff@siemens.com> >> --- >> kas/distro/Kconfig | 8 ++++++++ >> kas/distro/debian-forky.yaml | 7 +++++++ >> meta/conf/distro/debian-forky.conf | 21 +++++++++++++++++++++ >> meta/conf/distro/debian-forky.list | 8 ++++++++ >> 4 files changed, 44 insertions(+) >> create mode 100644 kas/distro/debian-forky.yaml >> create mode 100644 meta/conf/distro/debian-forky.conf >> create mode 100644 meta/conf/distro/debian-forky.list >> >> diff --git a/kas/distro/Kconfig b/kas/distro/Kconfig >> index 879446a3..e819ab70 100644 >> --- a/kas/distro/Kconfig >> +++ b/kas/distro/Kconfig >> @@ -29,6 +29,9 @@ config CODENAME_BOOKWORM >> config CODENAME_TRIXIE >> bool >> >> +config CODENAME_FORKY >> + bool >> + >> config CODENAME_SID >> bool >> >> @@ -61,6 +64,10 @@ config DEBIAN_TRIXIE >> bool "Debian 13 (trixie)" >> depends on (DISTRO_DEBIAN && CODENAME_TRIXIE) || ANY_MACHINE_DISTRO >> >> +config DEBIAN_FORKY >> + bool "Debian 14 (forky)" >> + depends on (DISTRO_DEBIAN && CODENAME_FORKY) || ANY_MACHINE_DISTRO >> + >> config DEBIAN_SID >> bool "Debian Sid (unstable)" >> depends on (DISTRO_DEBIAN && CODENAME_SID) || ANY_MACHINE_DISTRO >> @@ -100,6 +107,7 @@ config KAS_INCLUDE_DISTRO >> default "kas/distro/debian-bullseye.yaml" if DEBIAN_BULLSEYE >> default "kas/distro/debian-bookworm.yaml" if DEBIAN_BOOKWORM >> default "kas/distro/debian-trixie.yaml" if DEBIAN_TRIXIE >> + default "kas/distro/debian-forky.yaml" if DEBIAN_FORKY >> default "kas/distro/debian-sid.yaml" if DEBIAN_SID >> default "kas/distro/raspios-bullseye.yaml" if RASPIOS_BULLSEYE >> default "kas/distro/raspios-bookworm.yaml" if RASPIOS_BOOKWORM >> diff --git a/kas/distro/debian-forky.yaml b/kas/distro/debian-forky.yaml >> new file mode 100644 >> index 00000000..282aaf46 >> --- /dev/null >> +++ b/kas/distro/debian-forky.yaml >> @@ -0,0 +1,7 @@ >> +# This software is a part of ISAR. >> +# Copyright (C) 2023 ilbers GmbH >> + >> +header: >> + version: 14 >> + >> +distro: debian-forky >> diff --git a/meta/conf/distro/debian-forky.conf b/meta/conf/distro/debian-forky.conf >> new file mode 100644 >> index 00000000..c1d8277e >> --- /dev/null >> +++ b/meta/conf/distro/debian-forky.conf >> @@ -0,0 +1,21 @@ >> +# This software is a part of Isar. >> +# Copyright (C) 2024 ilbers GmbH >> +# >> +# SPDX-License-Identifier: MIT >> + >> +require debian-common.conf >> + >> +BASE_DISTRO_CODENAME = "forky" >> + >> +HOST_DISTRO ?= "debian-${BASE_DISTRO_CODENAME}" >> + >> +DISTRO_CONFIG_SCRIPT ?= "debian-configscript.sh" >> +DISTRO_KERNELS ?= "5kc-malta amd64 arm64 armmp armmp-lpae cloud-amd64 \ >> + cloud-arm64 loongson-3 mips64r2el mips64r6el octeon powerpc64le \ >> + powerpc64le-64k riscv64 rpi rt-amd64 rt-arm64 rt-armmp s390x" >> + >> +DISTRO_GCC = "15" >> + >> +DEBIAN_COMPAT = "13" >> + >> +DEBIAN_STANDARDS_VERSION ?= "4.7.2" >> diff --git a/meta/conf/distro/debian-forky.list b/meta/conf/distro/debian-forky.list >> new file mode 100644 >> index 00000000..fe80ba5f >> --- /dev/null >> +++ b/meta/conf/distro/debian-forky.list >> @@ -0,0 +1,8 @@ >> +deb http://deb.debian.org/debian forky main contrib non-free-firmware non-free >> +deb-src http://deb.debian.org/debian forky main contrib non-free-firmware non-free >> + >> +deb http://deb.debian.org/debian-security forky-security main contrib non-free-firmware non-free >> +deb-src http://deb.debian.org/debian-security forky-security main contrib non-free-firmware non-free >> + >> +deb http://deb.debian.org/debian forky-updates main contrib non-free-firmware non-free >> +deb-src http://deb.debian.org/debian forky-updates main contrib non-free-firmware non-free > > Hi, > > do we already know if the pre deb822 format will be supported in Forky? > At this point in time I would say yes. > Unfortunately we can't easily switch to deb822 as this needs quite some > changes to the sources.list handling in isar. Hi, the issue is much deeper - the default(no extra config) of mmdepstrap ( mmdebstrap sid test-sid.tar.zst) is still pre deb822 format. It supports the new format. debootstrap (sudo debootstrap sid test-sid http://deb.debian.org/debian ) also uses by default the pre-822 format (https://salsa.debian.org/installer-team/debootstrap/-/blob/master/functions?ref_type=heads#L1196). Quirin > > Felix > >> -- >> 2.53.0 >> >> -- >> 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 visit https://groups.google.com/d/msgid/isar-users/20260331091019.173688-2-Quirin.Gylstorff%40siemens.com. > -- 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 visit https://groups.google.com/d/msgid/isar-users/ac05841a-4143-4812-8463-aa9fcda688d9%40siemens.com. ^ permalink raw reply [flat|nested] 7+ messages in thread
* [RFC PATCH 2/2] Use virtual package dcpd-client in Debian 14(Forky) 2026-03-31 9:09 [RFC PATCH 0/2] Add initial support for Debian 14 'Quirin Gylstorff' via isar-users 2026-03-31 9:09 ` [RFC PATCH 1/2] Add Debian 14 (Forky) option 'Quirin Gylstorff' via isar-users @ 2026-03-31 9:09 ` 'Quirin Gylstorff' via isar-users 2026-03-31 13:14 ` 'MOESSBAUER, Felix' via isar-users 1 sibling, 1 reply; 7+ messages in thread From: 'Quirin Gylstorff' via isar-users @ 2026-03-31 9:09 UTC (permalink / raw) To: isar-users From: Quirin Gylstorff <quirin.gylstorff@siemens.com> isc-dhcp-client is deprecated and no longer part of Debian 14. Signed-off-by: Quirin Gylstorff <quirin.gylstorff@siemens.com> --- kas/package/Kconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kas/package/Kconfig b/kas/package/Kconfig index d279e7e6..527aec0f 100644 --- a/kas/package/Kconfig +++ b/kas/package/Kconfig @@ -176,7 +176,8 @@ endmenu config KAS_IMAGE_PREINSTALL string "Distro packages" - default "fdisk iproute2 iputils-ping isc-dhcp-client" + default "fdisk iproute2 iputils-ping isc-dhcp-client" if DEBIAN_BULLSEYE || DEBIAN_BOOKWORM || DEBIAN_TRIXIE || UBUNTU_JAMMY || UBUNTU_NOBLE + default "fdisk iproute2 iputils-ping dhcp-client" if DEBIAN_FORKY help Space-separated list of packages that are provided by the selected distro. These packages are downloaded from distro mirrors and just unpacked -- 2.53.0 -- 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 visit https://groups.google.com/d/msgid/isar-users/20260331091019.173688-3-Quirin.Gylstorff%40siemens.com. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [RFC PATCH 2/2] Use virtual package dcpd-client in Debian 14(Forky) 2026-03-31 9:09 ` [RFC PATCH 2/2] Use virtual package dcpd-client in Debian 14(Forky) 'Quirin Gylstorff' via isar-users @ 2026-03-31 13:14 ` 'MOESSBAUER, Felix' via isar-users 2026-04-01 15:16 ` 'Quirin Gylstorff' via isar-users 0 siblings, 1 reply; 7+ messages in thread From: 'MOESSBAUER, Felix' via isar-users @ 2026-03-31 13:14 UTC (permalink / raw) To: Gylstorff, Quirin, isar-users On Tue, 2026-03-31 at 11:09 +0200, 'Quirin Gylstorff' via isar-users wrote: > From: Quirin Gylstorff <quirin.gylstorff@siemens.com> > > isc-dhcp-client is deprecated and no longer part of Debian 14. Hi, you got a typo in your commit header: The package is called dcpd- client, not dcpd-client :) Felix > > Signed-off-by: Quirin Gylstorff <quirin.gylstorff@siemens.com> > --- > kas/package/Kconfig | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/kas/package/Kconfig b/kas/package/Kconfig > index d279e7e6..527aec0f 100644 > --- a/kas/package/Kconfig > +++ b/kas/package/Kconfig > @@ -176,7 +176,8 @@ endmenu > > config KAS_IMAGE_PREINSTALL > string "Distro packages" > - default "fdisk iproute2 iputils-ping isc-dhcp-client" > + default "fdisk iproute2 iputils-ping isc-dhcp-client" if DEBIAN_BULLSEYE || DEBIAN_BOOKWORM || DEBIAN_TRIXIE || UBUNTU_JAMMY || UBUNTU_NOBLE > + default "fdisk iproute2 iputils-ping dhcp-client" if DEBIAN_FORKY > help > Space-separated list of packages that are provided by the selected distro. > These packages are downloaded from distro mirrors and just unpacked > -- > 2.53.0 > > -- > 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 visit https://groups.google.com/d/msgid/isar-users/20260331091019.173688-3-Quirin.Gylstorff%40siemens.com. -- Siemens AG Linux Expert Center Friedrich-Ludwig-Bauer-Str. 3 85748 Garching, Germany -- 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 visit https://groups.google.com/d/msgid/isar-users/58cedc99466f4995cf90fa4f78cfaa6f8eecab70.camel%40siemens.com. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [RFC PATCH 2/2] Use virtual package dcpd-client in Debian 14(Forky) 2026-03-31 13:14 ` 'MOESSBAUER, Felix' via isar-users @ 2026-04-01 15:16 ` 'Quirin Gylstorff' via isar-users 0 siblings, 0 replies; 7+ messages in thread From: 'Quirin Gylstorff' via isar-users @ 2026-04-01 15:16 UTC (permalink / raw) To: Moessbauer, Felix (FT RPD CED OES-DE), isar-users On 3/31/26 3:14 PM, Moessbauer, Felix (FT RPD CED OES-DE) wrote: > On Tue, 2026-03-31 at 11:09 +0200, 'Quirin Gylstorff' via isar-users > wrote: >> From: Quirin Gylstorff <quirin.gylstorff@siemens.com> >> >> isc-dhcp-client is deprecated and no longer part of Debian 14. > > Hi, you got a typo in your commit header: The package is called dcpd- > client, not dcpd-client :) Ups will send v2. > > Felix > >> >> Signed-off-by: Quirin Gylstorff <quirin.gylstorff@siemens.com> >> --- >> kas/package/Kconfig | 3 ++- >> 1 file changed, 2 insertions(+), 1 deletion(-) >> >> diff --git a/kas/package/Kconfig b/kas/package/Kconfig >> index d279e7e6..527aec0f 100644 >> --- a/kas/package/Kconfig >> +++ b/kas/package/Kconfig >> @@ -176,7 +176,8 @@ endmenu >> >> config KAS_IMAGE_PREINSTALL >> string "Distro packages" >> - default "fdisk iproute2 iputils-ping isc-dhcp-client" >> + default "fdisk iproute2 iputils-ping isc-dhcp-client" if DEBIAN_BULLSEYE || DEBIAN_BOOKWORM || DEBIAN_TRIXIE || UBUNTU_JAMMY || UBUNTU_NOBLE >> + default "fdisk iproute2 iputils-ping dhcp-client" if DEBIAN_FORKY >> help >> Space-separated list of packages that are provided by the selected distro. >> These packages are downloaded from distro mirrors and just unpacked >> -- >> 2.53.0 >> >> -- >> 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 visit https://groups.google.com/d/msgid/isar-users/20260331091019.173688-3-Quirin.Gylstorff%40siemens.com. > -- 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 visit https://groups.google.com/d/msgid/isar-users/f5246132-665f-4389-9b07-b51f32c41b96%40siemens.com. ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-04-01 15:17 UTC | newest] Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2026-03-31 9:09 [RFC PATCH 0/2] Add initial support for Debian 14 'Quirin Gylstorff' via isar-users 2026-03-31 9:09 ` [RFC PATCH 1/2] Add Debian 14 (Forky) option 'Quirin Gylstorff' via isar-users 2026-03-31 13:16 ` 'MOESSBAUER, Felix' via isar-users 2026-04-01 15:15 ` 'Quirin Gylstorff' via isar-users 2026-03-31 9:09 ` [RFC PATCH 2/2] Use virtual package dcpd-client in Debian 14(Forky) 'Quirin Gylstorff' via isar-users 2026-03-31 13:14 ` 'MOESSBAUER, Felix' via isar-users 2026-04-01 15:16 ` 'Quirin Gylstorff' via isar-users
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox