summaryrefslogtreecommitdiffstats
path: root/extra/config
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* A few cosmetic adjustments, and fixup the makefile a bitEric Andersen2002-11-024-13/+15
|
* Oops. Kill generated binaries.Eric Andersen2002-10-319-5227/+7
|
* Ok, this commit is _huge_ and its gonna change the world. I'veEric Andersen2002-10-3134-0/+18282
been working on a new config system on and off for about 6 months now, but I've never been fully satisfied. Well, I'm finally am happy with the new config system, so here it is. This completely removes the old uClibc configuration system, and replaces it with an entirely new system based on LinuxKernelConf, from http://www.xs4all.nl/~zippel/lc/ As it turns out, Linus has just merged LinuxKernelConf into Linux 2.5.45, so it looks like I made the right choice. I have thus far updated only x86. I'll be updating the other architectures shortly. -Erik