@@ -136,6 +136,9 @@ config DEBIAN_BOOKWORM
bool "bookworm (12)"
depends on !ARCH_RISCV64
+config DEBIAN_TRIXIE
+ bool "trixie (testing)"
+
config DEBIAN_SID
bool "sid (unstable)"
depends on ARCH_RISCV64
@@ -147,6 +150,7 @@ config KAS_INCLUDE_DEBIAN
default "kas/opt/buster.yml" if DEBIAN_BUSTER
default "kas/opt/bullseye.yml" if DEBIAN_BULLSEYE
default "kas/opt/bookworm.yml" if DEBIAN_BOOKWORM
+ default "kas/opt/trixie.yml" if DEBIAN_TRIXIE
default "kas/opt/sid.yml" if DEBIAN_SID
comment "Image features"
new file mode 100644
@@ -0,0 +1,16 @@
+#
+# CIP Core, generic profile
+#
+# Copyright (c) Siemens AG, 2024
+#
+# Authors:
+# Cedric Hombourger <cedric.hombourger@siemens.com>
+#
+# SPDX-License-Identifier: MIT
+#
+
+require conf/distro/debian-trixie.conf
+require cip-core-common.inc
+
+PREFERRED_VERSION_linux-cip ?= "6.1.%"
+PREFERRED_VERSION_linux-cip-rt ?= "6.1.%"
@@ -22,7 +22,7 @@ repos:
isar:
url: https://github.com/ilbers/isar.git
- commit: 8c9bdd3cb0ac93aa46552d4554bafaea5d1d7d13
+ commit: 57f6b70d91711075fbeb07dd2bdf5c9e5b3c6ee6
layers:
meta:
new file mode 100644
@@ -0,0 +1,15 @@
+#
+# CIP Core, generic profile
+#
+# Copyright (c) Siemens AG, 2024
+#
+# Authors:
+# Cedric Hombourger <cedric.hombourger@siemens.com>
+#
+# SPDX-License-Identifier: MIT
+#
+
+header:
+ version: 14
+
+distro: cip-core-trixie
new file mode 120000
@@ -0,0 +1 @@
+trixie
\ No newline at end of file
similarity index 100%
rename from recipes-devtools/secure-boot-secrets/files/sid/PkKek-1-snakeoil.key
rename to recipes-devtools/secure-boot-secrets/files/trixie/PkKek-1-snakeoil.key
similarity index 100%
rename from recipes-devtools/secure-boot-secrets/files/sid/PkKek-1-snakeoil.pem
rename to recipes-devtools/secure-boot-secrets/files/trixie/PkKek-1-snakeoil.pem
new file mode 120000
@@ -0,0 +1 @@
+../../secure-boot-secrets/files/trixie
\ No newline at end of file
@@ -46,6 +46,8 @@ if [ -z "${DISTRO_RELEASE}" ]; then
DISTRO_RELEASE="buster"
elif grep -s -q "DEBIAN_BOOKWORM: true" .config.yaml; then
DISTRO_RELEASE="bookworm"
+ elif grep -s -q "DEBIAN_TRIXIE: true" .config.yaml; then
+ DISTRO_RELEASE="trixie"
else
DISTRO_RELEASE="bullseye"
fi