@@ -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
new file mode 100644
@@ -0,0 +1,7 @@
+# This software is a part of ISAR.
+# Copyright (C) 2023 ilbers GmbH
+
+header:
+ version: 14
+
+distro: debian-forky
new file mode 100644
@@ -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"
new file mode 100644
@@ -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