X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=Config.in;h=98786fcdb1e6b9258ed38e3cfb0ce54132cbef82;hb=57b68daee99c96fd122bb7e9b39e9065f00376cc;hp=5da7c0ad19ed0fa92e0e8954bbd886db18931a69;hpb=4e8eced06a3fd7e6fde088361412d2848d2d5d17;p=librecmc%2Flibrecmc.git diff --git a/Config.in b/Config.in index 5da7c0ad19..98786fcdb1 100644 --- a/Config.in +++ b/Config.in @@ -293,6 +293,9 @@ menu "Global build settings" bool "Enable printk timestamps" default y + config KERNEL_RELAY + bool + # # CGROUP support symbols # @@ -515,7 +518,7 @@ menu "Global build settings" choice prompt "Binary stripping method" default USE_STRIP if EXTERNAL_TOOLCHAIN - default USE_STRIP if USE_GLIBC || USE_EGLIBC + default USE_STRIP if USE_GLIBC || USE_EGLIBC || USE_MUSL default USE_SSTRIP help Select the binary stripping method you wish to use. @@ -536,7 +539,6 @@ menu "Global build settings" depends !DEBUG depends !USE_GLIBC depends !USE_EGLIBC - depends !USE_MUSL help This will install binaries stripped using sstrip endchoice @@ -552,7 +554,6 @@ menu "Global build settings" config STRIP_KERNEL_EXPORTS bool "Strip unnecessary exports from the kernel image" - depends BROKEN help Reduces kernel size by stripping unused kernel exports from the kernel image Note that this might make the kernel incompatible with any kernel modules that @@ -671,7 +672,7 @@ menuconfig TARGET_OPTIONS config SOFT_FLOAT bool "Use software floating point by default" if TARGET_OPTIONS default y - depends on (arm || armeb || powerpc || mipsel || mips) && !HAS_FPU + depends on (arm || armeb || powerpc || mipsel || mips || mips64el || mips64) && !HAS_FPU help If your target CPU does not have a Floating Point Unit (FPU) or a kernel FPU emulator, but you still wish to support floating point @@ -680,6 +681,17 @@ menuconfig TARGET_OPTIONS Most people will answer N. + config USE_MIPS16 + bool "Build packages with MIPS16 instructions" if TARGET_OPTIONS + depends on HAS_MIPS16 + help + If your target CPU does support the MIPS16 instruction set + and you want to use it for packages, enable this option. + MIPS16 produces smaller binaries thus reducing pressure on + caches and TLB. + + Most people will answer N. + source "toolchain/Config.in" source "target/imagebuilder/Config.in"