X-Git-Url: https://git.archive.openwrt.org/?p=openwrt.git;a=blobdiff_plain;f=Config.in;h=0553712f7654aa2a5c7eed5c0f9f2681549bfe9e;hp=f46781866e1267045329a7b5ff7b21b1e28772cd;hb=b65d4e12e24424a35e0df2b9d88f5ef1980ea43f;hpb=d212a08b1cf7ce508a4d9c2febdddba397ff4676 diff --git a/Config.in b/Config.in index f46781866e..0553712f76 100644 --- a/Config.in +++ b/Config.in @@ -46,9 +46,15 @@ menu "Target Images" config TARGET_INITRAMFS_COMPRESSION_XZ bool "xz" - depends LINUX_2_6_38 endchoice + config EXTERNAL_CPIO + string + prompt "Use external cpio" if TARGET_ROOTFS_INITRAMFS + default "" + help + Kernel uses specified external cpio as INITRAMFS_SOURCE + comment "Root filesystem archives" config TARGET_ROOTFS_CPIOGZ @@ -145,7 +151,7 @@ menu "Global build settings" bool "Compile with full language support" help When this option is enabled, packages are built with the full versions of iconv and GNU gettext - instead of the default OpenWrt stubs. + instead of the default OpenWrt stubs. If uClibc is used, it is also built with locale support. config SHADOW_PASSWORDS bool @@ -193,6 +199,15 @@ menu "Global build settings" help This will give you more information in stack traces from kernel oopses + config KERNEL_FTRACE + bool "Compile the kernel with tracing support" + default n + + config KERNEL_ENABLE_DEFAULT_TRACERS + bool "Trace process context switches and events" + depends on KERNEL_FTRACE + default n + config KERNEL_DEBUG_KERNEL bool default n @@ -204,10 +219,16 @@ menu "Global build settings" help This will compile your kernel and modules with debug information. + config KERNEL_DEBUG_LL_UART_NONE + bool + default n + depends on arm + config KERNEL_DEBUG_LL bool default n depends on arm + select KERNEL_DEBUG_LL_UART_NONE help ARM low level debugging @@ -229,7 +250,7 @@ menu "Global build settings" config KERNEL_MAGIC_SYSRQ bool "Compile the kernel with SysRq support" - default n + default y config KERNEL_ELF_CORE bool "Enable process core dump support" @@ -240,6 +261,10 @@ menu "Global build settings" select KERNEL_DEBUG_KERNEL default n + config KERNEL_PRINTK_TIME + bool "Enable printk timestamps" + default y + comment "Package build options" config DEBUG @@ -292,6 +317,7 @@ menu "Global build settings" bool prompt "Parallelize the default package build rule (May break build)" depends on PKG_BUILD_PARALLEL + depends on BROKEN default n help Always set the default package build rules to parallel build. @@ -307,6 +333,7 @@ menu "Global build settings" bool prompt "Parallelize the toolchain build (May break build)" depends on PKG_BUILD_PARALLEL + depends on BROKEN default n help Build the toolchain with parallel make jobs. @@ -370,6 +397,21 @@ menu "Global build settings" Note that this will make the system libraries incompatible with most of the packages that are not selected during the build process + choice + prompt "Preferred standard C++ library" + default USE_LIBSTDCXX if USE_EGLIBC + default USE_UCLIBCXX + help + Select the preferred standard C++ library for all packages that support this. + + config USE_UCLIBCXX + bool "uClibc++" + + config USE_LIBSTDCXX + bool "libstdc++" + + endchoice + endmenu menuconfig DEVEL