public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
From: Anton Mikanovich <amikan@ilbers.de>
To: isar-users@googlegroups.com,
	Gylstorff Quirin <quirin.gylstorff@siemens.com>
Subject: Re: [PATCH v2 1/2] Add Debian 14 (Forky) option
Date: Thu, 16 Apr 2026 16:14:58 +0300	[thread overview]
Message-ID: <08323132-fd9b-4665-af19-bd47729e5faf@ilbers.de> (raw)
In-Reply-To: <20260402074437.927082-2-Quirin.Gylstorff@siemens.com>

02.04.2026 10:43, '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
2026 maybe?
It will be also good to add SPDX-License-Identifier.
> +
> +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
The same here.
> +#
> +# 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

-- 
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/08323132-fd9b-4665-af19-bd47729e5faf%40ilbers.de.

  reply	other threads:[~2026-04-16 13:15 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-02  7:43 [PATCH v2 0/2] Add initial support for Debian 14 'Quirin Gylstorff' via isar-users
2026-04-02  7:43 ` [PATCH v2 1/2] Add Debian 14 (Forky) option 'Quirin Gylstorff' via isar-users
2026-04-16 13:14   ` Anton Mikanovich [this message]
2026-04-02  7:43 ` [PATCH v2 2/2] Use virtual package dhcp-client in Debian 14(Forky) 'Quirin Gylstorff' via isar-users

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=08323132-fd9b-4665-af19-bd47729e5faf@ilbers.de \
    --to=amikan@ilbers.de \
    --cc=isar-users@googlegroups.com \
    --cc=quirin.gylstorff@siemens.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox