* [PATCH v1] kas: add support for Ubuntu 24.04 (noble)
@ 2024-10-26 2:22 srinuvasan.a via isar-users
2024-11-04 13:51 ` Uladzimir Bely
0 siblings, 1 reply; 2+ messages in thread
From: srinuvasan.a via isar-users @ 2024-10-26 2:22 UTC (permalink / raw)
To: isar-users; +Cc: cedric.hombourger, srinuvasan
From: srinuvasan <srinuvasan.a@siemens.com>
Signed-off-by: srinuvasan <srinuvasan.a@siemens.com>
---
kas/distro/Kconfig | 4 ++++
kas/distro/ubuntu-noble.yaml | 9 +++++++++
kas/machine/Kconfig | 4 ++--
3 files changed, 15 insertions(+), 2 deletions(-)
create mode 100644 kas/distro/ubuntu-noble.yaml
diff --git a/kas/distro/Kconfig b/kas/distro/Kconfig
index 28898621..db8ab1b7 100644
--- a/kas/distro/Kconfig
+++ b/kas/distro/Kconfig
@@ -37,6 +37,9 @@ config UBUNTU_FOCAL
config UBUNTU_JAMMY
bool "Ubuntu 22.04 (Jammy)"
+config UBUNTU_NOBLE
+ bool "Ubuntu 24.04 (noble)"
+
endchoice
config KAS_INCLUDE_DISTRO
@@ -50,5 +53,6 @@ config KAS_INCLUDE_DISTRO
default "kas/distro/raspios-bookworm.yaml" if RASPIOS_BOOKWORM
default "kas/distro/ubuntu-focal.yaml" if UBUNTU_FOCAL
default "kas/distro/ubuntu-jammy.yaml" if UBUNTU_JAMMY
+ default "kas/distro/ubuntu-noble.yaml" if UBUNTU_NOBLE
endmenu
diff --git a/kas/distro/ubuntu-noble.yaml b/kas/distro/ubuntu-noble.yaml
new file mode 100644
index 00000000..35bd347a
--- /dev/null
+++ b/kas/distro/ubuntu-noble.yaml
@@ -0,0 +1,9 @@
+# This software is a part of ISAR.
+# Copyright (c) Siemens AG, 2024
+#
+# SPDX-License-Identifier: MIT
+
+header:
+ version: 14
+
+distro: ubuntu-noble
diff --git a/kas/machine/Kconfig b/kas/machine/Kconfig
index c3b568df..0ad39ea4 100644
--- a/kas/machine/Kconfig
+++ b/kas/machine/Kconfig
@@ -56,7 +56,7 @@ config MACHINE_QEMU_AMD64_SB
config MACHINE_QEMU_AMD64
bool "qemuamd64"
- depends on DEBIAN_BUSTER || DEBIAN_BULLSEYE || DEBIAN_BOOKWORM || DEBIAN_TRIXIE || UBUNTU_FOCAL || UBUNTU_JAMMY
+ depends on DEBIAN_BUSTER || DEBIAN_BULLSEYE || DEBIAN_BOOKWORM || DEBIAN_TRIXIE || UBUNTU_FOCAL || UBUNTU_JAMMY || UBUNTU_NOBLE
config MACHINE_QEMU_ARM
bool "qemuarm"
@@ -64,7 +64,7 @@ config MACHINE_QEMU_ARM
config MACHINE_QEMU_ARM64
bool "qemuarm64"
- depends on DEBIAN_BUSTER || DEBIAN_BULLSEYE || DEBIAN_BOOKWORM || DEBIAN_TRIXIE || UBUNTU_FOCAL || UBUNTU_JAMMY
+ depends on DEBIAN_BUSTER || DEBIAN_BULLSEYE || DEBIAN_BOOKWORM || DEBIAN_TRIXIE || UBUNTU_FOCAL || UBUNTU_JAMMY || UBUNTU_NOBLE
config MACHINE_QEMU_I386
bool "qemui386"
--
2.39.5
--
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/20241026022237.1420016-1-srinuvasan.a%40siemens.com.
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH v1] kas: add support for Ubuntu 24.04 (noble)
2024-10-26 2:22 [PATCH v1] kas: add support for Ubuntu 24.04 (noble) srinuvasan.a via isar-users
@ 2024-11-04 13:51 ` Uladzimir Bely
0 siblings, 0 replies; 2+ messages in thread
From: Uladzimir Bely @ 2024-11-04 13:51 UTC (permalink / raw)
To: srinuvasan.a, isar-users
On Sat, 2024-10-26 at 07:52 +0530, srinuvasan.a via isar-users wrote:
> From: srinuvasan <srinuvasan.a@siemens.com>
>
> Signed-off-by: srinuvasan <srinuvasan.a@siemens.com>
> ---
> kas/distro/Kconfig | 4 ++++
> kas/distro/ubuntu-noble.yaml | 9 +++++++++
> kas/machine/Kconfig | 4 ++--
> 3 files changed, 15 insertions(+), 2 deletions(-)
> create mode 100644 kas/distro/ubuntu-noble.yaml
>
> diff --git a/kas/distro/Kconfig b/kas/distro/Kconfig
> index 28898621..db8ab1b7 100644
> --- a/kas/distro/Kconfig
> +++ b/kas/distro/Kconfig
> @@ -37,6 +37,9 @@ config UBUNTU_FOCAL
> config UBUNTU_JAMMY
> bool "Ubuntu 22.04 (Jammy)"
>
> +config UBUNTU_NOBLE
> + bool "Ubuntu 24.04 (noble)"
> +
> endchoice
>
> config KAS_INCLUDE_DISTRO
> @@ -50,5 +53,6 @@ config KAS_INCLUDE_DISTRO
> default "kas/distro/raspios-bookworm.yaml" if
> RASPIOS_BOOKWORM
> default "kas/distro/ubuntu-focal.yaml" if UBUNTU_FOCAL
> default "kas/distro/ubuntu-jammy.yaml" if UBUNTU_JAMMY
> + default "kas/distro/ubuntu-noble.yaml" if UBUNTU_NOBLE
>
> endmenu
> diff --git a/kas/distro/ubuntu-noble.yaml b/kas/distro/ubuntu-
> noble.yaml
> new file mode 100644
> index 00000000..35bd347a
> --- /dev/null
> +++ b/kas/distro/ubuntu-noble.yaml
> @@ -0,0 +1,9 @@
> +# This software is a part of ISAR.
> +# Copyright (c) Siemens AG, 2024
> +#
> +# SPDX-License-Identifier: MIT
> +
> +header:
> + version: 14
> +
> +distro: ubuntu-noble
> diff --git a/kas/machine/Kconfig b/kas/machine/Kconfig
> index c3b568df..0ad39ea4 100644
> --- a/kas/machine/Kconfig
> +++ b/kas/machine/Kconfig
> @@ -56,7 +56,7 @@ config MACHINE_QEMU_AMD64_SB
>
> config MACHINE_QEMU_AMD64
> bool "qemuamd64"
> - depends on DEBIAN_BUSTER || DEBIAN_BULLSEYE ||
> DEBIAN_BOOKWORM || DEBIAN_TRIXIE || UBUNTU_FOCAL || UBUNTU_JAMMY
> + depends on DEBIAN_BUSTER || DEBIAN_BULLSEYE ||
> DEBIAN_BOOKWORM || DEBIAN_TRIXIE || UBUNTU_FOCAL || UBUNTU_JAMMY ||
> UBUNTU_NOBLE
>
> config MACHINE_QEMU_ARM
> bool "qemuarm"
> @@ -64,7 +64,7 @@ config MACHINE_QEMU_ARM
>
> config MACHINE_QEMU_ARM64
> bool "qemuarm64"
> - depends on DEBIAN_BUSTER || DEBIAN_BULLSEYE ||
> DEBIAN_BOOKWORM || DEBIAN_TRIXIE || UBUNTU_FOCAL || UBUNTU_JAMMY
> + depends on DEBIAN_BUSTER || DEBIAN_BULLSEYE ||
> DEBIAN_BOOKWORM || DEBIAN_TRIXIE || UBUNTU_FOCAL || UBUNTU_JAMMY ||
> UBUNTU_NOBLE
>
> config MACHINE_QEMU_I386
> bool "qemui386"
> --
> 2.39.5
>
Applied to next, thanks.
--
Best regards,
Uladzimir.
--
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/8156de17f933f071c12a4ba139a7ec9266def4e7.camel%40ilbers.de.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-11-04 13:51 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-10-26 2:22 [PATCH v1] kas: add support for Ubuntu 24.04 (noble) srinuvasan.a via isar-users
2024-11-04 13:51 ` Uladzimir Bely
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox