summaryrefslogtreecommitdiffstats
path: root/extra/config
Commit message (Collapse)AuthorAgeFilesLines
* realclean: wipe kconfig objectsBernhard Reutner-Fischer2009-11-221-2/+2
| | | | | Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* silence rule overridingBernhard Reutner-Fischer2009-11-221-2/+2
| | | | | Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* support building out-of-treeBernhard Reutner-Fischer2009-08-1910-81/+201
| | | | | | | Handle O= Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* Synch with trunk @ 24071.Carmelo Amoroso2008-11-1720-408/+547
| | | | | Step 2 locale stuff - configuration and top Makefiles
* Synch with trunk at rev 22997.Carmelo Amoroso2008-07-313-10/+10
| | | | | | | Basically trailing whitespaces removal, fix non standard keywords asm -> __asm__ inline -> __inline__ and some minor changes on trunk. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Remove .depend when doing distcleanCarmelo Amoroso2008-07-291-1/+1
|
* Synch extra/config with trunkCarmelo Amoroso2008-07-0938-1770/+1805
|
* .depend not under conf mgmtCarmelo Amoroso2008-07-091-12/+0
|
* STEP 9: synch extra directoryCarmelo Amoroso2008-04-251-242/+0
| | | | Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Make script executableCarmelo Amoroso2008-03-181-0/+0
|
* Add missing file in extra/configCarmelo Amoroso2008-03-161-0/+242
|
* Merge nptl branch tree with trunk. Carmelo Amoroso2008-03-1642-5237/+10241
| | | | | | Step 5: merge extra/config folder Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Merge from trunk."Steven J. Hill"2006-08-213-5/+4
|
* Merge from trunk. Going pretty good so far. Kind of. Okay, not really."Steven J. Hill"2006-02-258-85/+131
|
* Merge from trunk that gives us a valid NPTL dynamic loader and the start of ↵"Steven J. Hill"2005-11-291-111/+4
| | | | the new build system. I have probably another 300 and some files to go *sigh*.
* Copy from trunk."Steven J. Hill"2005-11-291-0/+129
|
* First batch of merges for new build system."Steven J. Hill"2005-11-191-15/+4
|
* Merge with latest changes from the trunk."Steven J. Hill"2005-08-041-2/+1
|
* Updated to match Linux 2.6.11.Peter Kjellerstedt2005-04-1828-2958/+572
|
* Copy vendor/linux/2.6.11/scripts/lxdialog toPeter Kjellerstedt2005-04-1812-0/+2796
| | | | trunk/uClibc/extra/config/lxdialog.
* Let mconfig support options specified using the menuconfig directivePeter Kjellerstedt2005-03-211-0/+5
| | | | | again (this code snippet seems to have vanished somewhere between the original Linux 2.6 kconfig code and here).
* no more cvsMike Frysinger2005-02-121-8/+0
|
* As noticed by egor duda, current_menu is declared as 'extern struct menuEric Andersen2004-10-081-1/+1
| | | | | *current_menu;' in scripts/config/lkc.h line 63, and this conflicts with static definition in mconf.c.
* Peter Kjellerstedt at axis.com writes:Eric Andersen2004-07-159-108/+174
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Hello, the attached patch should bring extra/config in line with the Linux 2.6.7 sources. The following are the commit messages for the respective files from the Linux bk-repository: checklist.c: * fix menuconfig choice item help display confdata.c: * config: choice fix * kconfig: don't rename target dir when saving config expr.c, expr.h: * config: disable debug prints mconf.c: * fix menuconfig choice item help display menu.c: * Kconfig: use select statements symbol.c: * config: choice fix * Avoid bogus warning about recursive dependencies * c99 struct initialiser conversions textbox.c: * janitor: don't init statics to 0 util.c: * fix lxdialog behaviour //Peter
* Minor updates from linux 2.6.1Eric Andersen2004-01-163-15/+32
|
* As Peter S. Mazinger has pointed out, the config system wantsEric Andersen2003-11-041-1/+1
| | | | | some defaults. So give it some empty defaults and let people select their own options.
* Rework the config system. Better utilize the Kconfig languageEric Andersen2003-11-042-20/+46
| | | | | which should simplify enabling arbitrary architectures. -Erik
* Doh! In include/bits/uClibc_config.h when we define things, we appropriatelyEric Andersen2003-10-211-1/+1
| | | | | | | | | | | | | | | | | | | prepend "__". Unfortunately, when we #undef things, we do not prepend the "__". This results in collateral damage to unsuspecting applications as we undefine random unrelated macros. Oops. For example, when compiling xfree86, libGLcore.a defines MALLOC for its own usage. But include/bits/uClibc_config.h then does an #undef MALLOC #define __MALLOC_930716__ 1 which inadvertantly trashes the define from libGLcore.... Ouch. The autogenerated include/bits/uClibc_config.h should instead have contained: #undef __MALLOC__ #define __MALLOC_930716__ 1 This patch makes that happen.
* Peter Kjellerstedt writes:Eric Andersen2003-10-181-3/+3
| | | | | | | rm.patch: * Define $(RM) as rm -f in Rules.mak and test/Rules.mak (this is the same definition as gmake uses by default). * Change all occurrences of rm and rm -f into $(RM).
* Looks like I missed a spotEric Andersen2003-08-052-2/+2
|
* Merge/rework config system per the latest from linux-2.6.0-test2Eric Andersen2003-08-0513-2553/+3449
| | | | -Erik
* Patch from Pavel Roskin to fixup toplevel help textEric Andersen2003-06-301-3/+12
|
* Avoid errors with buggy preprocessorsEric Andersen2003-03-311-2/+2
|
* Patch from Jordan Crouse to avoid potential rendering problemsEric Andersen2003-03-101-1/+1
|
* Patch from Brett Hunt at micron.com to fixup potential segfaultsEric Andersen2003-01-231-4/+4
| | | | during 'make menuconfig'
* Patch from Robert Schwebel -- support ncurses installed in /usr/localEric Andersen2003-01-111-1/+8
|
* Patch from Stefan Allius. Only build config stuff when needed.Eric Andersen2002-12-171-0/+3
|
* Only build the ncurses stuff when it is needed, based on aEric Andersen2002-12-131-24/+23
| | | | | | patch from Stefan Allius (though the extra/config/Makefile rework is mine), -Erik
* Change some variable names so we are more consistant with whatEric Andersen2002-12-041-9/+8
| | | | | the linux kernel uses. -Erik
* I forgot to kill these files in my last commit.Eric Andersen2002-12-042-227/+0
| | | | -Erik
* This is based on a patch posted to lkml by Petr Baudis on 23 Nov, which wasEric Andersen2002-12-0413-377/+273
| | | | | | | then considerably hacked up by me. This eliminates the separate lxdialog and instead directly uses the lxdialog internals. This allows 'make menuconfig' to be much faster. -Erik
* Update from upstreamEric Andersen2002-11-092-11/+9
|
* Patch from Stefan Allius: avoid implicit casting of void *(64bit) to int(32bit)Eric Andersen2002-11-091-1/+1
|
* Some minor changes from Stefan Allius to make conf andEric Andersen2002-11-084-8/+9
| | | | mconf compile under Solaris.
* Merge an update from upstreamEric Andersen2002-11-089-1075/+1380
|
* Update doc referenceEric Andersen2002-11-081-0/+255
|
* Fixed makefiles to remove binaries generated for the configuration"Steven J. Hill"2002-11-071-0/+1
| | | | menu system when doing a 'make clean'.
* Increase maximum .config line size to 1024.Eric Andersen2002-11-061-2/+2
|
* Recognize 'n' tristate/boolean symbol value in the .config file,Eric Andersen2002-11-061-4/+7
| | | | | allowing more convenient manual editing of the .config file. Patch by Petr Baudis, skimmed from linux-kernel mailing list.
* Patch from M. R. Brown to fix 'make defconfig'Eric Andersen2002-11-051-0/+7
|