[v3,1/2] kas: Allow isar-image-ci to be embedded into installer image.

Message ID 20250220121150.14318-2-ubely@ilbers.de
State Under Review
Headers show
Series Cover installer image with tests | expand

Commit Message

Uladzimir Bely Feb. 20, 2025, 12:09 p.m. UTC
Also, this fixes typo for isar-image-debug embedding.

Signed-off-by: Uladzimir Bely <ubely@ilbers.de>
---
 kas/image/Kconfig | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

Patch

diff --git a/kas/image/Kconfig b/kas/image/Kconfig
index 0c0a664c..d602c369 100644
--- a/kas/image/Kconfig
+++ b/kas/image/Kconfig
@@ -48,6 +48,11 @@  config INSTALL_IMAGE_BASE
 	help
 	  Embed the basic Isar image into the installer image.
 
+config INSTALL_IMAGE_CI
+	bool "CI image"
+	help
+	  Embed the Isar CI image into the installer image.
+
 config INSTALL_IMAGE_DEBUG
 	bool "Debug image"
 	help
@@ -65,7 +70,8 @@  endchoice
 config INSTALLER_TARGET_IMAGE
 	string
 	default "isar-image-base" if INSTALL_IMAGE_BASE
-	default "isar-image-base" if INSTALL_IMAGE_DEBUG
+	default "isar-image-ci" if INSTALL_IMAGE_CI
+	default "isar-image-debug" if INSTALL_IMAGE_DEBUG
 
 config INSTALL_UNATTENDED
 	bool "Run installer unattended"