* [PATCH] kas: Exclude example-module for container-amd64 builds
@ 2025-08-16 10:32 srinuvasan.a via isar-users
2025-08-17 16:20 ` 'Jan Kiszka' via isar-users
0 siblings, 1 reply; 6+ messages in thread
From: srinuvasan.a via isar-users @ 2025-08-16 10:32 UTC (permalink / raw)
To: isar-users; +Cc: srinuvasan
From: srinuvasan <srinuvasan.a@siemens.com>
When building for the container-amd64 machine via the kas menu, the build
hangs during the parsing stage. The example-module is not required for
container-based machines, but it is currently included by default.
Exclude the example-module block when targeting container-amd64 to avoid
these issues.
Signed-off-by: srinuvasan <srinuvasan.a@siemens.com>
---
kas/package/Kconfig | 2 ++
1 file changed, 2 insertions(+)
diff --git a/kas/package/Kconfig b/kas/package/Kconfig
index a49041e8..e0b7754d 100644
--- a/kas/package/Kconfig
+++ b/kas/package/Kconfig
@@ -37,6 +37,7 @@ config KAS_INCLUDE_PACKAGE_EXAMPLE_RAW
default "kas/package/pkg_example-raw.yaml"
depends on PACKAGE_EXAMPLE_RAW
+if !MACHINE_CONTAINER_AMD64
config PACKAGE_EXAMPLE_MODULE
bool "example-module"
@@ -47,6 +48,7 @@ config KAS_INCLUDE_PACKAGE_EXAMPLE_MODULE
default "kas/package/pkg_example-module.yaml"
depends on PACKAGE_EXAMPLE_MODULE
+endif
config PACKAGE_EXAMPLE_PREBUILT
bool "example-prebuilt"
--
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/20250816103244.3427191-1-srinuvasan.a%40siemens.com.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] kas: Exclude example-module for container-amd64 builds
2025-08-16 10:32 [PATCH] kas: Exclude example-module for container-amd64 builds srinuvasan.a via isar-users
@ 2025-08-17 16:20 ` 'Jan Kiszka' via isar-users
2025-08-18 10:02 ` [PATCH v2] " srinuvasan.a via isar-users
2025-08-18 10:11 ` [PATCH v3] " srinuvasan.a via isar-users
0 siblings, 2 replies; 6+ messages in thread
From: 'Jan Kiszka' via isar-users @ 2025-08-17 16:20 UTC (permalink / raw)
To: srinuvasan.a, isar-users
On 16.08.25 12:32, srinuvasan.a via isar-users wrote:
> From: srinuvasan <srinuvasan.a@siemens.com>
>
> When building for the container-amd64 machine via the kas menu, the build
> hangs during the parsing stage. The example-module is not required for
> container-based machines, but it is currently included by default.
>
> Exclude the example-module block when targeting container-amd64 to avoid
> these issues.
>
> Signed-off-by: srinuvasan <srinuvasan.a@siemens.com>
> ---
> kas/package/Kconfig | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/kas/package/Kconfig b/kas/package/Kconfig
> index a49041e8..e0b7754d 100644
> --- a/kas/package/Kconfig
> +++ b/kas/package/Kconfig
> @@ -37,6 +37,7 @@ config KAS_INCLUDE_PACKAGE_EXAMPLE_RAW
> default "kas/package/pkg_example-raw.yaml"
> depends on PACKAGE_EXAMPLE_RAW
>
> +if !MACHINE_CONTAINER_AMD64
>
You just need to make the package "depends on !", just like was done
already for others.
Jan
> config PACKAGE_EXAMPLE_MODULE
> bool "example-module"
> @@ -47,6 +48,7 @@ config KAS_INCLUDE_PACKAGE_EXAMPLE_MODULE
> default "kas/package/pkg_example-module.yaml"
> depends on PACKAGE_EXAMPLE_MODULE
>
> +endif
>
> config PACKAGE_EXAMPLE_PREBUILT
> bool "example-prebuilt"
--
Siemens AG, Foundational Technologies
Linux Expert Center
--
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/767712d7-d768-402d-a294-38546c69723a%40siemens.com.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v2] kas: Exclude example-module for container-amd64 builds
2025-08-17 16:20 ` 'Jan Kiszka' via isar-users
@ 2025-08-18 10:02 ` srinuvasan.a via isar-users
2025-08-18 10:11 ` [PATCH v3] " srinuvasan.a via isar-users
1 sibling, 0 replies; 6+ messages in thread
From: srinuvasan.a via isar-users @ 2025-08-18 10:02 UTC (permalink / raw)
To: isar-users; +Cc: srinuvasan
From: srinuvasan <srinuvasan.a@siemens.com>
When building for the container-amd64 machine via the kas menu, the build
hangs during the parsing stage. The example-module is not required for
container-based machines, but it is currently included by default.
Exclude the example-module block when targeting container-amd64 to avoid
these issues.
Signed-off-by: srinuvasan <srinuvasan.a@siemens.com>
---
kas/package/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kas/package/Kconfig b/kas/package/Kconfig
index a49041e8..1e69942a 100644
--- a/kas/package/Kconfig
+++ b/kas/package/Kconfig
@@ -37,10 +37,10 @@ config KAS_INCLUDE_PACKAGE_EXAMPLE_RAW
default "kas/package/pkg_example-raw.yaml"
depends on PACKAGE_EXAMPLE_RAW
-
config PACKAGE_EXAMPLE_MODULE
bool "example-module"
default y
+ depends on !MACHINE_CONTAINER_AMD64
config KAS_INCLUDE_PACKAGE_EXAMPLE_MODULE
string
--
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/20250818100254.3443180-1-srinuvasan.a%40siemens.com.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v3] kas: Exclude example-module for container-amd64 builds
2025-08-17 16:20 ` 'Jan Kiszka' via isar-users
2025-08-18 10:02 ` [PATCH v2] " srinuvasan.a via isar-users
@ 2025-08-18 10:11 ` srinuvasan.a via isar-users
2025-08-18 10:56 ` 'Jan Kiszka' via isar-users
2025-09-12 9:16 ` Anton Mikanovich
1 sibling, 2 replies; 6+ messages in thread
From: srinuvasan.a via isar-users @ 2025-08-18 10:11 UTC (permalink / raw)
To: isar-users; +Cc: srinuvasan
From: srinuvasan <srinuvasan.a@siemens.com>
When building for the container-amd64 machine via the kas menu, the build
hangs during the parsing stage. The example-module is not required for
container-based machines, but it is currently included by default.
Exclude the example-module block when targeting container-amd64 to avoid
these issues.
Signed-off-by: srinuvasan <srinuvasan.a@siemens.com>
---
kas/package/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/kas/package/Kconfig b/kas/package/Kconfig
index a49041e8..d279e7e6 100644
--- a/kas/package/Kconfig
+++ b/kas/package/Kconfig
@@ -41,6 +41,7 @@ config KAS_INCLUDE_PACKAGE_EXAMPLE_RAW
config PACKAGE_EXAMPLE_MODULE
bool "example-module"
default y
+ depends on !MACHINE_CONTAINER_AMD64
config KAS_INCLUDE_PACKAGE_EXAMPLE_MODULE
string
--
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/20250818101151.3443270-1-srinuvasan.a%40siemens.com.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v3] kas: Exclude example-module for container-amd64 builds
2025-08-18 10:11 ` [PATCH v3] " srinuvasan.a via isar-users
@ 2025-08-18 10:56 ` 'Jan Kiszka' via isar-users
2025-09-12 9:16 ` Anton Mikanovich
1 sibling, 0 replies; 6+ messages in thread
From: 'Jan Kiszka' via isar-users @ 2025-08-18 10:56 UTC (permalink / raw)
To: srinuvasan.a, isar-users
On 18.08.25 12:11, srinuvasan.a via isar-users wrote:
> From: srinuvasan <srinuvasan.a@siemens.com>
>
> When building for the container-amd64 machine via the kas menu, the build
> hangs during the parsing stage. The example-module is not required for
> container-based machines, but it is currently included by default.
>
> Exclude the example-module block when targeting container-amd64 to avoid
> these issues.
>
> Signed-off-by: srinuvasan <srinuvasan.a@siemens.com>
> ---
> kas/package/Kconfig | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/kas/package/Kconfig b/kas/package/Kconfig
> index a49041e8..d279e7e6 100644
> --- a/kas/package/Kconfig
> +++ b/kas/package/Kconfig
> @@ -41,6 +41,7 @@ config KAS_INCLUDE_PACKAGE_EXAMPLE_RAW
> config PACKAGE_EXAMPLE_MODULE
> bool "example-module"
> default y
> + depends on !MACHINE_CONTAINER_AMD64
>
> config KAS_INCLUDE_PACKAGE_EXAMPLE_MODULE
> string
Reviewed-by: Jan Kiszka <jan.kiszka@siemens.com>
Jan
--
Siemens AG, Foundational Technologies
Linux Expert Center
--
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/cb9d3494-5dbd-4128-a884-77dbd24cfa6d%40siemens.com.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v3] kas: Exclude example-module for container-amd64 builds
2025-08-18 10:11 ` [PATCH v3] " srinuvasan.a via isar-users
2025-08-18 10:56 ` 'Jan Kiszka' via isar-users
@ 2025-09-12 9:16 ` Anton Mikanovich
1 sibling, 0 replies; 6+ messages in thread
From: Anton Mikanovich @ 2025-09-12 9:16 UTC (permalink / raw)
To: srinuvasan.a, isar-users
18/08/2025 13:11, srinuvasan.a via isar-users wrote:
> From: srinuvasan <srinuvasan.a@siemens.com>
>
> When building for the container-amd64 machine via the kas menu, the build
> hangs during the parsing stage. The example-module is not required for
> container-based machines, but it is currently included by default.
>
> Exclude the example-module block when targeting container-amd64 to avoid
> these issues.
>
> Signed-off-by: srinuvasan <srinuvasan.a@siemens.com>
Applied to next, thanks.
--
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/35215e14-bc2a-4d04-a9d0-0ff9714ea83e%40ilbers.de.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-09-12 9:16 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-08-16 10:32 [PATCH] kas: Exclude example-module for container-amd64 builds srinuvasan.a via isar-users
2025-08-17 16:20 ` 'Jan Kiszka' via isar-users
2025-08-18 10:02 ` [PATCH v2] " srinuvasan.a via isar-users
2025-08-18 10:11 ` [PATCH v3] " srinuvasan.a via isar-users
2025-08-18 10:56 ` 'Jan Kiszka' via isar-users
2025-09-12 9:16 ` Anton Mikanovich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox