summaryrefslogtreecommitdiff
path: root/package/config
AgeCommit message (Collapse)Author
2010-11-07config: fix crash with too long pathsPeter Korsgaard
Closes #2737 Use PATH_MAX rather that 128 for path buffers. Patch from kernel 1408b15b98 (kconfig: Use PATH_MAX instead of 128 for path buffer sizes) by Will Newton. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-05package/config: .gitignore cleanupPaulius Zaleckas
Now all configure generated files go to output directory. Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-03package/config: update quilt seriesYann E. MORIN
Update the patches so they apply without offset Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-03Makefile: move version string from Config.in into MakefileYann E. MORIN
This re-instates writing the version string in .config headers, and no longer provides it as a kconfig symbol in .config (it is now a variable in the Makefile, and in the environment). Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-09-05kconfig: remove CONFIG_ references in search/helpPeter Korsgaard
We use BR2_*, not CONFIG_* - So remove references to CONFIG_ in search/help windows. Long term we should probably consider doing s/^BR2_/CONFIG_/ to get rid of all this though. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-09-01Tell git to ignore the Quilt internal directory in package/configThomas Petazzoni
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-09-01Remove unnecessary ugly hacks in package/configThomas Petazzoni
Those hacks should not be needed and they even make "mconf" fail to save the configuration file in $(CONFIG_DIR). Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-09-01Add support for the new nconf configuration toolThomas Petazzoni
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-09-01Bump package/config to 2.6.36-rc1Thomas Petazzoni
The goal is to be able to use savedefconfig to generate minimal defconfig files. Four of our patches are removed since the modifications have been merged upstream. The new nconf configuration utility has appeared. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-09-01Clean up our patches against kconfigThomas Petazzoni
Our kconfig-to-buildroot2.patch hasn't been kept up to date with all the changes made into package/config, and a single patch wasn't very practical to maintain all our changes. Therefore, this commit adds a package/config/patches directory, which contains a Quilt series of patches that correspond to our modifications to the kconfig mechanism. The huge kconfig-to-buildroot2.patch has been split into 16 smaller patches. The purpose of some of the modifications has been clearly identified, while some others were not identified. The 16 patches together do match exactly the old kconfig-to-buildroot2.patch. We have been very careful in making sure that we wouldn't loose any of our modifications. The only modifications made are : * Instead of renaming the kernel Makefile to Makefile.kconfig and naming the Buildroot Makefile just 'Makefile', we instead keep the original package/config/Makefile from the kernel scripts/kconfig/Makefile and name the Buildroot Makefile package/config/Makefile.br. The main Buildroot Makefile is modified accordingly. * The documentation README.buildroot2 is updated to explain how to upgrade to a newer version of scripts/kconfig. * The kconfig-language.txt documentation is removed, as anybody can easily find it in the kernel sources so there's no need to duplicate it here. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-07-23kconfig: implement KCONFIG_PROBABILITY for rand{,package}configPeter Korsgaard
rand{,package}config enables configuration options with 50% probability, which isn't always what we want in BR (because the "big" configs take a long time to build and limits the chance of a randconfig detecting a missing dependency), so introduce a KCONFIG_PROBABILITY environment variable to tweak the probability between 0 (all options off) and 100 (all options on). To use, simply set the environment variable before running make or pass it on the make command line - E.G. make randpackageconfig KCONFIG_PROBABILITY=10 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-07-22kconfig: make rand{,package}config fairPeter Korsgaard
Give each boolean symbol a 50% chance of getting enabled, rather than 67%. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-07-01Makefile: fixup make distclean after kconfig build in BUILD_DIRPeter Korsgaard
We don't actually need to explicitly clean the kconfig stuff, as distclean already removes the entire BUILD_DIR, but fix up the packag/config makefile to do the right thing if make clean/distclean is called manually for completeness. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-06-24make gconfig: fix build on Fedora-13Slava Zanko
Closes #2095 Avoids error like: /usr/bin/ld: /dot-dot-dot/buildroot/output/build/buildroot-config/kconfig_load.o: undefined reference to symbol 'dlsym@@GLIBC_2.2.5' Need to add -ldl to list of GTK2 development libraries. Signed-off-by: Slava Zanko <slavazanko@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-06-21check-lxdialog.sh: use mktemp for temporary filePeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-06-21package/config: create .depend in object directoryPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-06-21kconfig: build in BUILD_DIR/buildroot-configPeter Korsgaard
This way the main buildroot dir can be completely read-only for out-of-tree builds Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-06-21cleanup/simplify kconfig changes for O= buildsPeter Korsgaard
No functional change. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-06-21Move config files into output directory for out-of-tree buildWill Wagner
Closes #1213 Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-06-05package/config: also add gconfig change to patchPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-06-05Makefile: support gconfig (GTK-based configurator) similar to xconfigPeter Korsgaard
Support the GTK variant of the graphical kconfig configurator as an alternative to the Qt3-based one. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-06-05kconfig: fix qconf (make xconfig) linkingPeter Korsgaard
qconf is written in C++, so use HOSTCXX instead of HOSTCC, and pass the correct flags. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-05-22package/config: really cleanYann E. MORIN
Signed-off-by: Yann E. MORIN <yann.morin.1998@anciens.enib.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-08-03kconfig: fix oldconfig to generate .config.cmdThomas Petazzoni
Since the recent update of Kconfig to the Kconfig infrastructure found in 2.6.30 kernels, make oldconfig was broken because it didn't generate the .config.cmd file. This is done by a call to the conf_write_autoconf() function. Moreover, this process was also broken because the conf_get_autoconfig_name() function was reading the environment variable BUILDROOT_AUTOCONF while the main Makefile is passing it as KCONFIG_AUTOCONFIG. We also remove the fallback on "$(BR2_DEPENDS_DIR)/config/auto.conf" since we are not able to expand BR2_DEPENDS_DIR at this point. Therefore, the KCONFIG_AUTOCONFIG envionment variable *must* be set. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2009-07-30kconfig: tell git to ignore new generated filesThomas Petazzoni
The update of kconfig and the addition of xconfig support generates more files in package/config/. Tell git to ignore them. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2009-07-27xconfig: Save the configuration properly in qconfThomas Petazzoni
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2009-07-27xconfig: Change titlebar to Buildroot ConfigurationThomas Petazzoni
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2009-07-27config: Add support for xconfigAlper Yildirim
It involved: * Modifying the top-level Makefile to create the xconfig target, and the $(CONFIG)/qconf target to compile the qconf utility * Modifying the package/config/Makefile magic so that C++ files and binaries gets linked properly, re-using the package/config/Makefile.kconfig logic inherited from the kernel * Hacking a little bit package/config/Makefile.kconfig in a way similar to the modifications done for the mconf (menuconfig interface) Signed-off-by: Alper Yildirim <ayildirim@aselsan.com>
2009-07-27config: Update package/config to Kconfig 2.6.30Alper Yildirim
Update the package/config stuff with the code available in the Linux kernel 2.6.30. Signed-off-by: Alper Yildirim <ayildirim@aselsan.com>
2009-05-04Add .gitignore filesangus salkeld
[peter: add /.config] Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2008-12-13menuconfig: don't prepend CONFIG_ to symbols in help textPeter Korsgaard
2008-10-16kconfig: only warn about long help lines, not other types of linesPeter Korsgaard
We have some pretty long depends / default y|n lines in BR, which it shouldn't complain about.
2008-08-27kconfig: warn about overlong lines in help-textsPeter Korsgaard
From busybox r22852.
2008-06-19package/config: add gettext helperPeter Korsgaard
From Bernhards tree (2b693d78)
2008-06-19package/config: rebase from upstream (2.6.24.4)Peter Korsgaard
From Bernhards tree (1af211ea)
2008-06-19package/config: rebase from upstream (2.6.23.14)Peter Korsgaard
From Bernhards tree (2737cfdd)
2008-06-19package/config: cygwin fixPeter Korsgaard
- pass HOST_LOADLIBES down to make mconf for cygwin - fix link-order WRT HOST_LOADLIBES From Bernhards tree (91018d95)
2007-09-29- pull "kconfig: oldconfig shall not set symbols if it does not need to"Bernhard Reutner-Fischer
2007-09-29- forgot to svn add kconfig-language.txtBernhard Reutner-Fischer
2007-09-25- add a version and display it in the configurationBernhard Reutner-Fischer
2007-09-23- add the $(BASE_TARGETS) per defaultBernhard Reutner-Fischer
2007-09-23- thinking loud about auto-generating dependencies for make(1)Bernhard Reutner-Fischer
Don't use this, it doesn't work yet. Thoughs welcome. Like: We should probably use the sym->text and not fiddle with the name since the name looses information ('_' != '-' in host-fakeroot). This would not be too robust, i fear, since the name can contain additional, arbitrary info. Also, the real 'depends' are a little bit ugly in kconfig. There doesn't seem to be a nice property that holds reverse deps that are only contain selected symbols. Thoughts?
2007-09-23- search env for BUILDROOT_CONFIG for use as a config file; defaults to .configBernhard Reutner-Fischer
2007-09-23- pull kbuild from 2.6.22.7. This should fix the ncurses detection for dylib ↵Bernhard Reutner-Fischer
et al
2007-09-12- revert r19825. Fix this in the kernel instead and read README.buildroot2Bernhard Reutner-Fischer
2007-09-12 Watching all the warnings on package/config finally got to me.Ulf Samuelsson
A patch that clears the gcc warnings from config with cast changes only. thanks, I feel better now, Rick Foos <rick@synchromeshcomputing.com>
2007-08-22- global whitespace trimmingBernhard Reutner-Fischer
2007-07-27- fix building mconf with curses flagsBernhard Reutner-Fischer
- make sure to rm .config when the first 'make menuconfig' was interrupted and thus no .config.cmd was created.
2007-07-24- no features with Apple Inc. (Heikki Lindholm)Bernhard Reutner-Fischer
2007-07-18Fix INITRAMFS target that was broken. Get rid of config stuff out of the ↵"Steven J. Hill"
top-level directory. Finally fix Linux kernel module building such that modules are built and installed first followed by rest of packages. This allows for packages to build external Linux kernel modules.