Config.in 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see extra/config/Kconfig-language.txt
  4. #
  5. mainmenu "uClibc C Library Configuration"
  6. choice
  7. prompt "Target Architecture"
  8. help
  9. Stuff
  10. config TARGET_alpha
  11. bool "alpha"
  12. config TARGET_arm
  13. bool "arm"
  14. config TARGET_avr32
  15. bool "avr32"
  16. config TARGET_bfin
  17. bool "bfin"
  18. config TARGET_cris
  19. bool "cris"
  20. config TARGET_e1
  21. bool "e1 (BROKEN)"
  22. config TARGET_frv
  23. bool "frv (BROKEN)"
  24. config TARGET_h8300
  25. bool "h8300 (BROKEN)"
  26. config TARGET_hppa
  27. bool "hppa"
  28. config TARGET_i386
  29. bool "i386"
  30. config TARGET_i960
  31. bool "i960 (BROKEN)"
  32. config TARGET_ia64
  33. bool "ia64"
  34. config TARGET_m68k
  35. bool "m68k"
  36. config TARGET_microblaze
  37. bool "microblaze (BROKEN)"
  38. config TARGET_mips
  39. bool "mips"
  40. config TARGET_nios
  41. bool "nios"
  42. config TARGET_nios2
  43. bool "nios2"
  44. config TARGET_powerpc
  45. bool "powerpc"
  46. config TARGET_sh
  47. bool "superh"
  48. config TARGET_sh64
  49. bool "sh64"
  50. config TARGET_sparc
  51. bool "sparc"
  52. config TARGET_v850
  53. bool "v850 (BROKEN)"
  54. config TARGET_vax
  55. bool "vax"
  56. config TARGET_x86_64
  57. bool "x86_64"
  58. config TARGET_xtensa
  59. bool "xtensa"
  60. endchoice
  61. menu "Target Architecture Features and Options"
  62. if TARGET_alpha
  63. source "extra/Configs/Config.alpha"
  64. endif
  65. if TARGET_arm
  66. source "extra/Configs/Config.arm"
  67. endif
  68. if TARGET_avr32
  69. source "extra/Configs/Config.avr32"
  70. endif
  71. if TARGET_bfin
  72. source "extra/Configs/Config.bfin"
  73. endif
  74. if TARGET_cris
  75. source "extra/Configs/Config.cris"
  76. endif
  77. if TARGET_e1
  78. source "extra/Configs/Config.e1"
  79. endif
  80. if TARGET_frv
  81. source "extra/Configs/Config.frv"
  82. endif
  83. if TARGET_h8300
  84. source "extra/Configs/Config.h8300"
  85. endif
  86. if TARGET_hppa
  87. source "extra/Configs/Config.hppa"
  88. endif
  89. if TARGET_i386
  90. source "extra/Configs/Config.i386"
  91. endif
  92. if TARGET_i960
  93. source "extra/Configs/Config.i960"
  94. endif
  95. if TARGET_ia64
  96. source "extra/Configs/Config.ia64"
  97. endif
  98. if TARGET_m68k
  99. source "extra/Configs/Config.m68k"
  100. endif
  101. if TARGET_nios
  102. source "extra/Configs/Config.nios"
  103. endif
  104. if TARGET_nios2
  105. source "extra/Configs/Config.nios2"
  106. endif
  107. if TARGET_microblaze
  108. source "extra/Configs/Config.microblaze"
  109. endif
  110. if TARGET_mips
  111. source "extra/Configs/Config.mips"
  112. endif
  113. if TARGET_powerpc
  114. source "extra/Configs/Config.powerpc"
  115. endif
  116. if TARGET_sh
  117. source "extra/Configs/Config.sh"
  118. endif
  119. if TARGET_sh64
  120. source "extra/Configs/Config.sh64"
  121. endif
  122. if TARGET_sparc
  123. source "extra/Configs/Config.sparc"
  124. endif
  125. if TARGET_v850
  126. source "extra/Configs/Config.v850"
  127. endif
  128. if TARGET_vax
  129. source "extra/Configs/Config.vax"
  130. endif
  131. if TARGET_x86_64
  132. source "extra/Configs/Config.x86_64"
  133. endif
  134. if TARGET_xtensa
  135. source "extra/Configs/Config.xtensa"
  136. endif
  137. config TARGET_SUBARCH
  138. string
  139. default "e500" if CONFIG_E500
  140. default "classic" if CONFIG_CLASSIC
  141. default "sh4" if CONFIG_SH4
  142. default ""
  143. source "extra/Configs/Config.in.arch"
  144. endmenu
  145. menu "General Library Settings"
  146. config HAVE_NO_PIC
  147. bool
  148. default n
  149. config DOPIC
  150. bool "Generate only Position Independent Code (PIC)"
  151. default y
  152. depends on !HAVE_NO_PIC
  153. help
  154. If you wish to build all of uClibc as PIC objects, then answer Y here.
  155. If you are unsure, then you should answer N.
  156. config ARCH_HAS_NO_SHARED
  157. bool
  158. default n
  159. config ARCH_HAS_NO_LDSO
  160. bool
  161. select ARCH_HAS_NO_SHARED
  162. default n
  163. config HAVE_SHARED
  164. bool "Enable support for shared libraries"
  165. depends on !ARCH_HAS_NO_SHARED
  166. default y
  167. help
  168. If you wish to build uClibc with support for shared libraries then
  169. answer Y here. If you only want to build uClibc as a static library,
  170. then answer N.
  171. config FORCE_SHAREABLE_TEXT_SEGMENTS
  172. bool "Only load shared libraries which can share their text segment"
  173. depends on HAVE_SHARED
  174. default n
  175. help
  176. If you answer Y here, the uClibc native shared library loader will
  177. only load shared libraries, which do not need to modify any non-writable
  178. segments. These libraries haven't set the DT_TEXTREL tag in the dynamic
  179. section (==> objdump). All your libraries must be compiled with
  180. -fPIC or -fpic, and all assembler function must be written as position
  181. independent code (PIC).
  182. Enabling this option will make uClibc's shared library loader a
  183. little bit smaller and guarantee that no memory will be wasted by badly
  184. coded shared libraries.
  185. config LDSO_LDD_SUPPORT
  186. bool "Native 'ldd' support"
  187. depends on HAVE_SHARED
  188. default y
  189. help
  190. Enable this to enable all the code needed to support traditional ldd,
  191. which executes the shared library loader to resolve all dependencies
  192. and then provide a list of shared libraries that are required for an
  193. application to function. Disabling this option will makes uClibc's
  194. shared library loader a little bit smaller. Most people will answer Y.
  195. config LDSO_CACHE_SUPPORT
  196. bool "Enable library loader cache (ld.so.conf)"
  197. depends on HAVE_SHARED
  198. default y
  199. help
  200. Enable this to make use of /etc/ld.so.conf, the shared library loader
  201. cache configuration file to support for non-standard library paths.
  202. After updating this file, it is necessary to run 'ldconfig' to update
  203. the /etc/ld.so.cache shared library loader cache file.
  204. config LDSO_PRELOAD_FILE_SUPPORT
  205. bool "Enable library loader preload file (ld.so.preload)"
  206. depends on HAVE_SHARED
  207. default n
  208. help
  209. Enable this to make use of /etc/ld.so.preload. This file contains a
  210. whitespace separated list of shared libraries to be loaded before
  211. the program.
  212. config LDSO_BASE_FILENAME
  213. string "Shared library loader naming prefix"
  214. depends on HAVE_SHARED && (LDSO_CACHE_SUPPORT || LDSO_PRELOAD_FILE_SUPPORT)
  215. default "ld.so"
  216. help
  217. If you wish to support both uClibc and glibc on the same system, it
  218. is necessary to set this to something other than "ld.so" to avoid
  219. conflicts with glibc, which also uses "ld.so". This prevents both
  220. libraries from using the same /etc/ld.so.* files. If you wish to
  221. support both uClibc and glibc on the same system then you should set
  222. this to "ld-uClibc.so".
  223. Most people will leave this set to the default of "ld.so".
  224. WARNING: Changing the default prefix could cause problems with
  225. binutils' ld !
  226. config UCLIBC_STATIC_LDCONFIG
  227. bool "Link ldconfig statically"
  228. depends on HAVE_SHARED
  229. default y
  230. help
  231. Enable this option to statically link the ldconfig binary.
  232. Making ldconfig static can be beneficial if you have a library
  233. problem and need to use ldconfig to recover. Sometimes, it is
  234. preferable to instead keep the size of the system down, in which
  235. case you should disable this option.
  236. config LDSO_RUNPATH
  237. bool "Enable ELF RUNPATH tag support"
  238. depends on HAVE_SHARED
  239. default y
  240. help
  241. ELF's may have dynamic RPATH/RUNPATH tags. These tags list paths
  242. which extend the library search paths. They are really only useful
  243. if a package installs libraries in non standard locations and
  244. ld.so.conf support is disabled.
  245. Usage of RUNPATH tags is not too common, so disabling this feature
  246. should be safe for most people.
  247. config UCLIBC_CTOR_DTOR
  248. bool "Support global constructors and destructors"
  249. default y
  250. help
  251. If you wish to build uClibc with support for global constructor
  252. (ctor) and global destructor (dtor) support, then answer Y here.
  253. When ctor/dtor support is enabled, binaries linked with uClibc must
  254. also be linked with crtbegin.o and crtend.o which are provided by gcc
  255. (the "*startfile:" and "*endfile:" settings in your gcc specs file
  256. may need to be adjusted to include these files). This support will
  257. also add a small amount of additional size to each binary compiled vs
  258. uClibc. If you will be using uClibc with C++, or if you need the gcc
  259. __attribute__((constructor)) and __attribute__((destructor)) to work,
  260. then you definitely want to answer Y here. If you don't need ctors
  261. or dtors and want your binaries to be as small as possible, then
  262. answer N.
  263. config LDSO_GNU_HASH_SUPPORT
  264. bool "Enable GNU hash style support"
  265. depends on HAVE_SHARED
  266. default n
  267. help
  268. Newest binutils support a new hash style named GNU-hash. The dynamic
  269. linker will use the new GNU-hash section (.gnu.hash) for symbol lookup
  270. if present into the ELF binaries, otherwise it will use the old SysV
  271. hash style (.hash). This ensures that it is completely backward compatible.
  272. Further, being the hash table implementation self-contained into each
  273. executable and shared libraries, objects with mixed hash style can
  274. peacefully coexist in the same process.
  275. If you want to use this new feature, answer Y
  276. config HAS_NO_THREADS
  277. bool
  278. default n
  279. config UCLIBC_HAS_THREADS
  280. bool "POSIX Threading support"
  281. depends on !HAS_NO_THREADS
  282. default y
  283. # linuxthreads and linuxthreads.old need nanosleep()
  284. select UCLIBC_HAS_REALTIME
  285. help
  286. If you want to compile uClibc with pthread support, then answer Y.
  287. This will increase the size of uClibc by adding a bunch of locking
  288. to critical data structures, and adding extra code to ensure that
  289. functions are properly reentrant.
  290. If your applications require pthreads, answer Y.
  291. config PTHREADS_DEBUG_SUPPORT
  292. bool "Build pthreads debugging support"
  293. default n
  294. depends on UCLIBC_HAS_THREADS
  295. help
  296. Say Y here if you wish to be able to debug applications that use
  297. uClibc's pthreads library. By enabling this option, a library
  298. named libthread_db will be built. This library will be dlopen()'d
  299. by gdb and will allow gdb to debug the threads in your application.
  300. IMPORTANT NOTE! Because gdb must dlopen() the libthread_db library,
  301. you must compile gdb with uClibc in order for pthread debugging to
  302. work properly.
  303. If you are doing development and want to debug applications using
  304. uClibc's pthread library, answer Y. Otherwise, answer N.
  305. config LINUXTHREADS_OLD
  306. bool "Use the older (stable) version of linuxthreads"
  307. default y
  308. depends on UCLIBC_HAS_THREADS
  309. help
  310. There are two versions of linuxthreads. The older (stable) version
  311. has been in uClibc for quite a long time but hasn't seen too many
  312. updates other than bugfixes.
  313. The new version has not been tested much, and lacks ports for arches
  314. which glibc does not support (like bfin/frv/etc...), but is based on
  315. the latest code from glibc, so it may be the only choice for the
  316. newer ports (like alpha/amd64/64bit arches and hppa).
  317. config UCLIBC_HAS_SYSLOG
  318. bool "Syslog support"
  319. default y
  320. depends on UCLIBC_HAS_NETWORK_SUPPORT
  321. select UCLIBC_HAS_SOCKET
  322. help
  323. Support sending messages to the system logger.
  324. This requires socket-support.
  325. config UCLIBC_HAS_LFS
  326. bool "Large File Support"
  327. default y
  328. help
  329. If you wish to build uClibc with support for accessing large files
  330. (i.e. files greater then 2 GiB) then answer Y. Do not enable this
  331. if you are using an older Linux kernel (2.0.x) that lacks large file
  332. support. Enabling this option will increase the size of uClibc.
  333. choice
  334. prompt "Malloc Implementation"
  335. default MALLOC if ! ARCH_USE_MMU
  336. default MALLOC_STANDARD if ARCH_USE_MMU
  337. help
  338. "malloc" use mmap for all allocations and so works very well on MMU-less
  339. systems that do not support the brk() system call. It is pretty smart
  340. about reusing already allocated memory, and minimizing memory wastage.
  341. This is the default for uClinux MMU-less systems.
  342. "malloc-simple" was written from scratch for uClibc, and is the
  343. simplest possible (and therefore smallest) malloc implementation.
  344. This uses only the mmap() system call to allocation memory, and does
  345. not use the brk() system call at all, making it a fine choice for
  346. MMU-less systems with very limited memory. It is rather dumb, and
  347. certainly isn't the fastest. But it is 100% standards compliant,
  348. thread safe, and very small.
  349. "malloc-standard" is derived from the public domain dlmalloc
  350. implementation by Doug Lea. It is quite fast, and is pretty smart
  351. about reusing already allocated memory, and minimizing memory
  352. wastage. This uses brk() for small allocations, while using mmap()
  353. for larger allocations. This is the default malloc implementation
  354. for uClibc.
  355. If unsure, answer "malloc-standard".
  356. config MALLOC
  357. bool "malloc"
  358. config MALLOC_SIMPLE
  359. bool "malloc-simple"
  360. config MALLOC_STANDARD
  361. bool "malloc-standard"
  362. depends on ARCH_USE_MMU
  363. endchoice
  364. config MALLOC_GLIBC_COMPAT
  365. bool "Malloc returns live pointer for malloc(0)"
  366. default n
  367. help
  368. The behavior of malloc(0) is listed as implementation-defined by
  369. SuSv3. Glibc returns a valid pointer to something, while uClibc
  370. normally returns NULL. I personally feel glibc's behavior is
  371. not particularly safe, and allows buggy applications to hide very
  372. serious problems.
  373. When this option is enabled, uClibc will act just like glibc, and
  374. return a live pointer when someone calls malloc(0). This pointer
  375. provides a malloc'ed area with a size of 1 byte. This feature is
  376. mostly useful when dealing with applications using autoconf's broken
  377. AC_FUNC_MALLOC macro (which redefines malloc as rpl_malloc if it
  378. does not detect glibc style returning-a-valid-pointer-for-malloc(0)
  379. behavior). Most people can safely answer N.
  380. config UCLIBC_DYNAMIC_ATEXIT
  381. bool "Dynamic atexit() Support"
  382. default y
  383. help
  384. When this option is enabled, uClibc will support an infinite number,
  385. of atexit() and on_exit() functions, limited only by your available
  386. memory. This can be important when uClibc is used with C++, since
  387. global destructors are implemented via atexit(), and it is quite
  388. possible to exceed the default number when this option is disabled.
  389. Enabling this option adds a few bytes, and more significantly makes
  390. atexit and on_exit depend on malloc, which can be bad when compiling
  391. static executables.
  392. Unless you use uClibc with C++, you should probably answer N.
  393. config COMPAT_ATEXIT
  394. bool "Old (visible) atexit Support"
  395. default n
  396. help
  397. Enable this option if you want to update from 0.9.28 to svn/0.9.29, else
  398. you will be missing atexit() until you rebuild all apps.
  399. config UCLIBC_SUSV3_LEGACY
  400. bool "Enable SuSv3 LEGACY functions"
  401. default n
  402. help
  403. Enable this option if you want to have SuSv3 LEGACY functions
  404. in the library, else they are replaced by SuSv3 proposed macros.
  405. Currently applies to bcopy/bzero/bcmp/index/rindex/ftime.
  406. WARNING! ABI incompatibility.
  407. config UCLIBC_SUSV3_LEGACY_MACROS
  408. bool "Enable SuSv3 LEGACY macros"
  409. default n
  410. help
  411. Enable this option if you want to have SuSv3 LEGACY macros.
  412. Currently applies to bcopy/bzero/bcmp/index/rindex et al.
  413. WARNING! ABI incompatibility.
  414. config UCLIBC_HAS_SHADOW
  415. bool "Shadow Password Support"
  416. default y
  417. help
  418. Answer N if you do not need shadow password support.
  419. Most people will answer Y.
  420. config UCLIBC_HAS_PROGRAM_INVOCATION_NAME
  421. bool "Support for program_invocation_name"
  422. default n
  423. help
  424. Support for the GNU-specific program_invocation_name and
  425. program_invocation_short_name strings. Some GNU packages
  426. (like tar and coreutils) utilize these for extra useful
  427. output, but in general are not required.
  428. At startup, these external strings are automatically set
  429. up based on the value of ARGV[0].
  430. If unsure, just answer N.
  431. config UCLIBC_HAS___PROGNAME
  432. bool "Support for __progname"
  433. default y
  434. depends on UCLIBC_HAS_PROGRAM_INVOCATION_NAME
  435. help
  436. Some packages (like openssh) like to peek into internal libc
  437. symbols to make their output a bit more user friendly.
  438. At startup, __progname is automatically set up based on the
  439. value of ARGV[0].
  440. If unsure, just answer N.
  441. config UCLIBC_HAS_PTY
  442. bool "Support for pseudo-terminals"
  443. default y
  444. help
  445. This enables support for pseudo-terminals (see man 4 pts
  446. and man 7 pty).
  447. If unsure, just answer Y.
  448. config UNIX98PTY_ONLY
  449. bool "Support only Unix 98 PTYs"
  450. default y
  451. depends on UCLIBC_HAS_PTY
  452. help
  453. If you want to support only Unix 98 PTYs enable this. Some older
  454. applications may need this disabled. For most current programs,
  455. you can generally answer Y.
  456. config UCLIBC_HAS_GETPT
  457. bool "Support getpt() (glibc-compat)"
  458. default n
  459. depends on UCLIBC_HAS_PTY
  460. help
  461. Some packages may need getpt().
  462. All of those are non-standard and can be considered
  463. GNU/libc compatibility.
  464. Either use posix_openpt() or just open /dev/ptmx yourself.
  465. If unsure, just say N.
  466. config ASSUME_DEVPTS
  467. bool "Assume that /dev/pts is a devpts or devfs file system"
  468. default y
  469. depends on UCLIBC_HAS_PTY
  470. help
  471. Enable this if /dev/pts is on a devpts or devfs filesystem. Both
  472. these filesystems automatically manage permissions on the /dev/pts
  473. devices. You may need to mount your devpts or devfs filesystem on
  474. /dev/pts for this to work.
  475. Most people should answer Y.
  476. config UCLIBC_HAS_TM_EXTENSIONS
  477. bool "Support 'struct tm' timezone extension fields"
  478. default y
  479. help
  480. Enabling this option adds fields to 'struct tm' in time.h for
  481. tracking the number of seconds east of UTC, and an abbreviation for
  482. the current timezone. These fields are not specified by the SuSv3
  483. standard, but they are commonly used in both GNU and BSD application
  484. code.
  485. To strictly follow the SuSv3 standard, leave this disabled.
  486. Most people will probably want to answer Y.
  487. config UCLIBC_HAS_TZ_CACHING
  488. bool "Enable caching of the last valid timezone 'TZ' string"
  489. default y
  490. help
  491. Answer Y to enable caching of the last valid 'TZ' string describing
  492. the timezone setting. This allows a quick string compare to avoid
  493. repeated parsing of unchanged 'TZ' strings when tzset() is called.
  494. Most people will answer Y.
  495. config UCLIBC_HAS_TZ_FILE
  496. bool "Enable '/etc/TZ' file support to set a default timezone (uClibc-specific)"
  497. default y
  498. help
  499. Answer Y to enable the setting of a default timezone for uClibc.
  500. Ordinarily, uClibc gets the timezone information exclusively from the
  501. 'TZ' environment variable. In particular, there is no support for
  502. the zoneinfo directory tree or the /etc/timezone file used by glibc.
  503. With this option enabled, uClibc will use the value stored in the
  504. file '/etc/TZ' (default path) to obtain timezone information if the
  505. 'TZ' environment variable is missing or has an invalid value. The
  506. file consists of a single line (newline required) of text describing
  507. the timezone in the format specified for the TZ environment variable.
  508. Simply doing 'echo CST6CDT > /etc/TZ' is enough to create a valid file.
  509. See
  510. http://www.opengroup.org/onlinepubs/007904975/basedefs/xbd_chap08.html
  511. for details on valid settings of 'TZ'.
  512. Most people will answer Y.
  513. config UCLIBC_HAS_TZ_FILE_READ_MANY
  514. bool "Repeatedly read the '/etc/TZ' file"
  515. depends on UCLIBC_HAS_TZ_FILE
  516. default y
  517. help
  518. Answer Y to enable repeated reading of the '/etc/TZ' file even after
  519. a valid value has been read. This incurs the overhead of an open/read/close
  520. for each tzset() call (explicit or implied). However, setting this
  521. will allows applications to update their timezone information if the contents
  522. of the file change.
  523. Most people will answer Y.
  524. config UCLIBC_TZ_FILE_PATH
  525. string "Path to the 'TZ' file for setting the global timezone"
  526. depends on UCLIBC_HAS_TZ_FILE
  527. default "/etc/TZ"
  528. help
  529. This is the path to the 'TZ' file.
  530. Most people will use the default of '/etc/TZ'.
  531. endmenu
  532. menu "Advanced Library Settings"
  533. config UCLIBC_PWD_BUFFER_SIZE
  534. int "Buffer size for getpwnam() and friends"
  535. default 256
  536. range 12 1024
  537. help
  538. This sets the value of the buffer size for getpwnam() and friends.
  539. By default, this is 256. (For reference, glibc uses 1024).
  540. The value can be found using sysconf() with the _SC_GETPW_R_SIZE_MAX
  541. parameter.
  542. config UCLIBC_GRP_BUFFER_SIZE
  543. int "Buffer size for getgrnam() and friends"
  544. default 256
  545. range 256 1024
  546. help
  547. This sets the value of the buffer size for getgrnam() and friends.
  548. By default, this is 256. (For reference, glibc uses 1024).
  549. The value can be found using sysconf() with the _SC_GETGR_R_SIZE_MAX
  550. parameter.
  551. comment "Support various families of functions"
  552. config UCLIBC_LINUX_MODULE_24
  553. bool "Linux kernel module functions"
  554. default y
  555. help
  556. init_module, create_module, query_module, delete_module
  557. are used in linux (allegedly prior to 2.6) for loadable
  558. kernel modules.
  559. Say N if you do not use kernel modules.
  560. config UCLIBC_LINUX_SPECIFIC
  561. bool "Linux specific functions"
  562. default y
  563. help
  564. fstatfs(), inotify_*(), ioperm(), iopl(), madvise(), modify_ldt(),
  565. personality(), ppoll(), setresuid()
  566. config UCLIBC_HAS_GNU_ERROR
  567. bool "Support GNU extensions for error-reporting"
  568. default y
  569. help
  570. Support for the GNU-specific error(), error_at_line(),
  571. void (* error_print_progname)(), error_message_count
  572. functions and variables. Some GNU packages
  573. utilize these for extra useful output, but in general
  574. are not required.
  575. If unsure, just answer N.
  576. config UCLIBC_BSD_SPECIFIC
  577. bool "BSD specific functions"
  578. default y
  579. help
  580. mincore(), getdomainname(), setdomainname()
  581. If unsure, say N.
  582. config UCLIBC_HAS_BSD_ERR
  583. bool "BSD err functions"
  584. default y
  585. help
  586. These functions are non-standard BSD extensions.
  587. err(), errx(), warn(), warnx(), verr(), verrx(), vwarn(), vwarnx()
  588. If unsure, say N.
  589. config UCLIBC_HAS_OBSOLETE_BSD_SIGNAL
  590. bool "BSD obsolete signal functions"
  591. default n
  592. help
  593. These functions are provided as a compatibility interface for
  594. programs that make use of the historical System V signal API.
  595. This API is obsolete:
  596. new applications should use the POSIX signal API (sigaction(2),
  597. sigprocmask(2), etc.).
  598. Affected functions:
  599. sigset(), sighold(), sigrelse(), sigignore()
  600. If unsure, say N.
  601. config UCLIBC_HAS_OBSOLETE_SYSV_SIGNAL
  602. bool "SYSV obsolete signal functions"
  603. default n
  604. help
  605. Use of sysv_signal() should be avoided; use sigaction(2) instead.
  606. If unsure, say N.
  607. config UCLIBC_NTP_LEGACY
  608. bool "ntp_*() aliases"
  609. default n
  610. help
  611. Provide legacy aliases for ntp functions:
  612. ntp_adjtime(), ntp_gettime()
  613. It is safe to say N here.
  614. config UCLIBC_SV4_DEPRECATED
  615. bool "Enable SVr4 deprecated functions"
  616. default n
  617. help
  618. These functions are DEPRECATED in System V release 4.
  619. Say N unless you desparately need one of the functions below:
  620. ustat() [use statfs(2) in your code instead]
  621. config UCLIBC_HAS_REALTIME
  622. bool "Realtime-related family of SUSv functions"
  623. default y
  624. # glitch in mq_{send,receive} currently forces this on
  625. select UCLIBC_HAS_ADVANCED_REALTIME
  626. help
  627. These functions are part of the Timers option and need not
  628. be available on all implementations.
  629. Includes AIO, message-queue, scheduler, semaphore functions:
  630. aio.h
  631. mqueue.h
  632. sched.h
  633. semaphore.h
  634. aio_cancel()
  635. aio_error()
  636. aio_fsync()
  637. aio_read()
  638. lio_listio()
  639. aio_return()
  640. aio_suspend()
  641. aio_write()
  642. clock_getres(), clock_gettime(), clock_settime()
  643. fdatasync()
  644. mlockall(), munlockall()
  645. mlock(), munlock()
  646. mq_close()
  647. mq_getattr()
  648. mq_notify()
  649. mq_open()
  650. mq_receive()
  651. mq_send()
  652. mq_setattr()
  653. mq_unlink()
  654. nanosleep()
  655. sched_getparam()
  656. sched_get_priority_max(), sched_get_priority_min()
  657. sched_getscheduler()
  658. sched_rr_get_interval()
  659. sched_setparam()
  660. sched_setscheduler()
  661. sem_close()
  662. sem_destroy()
  663. sem_getvalue()
  664. sem_init()
  665. sem_open()
  666. sem_post()
  667. sem_trywait(), sem_wait()
  668. sem_unlink()
  669. sigqueue()
  670. sigtimedwait(), sigwaitinfo()
  671. timer_create()
  672. timer_delete()
  673. timer_getoverrun(), timer_gettime(), timer_settime()
  674. config UCLIBC_HAS_ADVANCED_REALTIME
  675. bool "Advanced realtime-related family of SUSv functions"
  676. default y
  677. depends on UCLIBC_HAS_REALTIME
  678. help
  679. These functions are part of the Timers option and need not
  680. be available on all implementations.
  681. clock_getcpuclockid()
  682. clock_nanosleep()
  683. mq_timedreceive()
  684. mq_timedsend()
  685. posix_fadvise()
  686. posix_fallocate()
  687. posix_madvise()
  688. posix_memalign()
  689. posix_mem_offset()
  690. posix_spawnattr_destroy(), posix_spawnattr_init()
  691. posix_spawnattr_getflags(), posix_spawnattr_setflags()
  692. posix_spawnattr_getpgroup(), posix_spawnattr_setpgroup()
  693. posix_spawnattr_getschedparam(), posix_spawnattr_setschedparam()
  694. posix_spawnattr_getschedpolicy(), posix_spawnattr_setschedpolicy()
  695. posix_spawnattr_getsigdefault(), posix_spawnattr_setsigdefault()
  696. posix_spawnattr_getsigmask(), posix_spawnattr_setsigmask()
  697. posix_spawn_file_actions_addclose()
  698. posix_spawn_file_actions_adddup2()
  699. posix_spawn_file_actions_addopen()
  700. posix_spawn_file_actions_destroy()
  701. posix_spawn_file_actions_init()
  702. posix_spawn()
  703. posix_spawnp()
  704. posix_typed_mem_get_info()
  705. pthread_mutex_timedlock()
  706. sem_timedwait()
  707. #config UCLIBC_HAS_TERMIOS
  708. # bool "termios functions"
  709. # default y
  710. # help
  711. # Get and set terminal attributes, line control, get and set baud
  712. # rate.
  713. # termios(), tcgetattr(), tcsetattr(), tcsendbreak(), tcdrain(),
  714. # tcflush(), tcflow(), cfmakeraw(), cfgetospeed(), cfgetispeed(),
  715. # cfsetispeed(), cfsetospeed(), cfsetspeed()
  716. #
  717. # If unsure, say Y.
  718. config UCLIBC_HAS_EPOLL
  719. bool "epoll"
  720. default y
  721. help
  722. epoll_create(), epoll_ctl(), epoll_wait() functions.
  723. config UCLIBC_HAS_XATTR
  724. bool "Extended Attributes"
  725. default y
  726. help
  727. Extended Attributes support.
  728. setxattr()
  729. lsetxattr()
  730. fsetxattr()
  731. getxattr()
  732. lgetxattr()
  733. fgetxattr()
  734. listxattr()
  735. llistxattr()
  736. flistxattr()
  737. removexattr()
  738. lremovexattr()
  739. fremovexattr()
  740. Say N unless you need support for extended attributes and the
  741. filesystems do actually support them.
  742. config UCLIBC_HAS_PROFILING
  743. bool "Profiling support"
  744. default y
  745. help
  746. gcc's -finstrument-functions needs these.
  747. Most people can safely answer N.
  748. config UCLIBC_HAS_CRYPT_IMPL
  749. bool "libcrypt support"
  750. default y
  751. help
  752. libcrypt contains crypt(), setkey() and encrypt()
  753. config UCLIBC_HAS_CRYPT_STUB
  754. bool "libcrypt stubs"
  755. default y
  756. depends on !UCLIBC_HAS_CRYPT_IMPL
  757. help
  758. Standards mandate that crypt(3) provides a stub if it is unavailable.
  759. If you enable this option then stubs for
  760. crypt(), setkey() and encrypt()
  761. will be provided in a small libcrypt.
  762. config UCLIBC_HAS_CRYPT
  763. def_bool y
  764. depends on UCLIBC_HAS_CRYPT_IMPL || UCLIBC_HAS_CRYPT_STUB
  765. endmenu
  766. menuconfig UCLIBC_HAS_NETWORK_SUPPORT
  767. bool "Networking Support"
  768. default y
  769. help
  770. Say N here if you do not need network support.
  771. if UCLIBC_HAS_NETWORK_SUPPORT
  772. config UCLIBC_HAS_SOCKET
  773. bool "Socket support"
  774. default y
  775. help
  776. If you want to include support for sockets then answer Y.
  777. config UCLIBC_HAS_IPV4
  778. bool "IP version 4 support"
  779. default y
  780. select UCLIBC_HAS_SOCKET
  781. help
  782. If you want to include support for the Internet Protocol
  783. (IP version 4) then answer Y.
  784. Most people will say Y.
  785. config UCLIBC_HAS_IPV6
  786. bool "IP version 6 support"
  787. default n
  788. select UCLIBC_HAS_SOCKET
  789. help
  790. If you want to include support for the next version of the Internet
  791. Protocol (IP version 6) then answer Y.
  792. Most people should answer N.
  793. config UCLIBC_HAS_RPC
  794. bool "Remote Procedure Call (RPC) support"
  795. default n
  796. help
  797. If you want to include RPC support, enable this. RPC is rarely used
  798. for anything except for the NFS filesystem. Unless you plan to use NFS,
  799. you can probably leave this set to N and save some space. If you need
  800. to use NFS then you should answer Y.
  801. config UCLIBC_HAS_FULL_RPC
  802. bool "Full RPC support"
  803. depends on UCLIBC_HAS_RPC
  804. default y if !HAVE_SHARED
  805. help
  806. Normally we enable just enough RPC support for things like rshd and
  807. nfs mounts to work. If you find you need the rest of the RPC stuff,
  808. then enable this option. Most people can safely answer N.
  809. config UCLIBC_HAS_REENTRANT_RPC
  810. bool "Reentrant RPC support"
  811. depends on UCLIBC_HAS_RPC
  812. default y if !HAVE_SHARED
  813. help
  814. Most packages utilize the normal (non-reentrant) RPC functions, but
  815. some (like exportfs from nfs-utils) need these reentrant versions.
  816. Most people can safely answer N.
  817. config UCLIBC_USE_NETLINK
  818. bool "Use netlink to query interfaces"
  819. default n
  820. depends on UCLIBC_HAS_SOCKET
  821. help
  822. In newer versions of Linux (2.4.17+), support was added for querying
  823. network device information via netlink rather than the old style
  824. ioctl's. Most of the time, the older ioctl style is sufficient (and
  825. it is smaller than netlink), but if you find that not all of your
  826. devices are being returned by the if_nameindex() function, you will
  827. have to use the netlink implementation.
  828. Most people can safely answer N.
  829. config UCLIBC_HAS_BSD_RES_CLOSE
  830. bool "Support res_close() (bsd-compat)"
  831. default n
  832. help
  833. Answer Y if you desperately want to support BSD compatibility in
  834. the network code.
  835. Most people will say N.
  836. endif
  837. menu "String and Stdio Support"
  838. config UCLIBC_HAS_STRING_GENERIC_OPT
  839. bool "Use glibc generic string functions"
  840. default y
  841. help
  842. Answer Y to use the (tweaked) glibc generic string functions.
  843. In general, they are faster (but 3-5K larger) than the base
  844. uClibc string functions which are optimized solely for size.
  845. Many people will answer Y.
  846. config UCLIBC_HAS_STRING_ARCH_OPT
  847. bool "Use arch-specific string functions"
  848. default y
  849. help
  850. Answer Y to use the arch-specific string functions instead of the
  851. base uClibc versions, which are optimized exclusively for size.
  852. Most people will answer Y, as this has been default behavior
  853. for some time.
  854. config UCLIBC_HAS_CTYPE_TABLES
  855. bool "Use Table Versions Of 'ctype.h' Functions."
  856. default y
  857. help
  858. Answer Y to use table versions of the 'ctype.h' functions.
  859. While the non-table versions are often smaller when building
  860. statically linked apps, they work only in stub locale mode.
  861. Most people will answer Y.
  862. config UCLIBC_HAS_CTYPE_SIGNED
  863. bool "Support Signed Characters In 'ctype.h' Functions."
  864. depends on UCLIBC_HAS_CTYPE_TABLES
  865. default y
  866. help
  867. Answer Y to enable support for passing signed char values to
  868. the 'ctype.h' functions. ANSI/ISO C99 and SUSv3 specify that
  869. these functions are only defined for unsigned char values and
  870. EOF. However, glibc allows negative signed char values as well
  871. in order to support 'broken old programs'.
  872. Most people will answer Y.
  873. choice
  874. prompt "ctype argument checking"
  875. depends on UCLIBC_HAS_CTYPE_TABLES
  876. default UCLIBC_HAS_CTYPE_UNSAFE
  877. help
  878. Please select the invalid arg behavior you want for the 'ctype' functions.
  879. The 'ctype' functions are now implemented using table lookups, with
  880. the arg being the index. This can result in incorrect memory accesses
  881. or even segfaults for args outside of the allowed range.
  882. NOTE: This only affects the 'ctype' _functions_. It does not affect
  883. the macro implementations.
  884. config UCLIBC_HAS_CTYPE_UNSAFE
  885. bool "Do not check -- unsafe"
  886. config UCLIBC_HAS_CTYPE_CHECKED
  887. bool "Detect and handle appropriately"
  888. config UCLIBC_HAS_CTYPE_ENFORCED
  889. bool "Issue a diagnostic and abort()"
  890. endchoice
  891. config UCLIBC_HAS_WCHAR
  892. bool "Wide Character Support"
  893. default n
  894. help
  895. Answer Y to enable wide character support. This will make uClibc
  896. much larger. It is also currently required for locale support.
  897. Most people will answer N.
  898. config UCLIBC_HAS_LOCALE
  899. bool "Locale Support"
  900. select UCLIBC_HAS_WCHAR
  901. select UCLIBC_HAS_CTYPE_TABLES
  902. default n
  903. help
  904. uClibc now has full ANSI/ISO C99 locale support (except for
  905. wcsftime() and collating items in regex). Be aware that enabling
  906. this option will make uClibc much larger.
  907. Enabling UCLIBC_HAS_LOCALE with the default set of supported locales
  908. (169 UTF-8 locales, and 144 locales for other codesets) will enlarge
  909. uClibc by around 300k. You can reduce this size by building your own
  910. custom set of locate data (see extra/locale/LOCALES for details).
  911. uClibc's locale support is still under development. For example,
  912. codesets using shift states are not currently supported. Support is
  913. planned in the next iteration of locale support.
  914. Answer Y to enable locale support. Most people will answer N.
  915. config UCLIBC_PREGENERATED_LOCALE_DATA
  916. bool "Use Pre-generated Locale Data"
  917. depends on UCLIBC_HAS_LOCALE
  918. default n
  919. help
  920. If you are selective and only want locale data for a few particular
  921. locales, or you enjoy pain, or you are a rabid do-it-yourself sort of
  922. person, you can turn this option off and manually walk through the
  923. mostly undocumented procedure needed to generate your own locale
  924. data.
  925. Mere mortals will answer Y and use the default set of pregenerated
  926. locale data, which supports 169 UTF-8 locales, and 144 locales for
  927. other codesets (for the complete list see extra/locale/LOCALES).
  928. config UCLIBC_DOWNLOAD_PREGENERATED_LOCALE_DATA
  929. bool "Automagically Download the Pre-generated Locale Data (if necessary)"
  930. depends on UCLIBC_PREGENERATED_LOCALE_DATA
  931. default n
  932. help
  933. If you would like the build process to use 'wget' to automatically
  934. download the pregenerated locale data, enable this option. Otherwise
  935. you will need to obtain the locale data yourself from:
  936. http://www.uclibc.org/downloads/uClibc-locale-030818.tgz
  937. and place the uClibc-locale-030818.tgz tarball in the extra/locale/
  938. directory.
  939. Go ahead and make life easy for yourself... Answer Y.
  940. config UCLIBC_HAS_XLOCALE
  941. bool "Extended Locale Support (experimental/incomplete)"
  942. depends on UCLIBC_HAS_LOCALE
  943. default n
  944. help
  945. Answer Y to enable extended locale support similar to that provided
  946. by glibc. This is primarily intended to support libstd++ functionality.
  947. However, it also allows thread-specific locale selection via uselocale().
  948. Most people will answer N.
  949. config UCLIBC_HAS_HEXADECIMAL_FLOATS
  950. bool "Support hexadecimal float notation"
  951. depends on UCLIBC_HAS_CTYPE_TABLES
  952. depends on UCLIBC_HAS_FLOATS
  953. default n
  954. help
  955. Answer Y to enable support for hexadecimal float notation in the
  956. (wchar and) char string to floating point conversion functions, as
  957. well as support for the %a and %A conversion specifiers in the
  958. *printf() and *scanf() functions.
  959. Most people will answer N.
  960. config UCLIBC_HAS_GLIBC_DIGIT_GROUPING
  961. bool "Support glibc's \"'\" flag for allowing locale-specific digit grouping"
  962. depends on UCLIBC_HAS_LOCALE
  963. depends on UCLIBC_HAS_FLOATS
  964. default n
  965. help
  966. Answer Y to enable support for glibc's \"'\" flag for allowing locale-specific
  967. digit grouping in base 10 integer conversions and appropriate floating point
  968. conversions in the *printf() and *scanf() functions.
  969. Most people will answer N.
  970. config UCLIBC_HAS_SCANF_LENIENT_DIGIT_GROUPING
  971. bool "Do not require digit grouping when the \"'\" flag is specified"
  972. depends on UCLIBC_HAS_GLIBC_DIGIT_GROUPING
  973. default y
  974. help
  975. Answer Y to make digit grouping optional when the \"'\" flag is specified.
  976. This is the standard glibc behavior. If the initial string of digits
  977. exceeds the maximum group number, the input will be treated as a normal
  978. non-grouped number.
  979. Most people will answer N.
  980. config UCLIBC_HAS_GLIBC_CUSTOM_PRINTF
  981. bool "Support glibc's register_printf_function() (glibc-compat)"
  982. depends on !USE_OLD_VFPRINTF
  983. default n
  984. help
  985. Answer Y to support glibc's register_printf_function() to allow an
  986. application to add its own printf conversion specifiers.
  987. NOTE: This implementation limits the number or registered specifiers to 10.
  988. NOTE: This implementation requires new conversion specifiers to be ASCII
  989. characters (0-0x7f). This is to avoid problems with processing
  990. format strings in locales with different multibyte conversions.
  991. Most people will answer N.
  992. config USE_OLD_VFPRINTF
  993. bool "Use the old vfprintf implementation"
  994. depends on !UCLIBC_HAS_WCHAR
  995. default n
  996. help
  997. Set to true to use the old vfprintf instead of the new. This is roughly
  998. C89 compliant with some extensions, and is much smaller. However, it does
  999. not support wide chars, positional args, or glibc custom printf specifiers.
  1000. Most people will answer N.
  1001. config UCLIBC_PRINTF_SCANF_POSITIONAL_ARGS
  1002. int "Maximum number of positional args. Either 0 or >= 9."
  1003. depends on !USE_OLD_VFPRINTF
  1004. default 9
  1005. help
  1006. Set the maximum number of positional args supported by the printf/scanf
  1007. functions. The Single Unix Specification Version 3 requires a minimum
  1008. value of 9. Setting this to a value lower than 9 will disable positional
  1009. arg support and cause the NL_ARGMAX macro in limits.h to be #undef'd.
  1010. WARNING! The workspace to support positional args is currently allocated
  1011. on the stack. You probably don't want to set this to too high a value.
  1012. Most people will answer 9.
  1013. config UCLIBC_HAS_SCANF_GLIBC_A_FLAG
  1014. bool "Support glibc's 'a' flag for scanf string conversions (not implemented)"
  1015. default n
  1016. help
  1017. NOTE!!! Currently Not Implemented!!! Just A Place Holder!! NOTE!!!
  1018. NOTE!!! Conflicts with an ANSI/ISO C99 scanf flag!! NOTE!!!
  1019. Answer Y to enable support for glibc's 'a' flag for the scanf string
  1020. conversions '%s', '%[', '%ls', '%l[', and '%S'. This is used to
  1021. auto-allocate sufficient memory to hold the data retrieved.
  1022. Most people will answer N.
  1023. choice
  1024. prompt "Stdio buffer size"
  1025. default UCLIBC_HAS_STDIO_BUFSIZ_4096
  1026. help
  1027. Please select a value for BUFSIZ. This will be used by the
  1028. stdio subsystem as the default buffer size for a file, and
  1029. affects fopen(), setvbuf(), etc.
  1030. NOTE: Setting this to 'none' will disable buffering completely.
  1031. However, BUFSIZ will still be defined in stdio.h as 256 because
  1032. many applications use this value.
  1033. config UCLIBC_HAS_STDIO_BUFSIZ_NONE
  1034. bool "none (WARNING - BUFSIZ will be 256 in stdio.h)"
  1035. depends on !UCLIBC_HAS_WCHAR
  1036. config UCLIBC_HAS_STDIO_BUFSIZ_256
  1037. bool "256 (minimum ANSI/ISO C99 value)"
  1038. config UCLIBC_HAS_STDIO_BUFSIZ_512
  1039. bool "512"
  1040. config UCLIBC_HAS_STDIO_BUFSIZ_1024
  1041. bool "1024"
  1042. config UCLIBC_HAS_STDIO_BUFSIZ_2048
  1043. bool "2048"
  1044. config UCLIBC_HAS_STDIO_BUFSIZ_4096
  1045. bool "4096"
  1046. config UCLIBC_HAS_STDIO_BUFSIZ_8192
  1047. bool "8192"
  1048. # If you add more choices, you will need to update uClibc_stdio.h.
  1049. endchoice
  1050. choice
  1051. prompt "Stdio builtin buffer size (uClibc-specific)"
  1052. depends on !UCLIBC_HAS_STDIO_BUFSIZ_NONE
  1053. default UCLIBC_HAS_STDIO_BUILTIN_BUFFER_NONE
  1054. help
  1055. When a FILE is created with fopen(), an attempt is made to allocate
  1056. a BUFSIZ buffer for it. If the allocation fails, fopen() will still
  1057. succeed but the FILE will be unbuffered.
  1058. This option adds a small amount of space to each FILE to act as an
  1059. emergency buffer in the event of a buffer allocation failure.
  1060. Most people will answer None.
  1061. config UCLIBC_HAS_STDIO_BUILTIN_BUFFER_NONE
  1062. bool "None"
  1063. config UCLIBC_HAS_STDIO_BUILTIN_BUFFER_4
  1064. bool "4"
  1065. config UCLIBC_HAS_STDIO_BUILTIN_BUFFER_8
  1066. bool "8"
  1067. # If you add more choices, you will need to update uClibc_stdio.h.
  1068. endchoice
  1069. config UCLIBC_HAS_STDIO_SHUTDOWN_ON_ABORT
  1070. bool "Attempt to shutdown stdio subsystem when abort() is called."
  1071. default n
  1072. help
  1073. ANSI/ISO C99 requires abort() to be asyn-signal-safe. So there was a behavioral
  1074. change made in SUSv3. Previously, abort() was required to have the affect of
  1075. fclose() on all open streams. The wording has been changed to "may" from "shall".
  1076. Most people will answer N.
  1077. config UCLIBC_HAS_STDIO_GETC_MACRO
  1078. bool "Provide a macro version of getc()"
  1079. depends on !UCLIBC_HAS_STDIO_BUFSIZ_NONE
  1080. default y
  1081. help
  1082. Provide a macro version of getc().
  1083. Most people will answer Y.
  1084. config UCLIBC_HAS_STDIO_PUTC_MACRO
  1085. bool "Provide a macro version of putc()"
  1086. depends on !UCLIBC_HAS_STDIO_BUFSIZ_NONE
  1087. default y
  1088. help
  1089. Provide a macro version of putc().
  1090. Most people will answer Y.
  1091. config UCLIBC_HAS_STDIO_AUTO_RW_TRANSITION
  1092. bool "Support auto-r/w transition"
  1093. default y
  1094. help
  1095. Answer Y to enable the stdio subsystem to automaticly transition
  1096. between reading and writing. This relaxes the ANSI/ISO C99 requirement:
  1097. When a file is opened with update mode ('+' as the second or third character
  1098. in the list of mode argument values), both input and output may be performed
  1099. on the associated stream. However, output shall not be directly followed by
  1100. input without an intervening call to the fflush function or to a file
  1101. positioning function (fseek, fsetpos, or rewind), and input shall not be
  1102. directly followed by output without an intervening call to a file positioning
  1103. function, unless the input operation encounters end­of­file.
  1104. Most people will answer Y.
  1105. config UCLIBC_HAS_FOPEN_LARGEFILE_MODE
  1106. bool "Support an fopen() 'F' flag for large file mode (uClibc-specific)"
  1107. depends on UCLIBC_HAS_LFS
  1108. default n
  1109. help
  1110. Answer Y to enable a uClibc-specific extension to allow passing an
  1111. additional 'F' flag in the mode string for fopen() to specify that
  1112. the file should be open()ed with the O_LARGEFILE flag set.
  1113. Most people will answer N.
  1114. config UCLIBC_HAS_FOPEN_EXCLUSIVE_MODE
  1115. bool "Support an fopen() 'x' flag for exclusive mode (glibc-compat)"
  1116. default n
  1117. help
  1118. Answer Y to support a glibc extension to allow passing
  1119. additional 'x' flag in the mode string for fopen() to specify that
  1120. the file should be open()ed with the O_EXCL flag set.
  1121. Most people will answer N.
  1122. config UCLIBC_HAS_GLIBC_CUSTOM_STREAMS
  1123. bool "Support fmemopen(), open_memstream(), and fopencookie() (glibc-compat)"
  1124. default n
  1125. help
  1126. Answer Y to support the glibc 'custom stream' extension functions
  1127. fmemopen(), open_memstream(), and fopencookie().
  1128. NOTE: There are some minor differences regarding seeking behavior.
  1129. Most people will answer N.
  1130. config UCLIBC_HAS_PRINTF_M_SPEC
  1131. bool "Support the '%m' specifier in printf format strings (glibc-compat)"
  1132. default n
  1133. help
  1134. Answer Y to support a glibc extension to interpret '%m' in printf
  1135. format strings as an instruction to output the error message string
  1136. (as generated by strerror) corresponding to the current value of 'errno'.
  1137. Most people will answer N.
  1138. config UCLIBC_HAS_ERRNO_MESSAGES
  1139. bool "Include the errno message text in the library"
  1140. default y
  1141. help
  1142. Answer Y if you want to include the errno message text in the
  1143. library. This adds about 3K to the library, but enables strerror()
  1144. to generate text other than 'Unknown error <number>'.
  1145. Most people will answer Y.
  1146. config UCLIBC_HAS_SYS_ERRLIST
  1147. bool "Support sys_errlist[] (obsolete-compat)"
  1148. depends on UCLIBC_HAS_ERRNO_MESSAGES
  1149. default n
  1150. help
  1151. Answer Y if you want to support the obsolete sys_errlist[].
  1152. This adds about 0.5k to the library, except for the mips
  1153. arch where it adds over 4K.
  1154. WARNING! In the future, support for sys_errlist[] may be unavailable
  1155. in at least some configurations. In fact, it may be removed altogether.
  1156. Most people will answer N.
  1157. Application writers: use the strerror(3) function.
  1158. config UCLIBC_HAS_SIGNUM_MESSAGES
  1159. bool "Include the signum message text in the library"
  1160. default y
  1161. help
  1162. Answer Y if you want to include the signum message text in the
  1163. library. This adds about 0.5K to the library, but enables strsignal()
  1164. to generate text other than 'Unknown signal <number>'.
  1165. Most people will answer Y.
  1166. config UCLIBC_HAS_SYS_SIGLIST
  1167. bool "Support sys_siglist[] (bsd-compat)"
  1168. depends on UCLIBC_HAS_SIGNUM_MESSAGES
  1169. default n
  1170. help
  1171. Answer Y if you want to support sys_siglist[].
  1172. WARNING! In the future, support for sys_siglist[] may be unavailable
  1173. in at least some configurations. In fact, it may be removed altogether.
  1174. Most people will answer N.
  1175. config UCLIBC_HAS_GETTEXT_AWARENESS
  1176. bool "Include gettext awareness"
  1177. depends on UCLIBC_HAS_LOCALE && UCLIBC_MJN3_ONLY
  1178. default n
  1179. help
  1180. NOTE!!! Not yet integrated with strerror and strsignal. NOTE!!!
  1181. Answer Y if you want to include weak stub gettext support and
  1182. make the *strerror*() and strsignal() functions gettext-aware.
  1183. Currently, to get functional gettext functionality you will need
  1184. to use gnu gettext.
  1185. Most people will answer N.
  1186. config UCLIBC_HAS_GNU_GETOPT
  1187. bool "Support gnu getopt"
  1188. default y
  1189. help
  1190. Answer Y if you want to include full gnu getopt() instead of a
  1191. (much smaller) SUSv3 compatible getopt().
  1192. Most people will answer Y.
  1193. config UCLIBC_HAS_GETOPT_LONG
  1194. bool "Support getopt_long/getopt_long_only"
  1195. depends on !UCLIBC_HAS_GNU_GETOPT
  1196. default y
  1197. help
  1198. Answer Y if you want to include getopt_long[_only() used by many
  1199. apps, even busybox.
  1200. Most people will answer Y.
  1201. config UCLIBC_HAS_GNU_GETSUBOPT
  1202. bool "Support glibc getsubopt"
  1203. default y
  1204. help
  1205. Answer Y if you want to include glibc getsubopt() instead of a
  1206. smaller SUSv3 compatible getsubopt().
  1207. Most people will answer Y.
  1208. endmenu
  1209. menu "Big and Tall"
  1210. config UCLIBC_HAS_REGEX
  1211. bool "Regular Expression Support"
  1212. default y
  1213. help
  1214. POSIX regular expression code is really big -- 53k all by itself.
  1215. If you don't use regular expressions, turn this off and save space.
  1216. Of course, if you only statically link, leave this on, since it will
  1217. only be included in your apps if you use regular expressions.
  1218. config UCLIBC_HAS_REGEX_OLD
  1219. bool "Use the older (stable) regular expression code"
  1220. depends on UCLIBC_HAS_REGEX
  1221. default y
  1222. help
  1223. There are two versions of regex. The older (stable) version has
  1224. been in uClibc for quite a long time but hasn't seen too many
  1225. updates. It also has some known issues when dealing with uncommon
  1226. corner cases and multibyte/unicode strings. However, it is quite
  1227. a bit smaller than the newer version.
  1228. If the older version has worked for you and you don't need unicode
  1229. support, then stick with the old version (and say Y here).
  1230. Otherwise, you should use the new version (and say N here).
  1231. config UCLIBC_HAS_FNMATCH
  1232. bool "fnmatch Support"
  1233. default y
  1234. help
  1235. POSIX fnmatch.
  1236. config UCLIBC_HAS_FNMATCH_OLD
  1237. bool "Use the older (stable) fnmatch code"
  1238. depends on UCLIBC_HAS_FNMATCH
  1239. default y
  1240. help
  1241. There are two versions of fnmatch. The older (stable) version has
  1242. been in uClibc for quite a long time but hasn't seen too many
  1243. updates. It also has some known issues when dealing with uncommon
  1244. corner cases and multibyte/unicode strings. However, it is quite
  1245. a bit smaller than the newer version.
  1246. If the older version has worked for you and you don't need unicode
  1247. support, then stick with the old version (and say Y here).
  1248. Otherwise, you should use the new version (and say N here).
  1249. config UCLIBC_HAS_WORDEXP
  1250. bool "Support the wordexp() interface"
  1251. depends on UCLIBC_HAS_GLOB
  1252. default n
  1253. help
  1254. The SuSv3 wordexp() interface performs word expansions per the Shell
  1255. and Utilities volume of IEEE Std 1003.1-2001, Section 2.6. It is
  1256. intended for use by applications that want to implement all of the
  1257. standard Bourne shell expansions on input data.
  1258. This interface is rarely used, and very large. Unless you have a
  1259. pressing need for wordexp(), you should probably answer N.
  1260. config UCLIBC_HAS_FTW
  1261. bool "Support the ftw() and nftw() interfaces"
  1262. default n
  1263. help
  1264. The SuSv3 ftw() and nftw() interfaces are used to recursively descend
  1265. directory paths while repeatedly calling a function.
  1266. This interface is rarely used, and adds around 4.5k. Unless you have
  1267. a pressing need for ftw() or nftw(), you should probably answer N.
  1268. config UCLIBC_HAS_GLOB
  1269. bool "Support the glob() interface"
  1270. depends on UCLIBC_HAS_FNMATCH
  1271. default y
  1272. help
  1273. The glob interface is somewhat large (weighing in at about 2,5k). It
  1274. is used fairly often, but is an option since people wanting to go for
  1275. absolute minimum size may wish to omit it.
  1276. Most people will answer Y.
  1277. config UCLIBC_HAS_GNU_GLOB
  1278. bool "Support gnu glob() interface"
  1279. depends on UCLIBC_HAS_GLOB
  1280. default n
  1281. help
  1282. The gnu glob interface is somewhat larger (weighing in at about 4,2k) than
  1283. it's SuSv3 counterpart (and is out of date). It is an old copy from glibc and
  1284. does not support all the GNU specific options.
  1285. Answer Y if you want to include full gnu glob() instead of the smaller SUSv3
  1286. compatible glob().
  1287. Most people will answer N.
  1288. endmenu
  1289. menu "Library Installation Options"
  1290. config SHARED_LIB_LOADER_PREFIX
  1291. string "Shared library loader path"
  1292. depends on HAVE_SHARED
  1293. default "$(RUNTIME_PREFIX)lib"
  1294. help
  1295. When using shared libraries, this path is the location where the
  1296. shared library will be invoked. This value will be compiled into
  1297. every binary compiled with uClibc.
  1298. For a typical target system this should be set to "/lib", such that
  1299. 'make install' will install /lib/ld-uClibc.so.0.
  1300. BIG FAT WARNING:
  1301. If you do not have a shared library loader with the correct name
  1302. sitting in the directory this points to, your binaries will not
  1303. run.
  1304. config RUNTIME_PREFIX
  1305. string "uClibc runtime library directory"
  1306. default "/usr/$(TARGET_ARCH)-linux-uclibc/"
  1307. help
  1308. RUNTIME_PREFIX is the directory into which the uClibc runtime
  1309. libraries will be installed. The result will look something
  1310. like the following:
  1311. $(RUNTIME_PREFIX)/
  1312. lib/ <contains all runtime libraries>
  1313. usr/bin/ldd <the ldd utility program>
  1314. sbin/ldconfig <the ldconfig utility program>
  1315. This value is used by the 'make install' Makefile target. Since this
  1316. directory is compiled into the shared library loader, you will need to
  1317. recompile uClibc if you change this value...
  1318. For a typical target system this should be set to "/", such that
  1319. 'make install' will install /lib/libuClibc-<VERSION>.so
  1320. config DEVEL_PREFIX
  1321. string "uClibc development environment directory"
  1322. default "/usr/$(TARGET_ARCH)-linux-uclibc/usr/"
  1323. help
  1324. DEVEL_PREFIX is the directory into which the uClibc development
  1325. environment will be installed. The result will look something
  1326. like the following:
  1327. $(DEVEL_PREFIX)/
  1328. lib/ <contains static libs>
  1329. include/ <Where all the header files go>
  1330. This value is used by the 'make install' Makefile target when
  1331. installing a uClibc development environment.
  1332. For a typical target system this should be set to "/usr", such that
  1333. 'make install' will install /usr/include/<header files>.
  1334. endmenu
  1335. menu "Security options"
  1336. config UCLIBC_BUILD_PIE
  1337. bool "Build utilities as ET_DYN/PIE executables"
  1338. depends on HAVE_SHARED
  1339. depends on TARGET_arm || TARGET_frv || TARGET_i386 || TARGET_mips || TARGET_powerpc
  1340. select FORCE_SHAREABLE_TEXT_SEGMENTS
  1341. default n
  1342. help
  1343. If you answer Y here, ldd and iconv are built as ET_DYN/PIE executables.
  1344. It requires gcc-3.4 and binutils-2.15 (for arm 2.16) or later.
  1345. More about ET_DYN/PIE binaries on <http://pax.grsecurity.net/> .
  1346. WARNING: This option also enables FORCE_SHAREABLE_TEXT_SEGMENTS, so all
  1347. libraries have to be built with -fPIC or -fpic, and all assembler
  1348. functions must be written as position independent code (PIC).
  1349. config UCLIBC_HAS_ARC4RANDOM
  1350. bool "Include the arc4random() function"
  1351. default n
  1352. help
  1353. Answer Y to support the OpenBSD-like arc4random() function. This
  1354. function picks a random number between 0 and N, and will always return
  1355. something even if the random driver is dead. If urandom fails then
  1356. gettimeofday(2) will be used as the random seed. This function is
  1357. designed to be more dependable than invoking /dev/urandom directly.
  1358. OpenSSL and OpenNTPD currently support this function.
  1359. Most people will answer N.
  1360. config HAVE_NO_SSP
  1361. bool
  1362. default n
  1363. config UCLIBC_HAS_SSP
  1364. bool "Support for propolice smashing stack protector"
  1365. depends on !HAVE_NO_SSP
  1366. default n
  1367. help
  1368. Add propolice smashing stack protector to the library.
  1369. This requires GCC 4.1, supporting the -fstack-protector[-all]
  1370. options. GCC does not have to provide libssp, the needed
  1371. functions are added to ldso/libc instead.
  1372. Most people will answer N.
  1373. config UCLIBC_HAS_SSP_COMPAT
  1374. bool "Support for gcc-3.x propolice smashing stack protector"
  1375. depends on UCLIBC_HAS_SSP
  1376. default n
  1377. help
  1378. Add gcc-3.x propolice smashing stack protector to the library.
  1379. This requires a patched version of GCC, supporting the
  1380. -fstack-protector[-all] options, with the __guard and
  1381. __stack_smash_handler functions removed from libgcc.
  1382. These functions are added to ldso/libc instead.
  1383. More information at:
  1384. <http://www.research.ibm.com/trl/projects/security/ssp/>
  1385. Most people will answer N.
  1386. config SSP_QUICK_CANARY
  1387. bool "Use simple guard values without accessing /dev/urandom"
  1388. depends on UCLIBC_HAS_SSP
  1389. default n
  1390. help
  1391. Use gettimeofday(2) to define the __guard without accessing
  1392. /dev/urandom.
  1393. WARNING: This makes smashing stack protector vulnerable to timing
  1394. attacks.
  1395. Most people will answer N.
  1396. choice
  1397. prompt "Propolice protection blocking signal"
  1398. depends on UCLIBC_HAS_SSP
  1399. default PROPOLICE_BLOCK_ABRT if ! DODEBUG
  1400. default PROPOLICE_BLOCK_SEGV if DODEBUG
  1401. help
  1402. "abort" use SIGABRT to block offending programs.
  1403. This is the default implementation.
  1404. "segfault" use SIGSEGV to block offending programs.
  1405. Use this for debugging.
  1406. If unsure, answer "abort".
  1407. config PROPOLICE_BLOCK_ABRT
  1408. bool "abort"
  1409. config PROPOLICE_BLOCK_SEGV
  1410. bool "segfault"
  1411. endchoice
  1412. config UCLIBC_BUILD_SSP
  1413. bool "Build uClibc with propolice protection"
  1414. depends on UCLIBC_HAS_SSP
  1415. default n
  1416. help
  1417. Build all libraries and executables with propolice protection enabled.
  1418. config UCLIBC_BUILD_RELRO
  1419. bool "Build uClibc with RELRO"
  1420. depends on HAVE_SHARED
  1421. default y
  1422. help
  1423. Build all libraries and executables with -z relro.
  1424. config UCLIBC_BUILD_NOW
  1425. bool "Build uClibc with NOW"
  1426. depends on HAVE_SHARED
  1427. default n
  1428. help
  1429. Build all libraries and executables with -z now.
  1430. config UCLIBC_BUILD_NOEXECSTACK
  1431. bool "Build uClibc with noexecstack marking"
  1432. default y
  1433. help
  1434. Mark all assembler files as noexecstack. This will result in marking
  1435. all libraries and executables built against uClibc not requiring
  1436. executable stack.
  1437. endmenu
  1438. menu "uClibc development/debugging options"
  1439. config CROSS_COMPILER_PREFIX
  1440. string "Cross-compiling toolchain prefix"
  1441. default ""
  1442. help
  1443. The prefix used to execute your cross-compiling toolchain. For
  1444. example, if you run 'arm-linux-uclibc-gcc' to compile something,
  1445. then enter 'arm-linux-uclibc-' here.
  1446. config UCLIBC_EXTRA_CFLAGS
  1447. string "Enter any extra CFLAGS to use to build uClibc"
  1448. default ""
  1449. help
  1450. Add any additional CFLAGS to be used to build uClibc.
  1451. config DODEBUG
  1452. bool "Build uClibc with debugging symbols"
  1453. default n
  1454. select EXTRA_WARNINGS
  1455. help
  1456. Say Y here if you wish to compile uClibc with debugging symbols.
  1457. This will allow you to use a debugger to examine uClibc internals
  1458. while applications are running. This increases the size of the
  1459. library considerably and should only be used when doing development.
  1460. If you are doing development and want to debug uClibc, answer Y.
  1461. Otherwise, answer N.
  1462. config DODEBUG_PT
  1463. bool "Build pthread with debugging output"
  1464. depends on UCLIBC_HAS_THREADS && LINUXTHREADS_OLD
  1465. default n
  1466. help
  1467. Enable debug output in libpthread. This is only useful when doing
  1468. development in libpthread itself.
  1469. Otherwise, answer N.
  1470. config DOSTRIP
  1471. bool "Strip libraries and executables"
  1472. default y
  1473. depends on !DODEBUG
  1474. help
  1475. Say Y here if you do wish to strip all uClibc libraries and
  1476. executables. No stripping increases the size of the binaries
  1477. considerably, but makes it possible to debug uClibc libraries.
  1478. Most people will answer Y.
  1479. config DOASSERTS
  1480. bool "Build uClibc with run-time assertion testing"
  1481. default n
  1482. help
  1483. Say Y here to include runtime assertion tests.
  1484. This enables runtime assertion testing in some code, which can
  1485. increase the size of the library and incur runtime overhead.
  1486. If you say N, then this testing will be disabled.
  1487. config SUPPORT_LD_DEBUG
  1488. bool "Build the shared library loader with debugging support"
  1489. depends on HAVE_SHARED
  1490. default n
  1491. help
  1492. Answer Y here to enable all the extra code needed to debug the uClibc
  1493. native shared library loader. The level of debugging noise that is
  1494. generated depends on the LD_DEBUG environment variable... Just set
  1495. LD_DEBUG to something like: 'LD_DEBUG=token1,token2,.. prog' to
  1496. debug your application. Diagnostic messages will then be printed to
  1497. the stderr.
  1498. For now these debugging tokens are available:
  1499. detail provide more information for some options
  1500. move display copy processing
  1501. symbols display symbol table processing
  1502. reloc display relocation processing; detail shows the relocation patch
  1503. nofixups never fixes up jump relocations
  1504. bindings displays the resolve processing (function calls); detail shows the relocation patch
  1505. all Enable everything!
  1506. The additional environment variable:
  1507. LD_DEBUG_OUTPUT=file
  1508. redirects the diagnostics to an output file created using
  1509. the specified name and the process id as a suffix.
  1510. An excellent start is simply:
  1511. $ LD_DEBUG=binding,move,symbols,reloc,detail ./appname
  1512. or to log everything to a file named 'logfile', try this
  1513. $ LD_DEBUG=all LD_DEBUG_OUTPUT=logfile ./appname
  1514. If you are doing development and want to debug uClibc's shared library
  1515. loader, answer Y. Mere mortals answer N.
  1516. config SUPPORT_LD_DEBUG_EARLY
  1517. bool "Build the shared library loader with early debugging support"
  1518. depends on HAVE_SHARED
  1519. default n
  1520. help
  1521. Answer Y here to if you find the uClibc shared library loader is
  1522. crashing or otherwise not working very early on. This is typical
  1523. only when starting a new port when you haven't figured out how to
  1524. properly get the values for argc, argv, environ, etc. This method
  1525. allows a degree of visibility into the very early shared library
  1526. loader initialization process. If you are doing development and want
  1527. to debug the uClibc shared library loader early initialization,
  1528. answer Y. Mere mortals answer N.
  1529. config UCLIBC_MALLOC_DEBUGGING
  1530. bool "Build malloc with debugging support"
  1531. depends on MALLOC || MALLOC_STANDARD
  1532. default n
  1533. help
  1534. Answer Y here to compile extra debugging support code into malloc.
  1535. Malloc debugging output may then be enabled at runtime using the
  1536. MALLOC_DEBUG environment variable.
  1537. The value of MALLOC_DEBUG should be an integer, which is interpreted as
  1538. a bitmask with the following bits:
  1539. 1 - do extra consistency checking
  1540. 2 - output messages for malloc/free calls and OS allocation calls
  1541. 4 - output messages for the `MMB' layer
  1542. 8 - output messages for internal malloc heap manipulation calls
  1543. Because this increases the size of malloc appreciably (due to strings
  1544. etc), you should say N unless you need to debug a malloc problem.
  1545. config WARNINGS
  1546. string "Compiler Warnings"
  1547. default "-Wall"
  1548. help
  1549. Set this to the set of gcc warnings you wish to see while compiling.
  1550. config EXTRA_WARNINGS
  1551. bool "Enable extra annoying warnings"
  1552. default n
  1553. help
  1554. If you wish to build with extra warnings enabled, say Y here.
  1555. config DOMULTI
  1556. bool "Compile all sources at once into an object"
  1557. default n
  1558. help
  1559. Set this to compile all sources at once into an object (IMA).
  1560. config UCLIBC_MJN3_ONLY
  1561. bool "Manuel's hidden warnings"
  1562. default n
  1563. help
  1564. Answer Y here to see all Manuel's personal notes, warnings, and todos.
  1565. Most people will answer N.
  1566. endmenu