+ Build a ubifs root filesystem
+
+ comment "Image Options"
+
+ source "target/linux/*/image/Config.in"
+
+ config TARGET_ROOTFS_PARTSIZE
+ int "Root filesystem partition size (in MB)"
+ depends X86_GRUB_IMAGES || TARGET_ROOTFS_EXT4FS || TARGET_rb532
+ default 48
+ help
+ Allows you to change the root filesystem partition size
+
+ config TARGET_ROOTFS_MAXINODE
+ int "Maximum number of inodes in root filesystem"
+ depends TARGET_ROOTFS_EXT4FS
+ default 6000
+ help
+ Allows you to change the maximum number of inodes in the root filesystem
+
+endmenu
+
+menu "Global build settings"
+
+ config ALL
+ bool "Select all packages by default"
+ default n
+
+ comment "General build options"
+
+ config DISPLAY_SUPPORT
+ bool "Show packages that require graphics support (local or remote)"
+ default n
+
+ config BUILD_PATENTED
+ default y
+ bool "Compile with support for patented functionality"
+ help
+ When this option is disabled, software which provides patented functionality will not be built.
+ In case software provides optional support for patented functionality,
+ this optional support will get disabled for this package.
+
+ config BUILD_NLS
+ default n
+ 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. If uClibc is used, it is also built with locale support.
+
+ config SHADOW_PASSWORDS
+ bool
+ prompt "Enable shadow password support"
+ default y
+ help
+ Enable shadow password support.
+
+ config CLEAN_IPKG
+ bool
+ prompt "Remove ipkg/opkg status data files in final images"
+ default n
+ help
+ This removes all ipkg/opkg status data files from the target directory before building the root fs
+
+ config COLLECT_KERNEL_DEBUG
+ bool
+ prompt "Collect kernel debug information"
+ select KERNEL_DEBUG_INFO
+ default n
+ help
+ This collects debugging symbols from the kernel and all compiled modules.
+ Useful for release builds, so that kernel issues can be debugged offline later.
+
+ comment "Kernel build options"
+
+ config KERNEL_DEBUG_FS
+ bool "Compile the kernel with Debug FileSystem enabled"
+ default y
+ help
+ debugfs is a virtual file system that kernel developers use to put
+ debugging files into. Enable this option to be able to read and
+ write to these files.
+
+ config KERNEL_PROFILING
+ bool "Compile the kernel with profiling enabled"
+ default n
+ help
+ Enable the extended profiling support mechanisms used by profilers such
+ as OProfile.
+
+ config KERNEL_KALLSYMS
+ bool "Compile the kernel with symbol table information"
+ default n
+ help
+ This will give you more information in stack traces from kernel oopses
+
+ config KERNEL_DEBUG_KERNEL
+ bool
+ default n
+
+ config KERNEL_DEBUG_INFO
+ bool "Compile the kernel with debug information"
+ default n
+ select KERNEL_DEBUG_KERNEL
+ help
+ This will compile your kernel and modules with debug information.
+
+ config KERNEL_DEBUG_LL
+ bool
+ default n
+ depends on arm
+ help
+ ARM low level debugging
+
+ config KERNEL_EARLY_PRINTK
+ bool "Compile the kernel with early printk"
+ default n
+ depends on arm
+ select KERNEL_DEBUG_KERNEL
+ select KERNEL_DEBUG_LL if arm
+ help
+ Compile the kernel with early printk support.
+ This is only useful for debugging purposes to send messages
+ over the serial console in early boot.
+ Enable this to debug early boot problems.
+
+ config KERNEL_AIO
+ bool "Compile the kernel with asynchronous IO support"
+ default n
+
+ config KERNEL_MAGIC_SYSRQ
+ bool "Compile the kernel with SysRq support"
+ default y
+
+ config KERNEL_ELF_CORE
+ bool "Enable process core dump support"
+ default y
+
+ config KERNEL_PROVE_LOCKING
+ bool "Enable kernel lock checking"
+ select KERNEL_DEBUG_KERNEL
+ default n
+
+ config KERNEL_PRINTK_TIME
+ bool "Enable printk timestamps"
+ default y
+
+ comment "Package build options"
+
+ config DEBUG
+ bool
+ prompt "Compile packages with debugging info"
+ default n
+ help
+ Adds -g3 to the CFLAGS
+
+ config IPV6
+ bool
+ prompt "Enable IPv6 support in packages"
+ default y