support: move kconfig stuff from package/config to support/kconfig
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Wed, 31 Aug 2011 21:35:05 +0000 (23:35 +0200)
committerPeter Korsgaard <jacmet@sunsite.dk>
Sat, 17 Sep 2011 06:17:06 +0000 (08:17 +0200)
commit56da3859c770b83631ebae810dfb3024c1a9cbd2
tree0f253485b64572a2ec87b6d91cd07f09d2fab652
parent59a326b934737483531c49c99acda7874c72e335
support: move kconfig stuff from package/config to support/kconfig

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
113 files changed:
Makefile
package/config/.gitignore [deleted file]
package/config/Makefile [deleted file]
package/config/Makefile.br [deleted file]
package/config/POTFILES.in [deleted file]
package/config/README.buildroot2 [deleted file]
package/config/check.sh [deleted file]
package/config/conf.c [deleted file]
package/config/confdata.c [deleted file]
package/config/expr.c [deleted file]
package/config/expr.h [deleted file]
package/config/foo.h [deleted file]
package/config/gconf.c [deleted file]
package/config/gconf.glade [deleted file]
package/config/images.c [deleted file]
package/config/kconfig_load.c [deleted file]
package/config/kxgettext.c [deleted file]
package/config/lex.zconf.c_shipped [deleted file]
package/config/lkc.h [deleted file]
package/config/lkc_proto.h [deleted file]
package/config/lxdialog/.gitignore [deleted file]
package/config/lxdialog/BIG.FAT.WARNING [deleted file]
package/config/lxdialog/check-lxdialog.sh [deleted file]
package/config/lxdialog/checklist.c [deleted file]
package/config/lxdialog/dialog.h [deleted file]
package/config/lxdialog/inputbox.c [deleted file]
package/config/lxdialog/menubox.c [deleted file]
package/config/lxdialog/textbox.c [deleted file]
package/config/lxdialog/util.c [deleted file]
package/config/lxdialog/yesno.c [deleted file]
package/config/mconf.c [deleted file]
package/config/menu.c [deleted file]
package/config/nconf.c [deleted file]
package/config/nconf.gui.c [deleted file]
package/config/nconf.h [deleted file]
package/config/patches/01-kconfig-kernel-to-buildroot.patch [deleted file]
package/config/patches/02-cpp-comments-to-c-comments.patch [deleted file]
package/config/patches/03-change-config-option-prefix.patch [deleted file]
package/config/patches/05-really-clean-everything.patch [deleted file]
package/config/patches/06-br-build-system-integration.patch [deleted file]
package/config/patches/08-make-write-deps.patch [deleted file]
package/config/patches/09-implement-kconfig-probability.patch [deleted file]
package/config/patches/10-br-build-system.patch [deleted file]
package/config/patches/11-use-mktemp-for-lxdialog.patch [deleted file]
package/config/patches/12-fix-glade-file-path.patch [deleted file]
package/config/patches/14-support-out-of-tree-config.patch [deleted file]
package/config/patches/series [deleted file]
package/config/qconf.cc [deleted file]
package/config/qconf.h [deleted file]
package/config/streamline_config.pl [deleted file]
package/config/symbol.c [deleted file]
package/config/util.c [deleted file]
package/config/zconf.gperf [deleted file]
package/config/zconf.hash.c_shipped [deleted file]
package/config/zconf.l [deleted file]
package/config/zconf.tab.c_shipped [deleted file]
package/config/zconf.y [deleted file]
support/kconfig/.gitignore [new file with mode: 0644]
support/kconfig/Makefile [new file with mode: 0644]
support/kconfig/Makefile.br [new file with mode: 0644]
support/kconfig/POTFILES.in [new file with mode: 0644]
support/kconfig/README.buildroot2 [new file with mode: 0644]
support/kconfig/check.sh [new file with mode: 0755]
support/kconfig/conf.c [new file with mode: 0644]
support/kconfig/confdata.c [new file with mode: 0644]
support/kconfig/expr.c [new file with mode: 0644]
support/kconfig/expr.h [new file with mode: 0644]
support/kconfig/foo.h [new file with mode: 0644]
support/kconfig/gconf.c [new file with mode: 0644]
support/kconfig/gconf.glade [new file with mode: 0644]
support/kconfig/images.c [new file with mode: 0644]
support/kconfig/kconfig_load.c [new file with mode: 0644]
support/kconfig/kxgettext.c [new file with mode: 0644]
support/kconfig/lex.zconf.c_shipped [new file with mode: 0644]
support/kconfig/lkc.h [new file with mode: 0644]
support/kconfig/lkc_proto.h [new file with mode: 0644]
support/kconfig/lxdialog/.gitignore [new file with mode: 0644]
support/kconfig/lxdialog/BIG.FAT.WARNING [new file with mode: 0644]
support/kconfig/lxdialog/check-lxdialog.sh [new file with mode: 0644]
support/kconfig/lxdialog/checklist.c [new file with mode: 0644]
support/kconfig/lxdialog/dialog.h [new file with mode: 0644]
support/kconfig/lxdialog/inputbox.c [new file with mode: 0644]
support/kconfig/lxdialog/menubox.c [new file with mode: 0644]
support/kconfig/lxdialog/textbox.c [new file with mode: 0644]
support/kconfig/lxdialog/util.c [new file with mode: 0644]
support/kconfig/lxdialog/yesno.c [new file with mode: 0644]
support/kconfig/mconf.c [new file with mode: 0644]
support/kconfig/menu.c [new file with mode: 0644]
support/kconfig/nconf.c [new file with mode: 0644]
support/kconfig/nconf.gui.c [new file with mode: 0644]
support/kconfig/nconf.h [new file with mode: 0644]
support/kconfig/patches/01-kconfig-kernel-to-buildroot.patch [new file with mode: 0644]
support/kconfig/patches/02-cpp-comments-to-c-comments.patch [new file with mode: 0644]
support/kconfig/patches/03-change-config-option-prefix.patch [new file with mode: 0644]
support/kconfig/patches/05-really-clean-everything.patch [new file with mode: 0644]
support/kconfig/patches/06-br-build-system-integration.patch [new file with mode: 0644]
support/kconfig/patches/08-make-write-deps.patch [new file with mode: 0644]
support/kconfig/patches/09-implement-kconfig-probability.patch [new file with mode: 0644]
support/kconfig/patches/10-br-build-system.patch [new file with mode: 0644]
support/kconfig/patches/11-use-mktemp-for-lxdialog.patch [new file with mode: 0644]
support/kconfig/patches/12-fix-glade-file-path.patch [new file with mode: 0644]
support/kconfig/patches/14-support-out-of-tree-config.patch [new file with mode: 0644]
support/kconfig/patches/series [new file with mode: 0644]
support/kconfig/qconf.cc [new file with mode: 0644]
support/kconfig/qconf.h [new file with mode: 0644]
support/kconfig/streamline_config.pl [new file with mode: 0644]
support/kconfig/symbol.c [new file with mode: 0644]
support/kconfig/util.c [new file with mode: 0644]
support/kconfig/zconf.gperf [new file with mode: 0644]
support/kconfig/zconf.hash.c_shipped [new file with mode: 0644]
support/kconfig/zconf.l [new file with mode: 0644]
support/kconfig/zconf.tab.c_shipped [new file with mode: 0644]
support/kconfig/zconf.y [new file with mode: 0644]