├── .pc ├── .quilt_patches ├── .quilt_series ├── .version ├── 01-kconfig-kernel-to-buildroot.patch │ ├── .timestamp │ ├── confdata.c │ ├── gconf.glade │ ├── mconf.c │ ├── qconf.cc │ ├── zconf.tab.c_shipped │ └── zconf.y ├── 10-br-build-system.patch │ ├── .timestamp │ ├── Makefile.br │ └── foo.h ├── 100-kconfig-generic-env.patch │ ├── .timestamp │ ├── Makefile │ ├── conf.c │ ├── confdata.c │ ├── expr.h │ ├── gconf.glade │ ├── lkc.h │ ├── mconf.c │ ├── merge_config.sh │ ├── qconf.cc │ ├── zconf.tab.c_shipped │ └── zconf.y ├── 101-kconfig-build.patch │ ├── .timestamp │ ├── GNUmakefile │ ├── README │ └── config.sh ├── 11-use-mktemp-for-lxdialog.patch │ ├── .timestamp │ └── lxdialog │ │ └── check-lxdialog.sh ├── 12-fix-glade-file-path.patch │ ├── .timestamp │ └── gconf.c ├── 14-support-out-of-tree-config.patch │ ├── .timestamp │ ├── conf.c │ ├── confdata.c │ └── util.c ├── 15-fix-qconf-moc-rule.patch │ ├── .timestamp │ └── Makefile ├── 16-fix-space-to-de-select-options.patch │ ├── .timestamp │ └── lxdialog │ │ └── menubox.c └── applied-patches ├── GNUmakefile ├── Makefile ├── Makefile.br ├── POTFILES.in ├── README ├── README.buildroot ├── check.sh ├── conf.c ├── confdata.c ├── config.sh ├── expr.c ├── expr.h ├── foo.h ├── gconf.c ├── gconf.glade ├── images.c ├── kxgettext.c ├── list.h ├── lkc.h ├── lkc_proto.h ├── lxdialog ├── .gitignore ├── BIG.FAT.WARNING ├── check-lxdialog.sh ├── checklist.c ├── dialog.h ├── inputbox.c ├── menubox.c ├── textbox.c ├── util.c └── yesno.c ├── mconf.c ├── menu.c ├── merge_config.sh ├── nconf.c ├── nconf.gui.c ├── nconf.h ├── patches ├── 01-kconfig-kernel-to-buildroot.patch ├── 06-br-build-system-integration.patch ├── 10-br-build-system.patch ├── 100-kconfig-generic-env.patch ├── 101-kconfig-build.patch ├── 11-use-mktemp-for-lxdialog.patch ├── 12-fix-glade-file-path.patch ├── 14-support-out-of-tree-config.patch ├── 15-fix-qconf-moc-rule.patch ├── 16-fix-space-to-de-select-options.patch └── series ├── qconf.cc ├── qconf.h ├── streamline_config.pl ├── symbol.c ├── util.c ├── zconf.gperf ├── zconf.hash.c_shipped ├── zconf.l ├── zconf.lex.c_shipped ├── zconf.tab.c_shipped └── zconf.y /.pc/.quilt_patches: -------------------------------------------------------------------------------- 1 | patches 2 | -------------------------------------------------------------------------------- /.pc/.quilt_series: -------------------------------------------------------------------------------- 1 | series 2 | -------------------------------------------------------------------------------- /.pc/.version: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /.pc/01-kconfig-kernel-to-buildroot.patch/.timestamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pc/01-kconfig-kernel-to-buildroot.patch/confdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/01-kconfig-kernel-to-buildroot.patch/confdata.c -------------------------------------------------------------------------------- /.pc/01-kconfig-kernel-to-buildroot.patch/gconf.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/01-kconfig-kernel-to-buildroot.patch/gconf.glade -------------------------------------------------------------------------------- /.pc/01-kconfig-kernel-to-buildroot.patch/mconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/01-kconfig-kernel-to-buildroot.patch/mconf.c -------------------------------------------------------------------------------- /.pc/01-kconfig-kernel-to-buildroot.patch/qconf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/01-kconfig-kernel-to-buildroot.patch/qconf.cc -------------------------------------------------------------------------------- /.pc/01-kconfig-kernel-to-buildroot.patch/zconf.tab.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/01-kconfig-kernel-to-buildroot.patch/zconf.tab.c_shipped -------------------------------------------------------------------------------- /.pc/01-kconfig-kernel-to-buildroot.patch/zconf.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/01-kconfig-kernel-to-buildroot.patch/zconf.y -------------------------------------------------------------------------------- /.pc/10-br-build-system.patch/.timestamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pc/10-br-build-system.patch/Makefile.br: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pc/10-br-build-system.patch/foo.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pc/100-kconfig-generic-env.patch/.timestamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pc/100-kconfig-generic-env.patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/100-kconfig-generic-env.patch/Makefile -------------------------------------------------------------------------------- /.pc/100-kconfig-generic-env.patch/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/100-kconfig-generic-env.patch/conf.c -------------------------------------------------------------------------------- /.pc/100-kconfig-generic-env.patch/confdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/100-kconfig-generic-env.patch/confdata.c -------------------------------------------------------------------------------- /.pc/100-kconfig-generic-env.patch/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/100-kconfig-generic-env.patch/expr.h -------------------------------------------------------------------------------- /.pc/100-kconfig-generic-env.patch/gconf.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/100-kconfig-generic-env.patch/gconf.glade -------------------------------------------------------------------------------- /.pc/100-kconfig-generic-env.patch/lkc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/100-kconfig-generic-env.patch/lkc.h -------------------------------------------------------------------------------- /.pc/100-kconfig-generic-env.patch/mconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/100-kconfig-generic-env.patch/mconf.c -------------------------------------------------------------------------------- /.pc/100-kconfig-generic-env.patch/merge_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/100-kconfig-generic-env.patch/merge_config.sh -------------------------------------------------------------------------------- /.pc/100-kconfig-generic-env.patch/qconf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/100-kconfig-generic-env.patch/qconf.cc -------------------------------------------------------------------------------- /.pc/100-kconfig-generic-env.patch/zconf.tab.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/100-kconfig-generic-env.patch/zconf.tab.c_shipped -------------------------------------------------------------------------------- /.pc/100-kconfig-generic-env.patch/zconf.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/100-kconfig-generic-env.patch/zconf.y -------------------------------------------------------------------------------- /.pc/101-kconfig-build.patch/.timestamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pc/101-kconfig-build.patch/GNUmakefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pc/101-kconfig-build.patch/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pc/101-kconfig-build.patch/config.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pc/11-use-mktemp-for-lxdialog.patch/.timestamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pc/11-use-mktemp-for-lxdialog.patch/lxdialog/check-lxdialog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/11-use-mktemp-for-lxdialog.patch/lxdialog/check-lxdialog.sh -------------------------------------------------------------------------------- /.pc/12-fix-glade-file-path.patch/.timestamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pc/12-fix-glade-file-path.patch/gconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/12-fix-glade-file-path.patch/gconf.c -------------------------------------------------------------------------------- /.pc/14-support-out-of-tree-config.patch/.timestamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pc/14-support-out-of-tree-config.patch/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/14-support-out-of-tree-config.patch/conf.c -------------------------------------------------------------------------------- /.pc/14-support-out-of-tree-config.patch/confdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/14-support-out-of-tree-config.patch/confdata.c -------------------------------------------------------------------------------- /.pc/14-support-out-of-tree-config.patch/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/14-support-out-of-tree-config.patch/util.c -------------------------------------------------------------------------------- /.pc/15-fix-qconf-moc-rule.patch/.timestamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pc/15-fix-qconf-moc-rule.patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/15-fix-qconf-moc-rule.patch/Makefile -------------------------------------------------------------------------------- /.pc/16-fix-space-to-de-select-options.patch/.timestamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pc/16-fix-space-to-de-select-options.patch/lxdialog/menubox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/16-fix-space-to-de-select-options.patch/lxdialog/menubox.c -------------------------------------------------------------------------------- /.pc/applied-patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/.pc/applied-patches -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/GNUmakefile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/Makefile.br -------------------------------------------------------------------------------- /POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/POTFILES.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/README -------------------------------------------------------------------------------- /README.buildroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/README.buildroot -------------------------------------------------------------------------------- /check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/check.sh -------------------------------------------------------------------------------- /conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/conf.c -------------------------------------------------------------------------------- /confdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/confdata.c -------------------------------------------------------------------------------- /config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/config.sh -------------------------------------------------------------------------------- /expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/expr.c -------------------------------------------------------------------------------- /expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/expr.h -------------------------------------------------------------------------------- /foo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/foo.h -------------------------------------------------------------------------------- /gconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/gconf.c -------------------------------------------------------------------------------- /gconf.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/gconf.glade -------------------------------------------------------------------------------- /images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/images.c -------------------------------------------------------------------------------- /kxgettext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/kxgettext.c -------------------------------------------------------------------------------- /list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/list.h -------------------------------------------------------------------------------- /lkc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/lkc.h -------------------------------------------------------------------------------- /lkc_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/lkc_proto.h -------------------------------------------------------------------------------- /lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | lxdialog 5 | -------------------------------------------------------------------------------- /lxdialog/BIG.FAT.WARNING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/lxdialog/BIG.FAT.WARNING -------------------------------------------------------------------------------- /lxdialog/check-lxdialog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/lxdialog/check-lxdialog.sh -------------------------------------------------------------------------------- /lxdialog/checklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/lxdialog/checklist.c -------------------------------------------------------------------------------- /lxdialog/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/lxdialog/dialog.h -------------------------------------------------------------------------------- /lxdialog/inputbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/lxdialog/inputbox.c -------------------------------------------------------------------------------- /lxdialog/menubox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/lxdialog/menubox.c -------------------------------------------------------------------------------- /lxdialog/textbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/lxdialog/textbox.c -------------------------------------------------------------------------------- /lxdialog/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/lxdialog/util.c -------------------------------------------------------------------------------- /lxdialog/yesno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/lxdialog/yesno.c -------------------------------------------------------------------------------- /mconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/mconf.c -------------------------------------------------------------------------------- /menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/menu.c -------------------------------------------------------------------------------- /merge_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/merge_config.sh -------------------------------------------------------------------------------- /nconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/nconf.c -------------------------------------------------------------------------------- /nconf.gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/nconf.gui.c -------------------------------------------------------------------------------- /nconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/nconf.h -------------------------------------------------------------------------------- /patches/01-kconfig-kernel-to-buildroot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/patches/01-kconfig-kernel-to-buildroot.patch -------------------------------------------------------------------------------- /patches/06-br-build-system-integration.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/patches/06-br-build-system-integration.patch -------------------------------------------------------------------------------- /patches/10-br-build-system.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/patches/10-br-build-system.patch -------------------------------------------------------------------------------- /patches/100-kconfig-generic-env.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/patches/100-kconfig-generic-env.patch -------------------------------------------------------------------------------- /patches/101-kconfig-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/patches/101-kconfig-build.patch -------------------------------------------------------------------------------- /patches/11-use-mktemp-for-lxdialog.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/patches/11-use-mktemp-for-lxdialog.patch -------------------------------------------------------------------------------- /patches/12-fix-glade-file-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/patches/12-fix-glade-file-path.patch -------------------------------------------------------------------------------- /patches/14-support-out-of-tree-config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/patches/14-support-out-of-tree-config.patch -------------------------------------------------------------------------------- /patches/15-fix-qconf-moc-rule.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/patches/15-fix-qconf-moc-rule.patch -------------------------------------------------------------------------------- /patches/16-fix-space-to-de-select-options.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/patches/16-fix-space-to-de-select-options.patch -------------------------------------------------------------------------------- /patches/series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/patches/series -------------------------------------------------------------------------------- /qconf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/qconf.cc -------------------------------------------------------------------------------- /qconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/qconf.h -------------------------------------------------------------------------------- /streamline_config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/streamline_config.pl -------------------------------------------------------------------------------- /symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/symbol.c -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/util.c -------------------------------------------------------------------------------- /zconf.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/zconf.gperf -------------------------------------------------------------------------------- /zconf.hash.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/zconf.hash.c_shipped -------------------------------------------------------------------------------- /zconf.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/zconf.l -------------------------------------------------------------------------------- /zconf.lex.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/zconf.lex.c_shipped -------------------------------------------------------------------------------- /zconf.tab.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/zconf.tab.c_shipped -------------------------------------------------------------------------------- /zconf.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillon/kconfig/HEAD/zconf.y --------------------------------------------------------------------------------