Message ID | 1742544230-24109-2-git-send-email-nobuhiro1.iwamatsu@toshiba.co.jp (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | [isar-cip-core,v2,1/2] kas/opt: Add option for not install kernel | expand |
diff --git a/Kconfig b/Kconfig index a726d26..1dad538 100644 --- a/Kconfig +++ b/Kconfig @@ -100,6 +100,9 @@ config KERNEL_5_10 config KERNEL_6_1 bool "Kernel 6.1.x-cip" +config NO_KERNEL + bool "Do not install kernel to image" + endchoice config KAS_INCLUDE_KERNEL @@ -108,6 +111,7 @@ config KAS_INCLUDE_KERNEL default "kas/opt/4.19.yml" if KERNEL_4_19 default "kas/opt/5.10.yml" if KERNEL_5_10 default "kas/opt/6.1.yml" if KERNEL_6_1 + default "kas/opt/no_kernel.yml" if NO_KERNEL config KERNEL_RT bool "Real-time CIP kernel"
This adds config NO_KERNEL not to install the kernel select. Signed-off-by: Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp> --- Kconfig | 4 ++++ 1 file changed, 4 insertions(+)