+config LARGEFILE
+ bool
+ prompt "Enable large file (files > 2 GB) support"
+ default y
+ help
+ Enable large file (files > 2 GB) support.
+
+config SHADOW_PASSWORDS
+ bool
+ prompt "Enable shadow password support"
+ default y
+ help
+ Enable shadow password support.
+
+choice
+ prompt "Binary stripping method"
+ default USE_STRIP if EXTERNAL_TOOLCHAIN
+ default USE_STRIP if USE_GLIBC || USE_EGLIBC
+ default USE_SSTRIP
+ help
+ Select the binary stripping method you wish to use.
+
+ config NO_STRIP
+ bool "none"
+ help
+ This will install unstripped binaries (useful for native compiling/debugging)
+
+ config USE_STRIP
+ bool "strip"
+ help
+ This will install binaries stripped using strip from binutils
+
+
+ config USE_SSTRIP
+ bool "sstrip"
+ depends !USE_GLIBC
+ depends !USE_EGLIBC
+ help
+ This will install binaries stripped using sstrip
+
+endchoice
+
+config USE_MKLIBS
+ bool "Strip unnecessary functions from libraries"
+ help
+ Reduces libraries to only those functions that are necessary for using all
+ selected packages (including those selected as <M>)
+ Note that this will make the system libraries incompatible with most of the packages
+ that are not selected during the build process
+
+config STRIP_KERNEL_EXPORTS
+ depends LINUX_2_6
+ bool "Strip unnecessary exports from the kernel image"
+ 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
+ were not selected at the time the kernel image was created
+