diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2025-03-03 09:47:14 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2025-03-03 09:47:14 +0100 |
commit | 197d177a7d6ed9dc846c9b5a8c4458636eb4842d (patch) | |
tree | 5c80450ef5a525f55fb4d379d31e5c43580651f1 | |
parent | 0c8bd135f0eb8e5e9cb5072d88aefbc52f764cc8 (diff) |
-rw-r--r-- | Config.in | 2 | ||||
-rw-r--r-- | target/config/Config.in.cmdline | 1 | ||||
-rw-r--r-- | target/linux/config/Config.in.compression | 2 |
3 files changed, 3 insertions, 2 deletions
@@ -75,7 +75,7 @@ source "target/linux/config/Config.in.compression" source "target/config/Config.in.cmdline" menu "Advanced Linux Kernel configuration" - visible if ADK_TARGET_OS_LINUX && ADK_TARGET_KERNEL_CUSTOMISING && !ADK_APPLIANCE_TOOLCHAIN && !ADK_TARGET_CHOOSE_ARCH && !ADK_TARGET_LINUX_KERNEL_USE_DEFCONFIG && !ADK_TARGET_LINUX_KERNEL_USE_CUSTOMCONFIG + visible if ADK_TARGET_OS_LINUX && ADK_TARGET_KERNEL_CUSTOMISING && !ADK_APPLIANCE_TOOLCHAIN && !ADK_TARGET_CHOOSE_ARCH && !ADK_TARGET_LINUX_KERNEL_USE_DEFCONFIG && !ADK_TARGET_LINUX_KERNEL_USE_CUSTOMCONFIG && !ADK_TARGET_NO_KERNEL source "target/linux/Config.in" endmenu endmenu diff --git a/target/config/Config.in.cmdline b/target/config/Config.in.cmdline index 782f51efe..fa163c36b 100644 --- a/target/config/Config.in.cmdline +++ b/target/config/Config.in.cmdline @@ -3,6 +3,7 @@ config ADK_TARGET_CMDLINE string "Kernel commandline" + depends on !ADK_TARGET_NO_KERNEL default "fbcon=rotate:1" if ADK_TARGET_SYSTEM_SHARP_ZAURUS default "geodewdt.nowayout=1" if ADK_TARGET_MODEL_PCENGINES_ALIX1C default "kinetis_platform=k70-som" if ADK_TARGET_SYSTEM_KINETIS_K70 diff --git a/target/linux/config/Config.in.compression b/target/linux/config/Config.in.compression index c2461ba80..6e6a2645c 100644 --- a/target/linux/config/Config.in.compression +++ b/target/linux/config/Config.in.compression @@ -72,7 +72,7 @@ config ADK_LINUX_KERNEL_INITRAMFS_SOURCE choice prompt "Kernel compression" -depends on ADK_TARGET_OS_LINUX && !ADK_APPLIANCE_TOOLCHAIN && !ADK_TARGET_CHOOSE_ARCH +depends on ADK_TARGET_OS_LINUX && !ADK_APPLIANCE_TOOLCHAIN && !ADK_TARGET_CHOOSE_ARCH && !ADK_TARGET_NO_KERNEL default ADK_LINUX_KERNEL_COMP_ZSTD if ADK_TARGET_ARCH_OR1K default ADK_LINUX_KERNEL_COMP_GZIP |