• Home
  • Annotate
  • current directory
Name Date Size #Lines LOC

..18-Apr-2025-

lxdialog/18-Apr-2025-

patches/18-Apr-2025-

.gitignore A D18-Apr-202557 54

Makefile A D18-Apr-202511.9 KiB343246

Makefile.br A D18-Apr-20251.9 KiB5440

POTFILES.in A D18-Apr-2025361 1312

README.buildroot A D18-Apr-2025621 2623

check.sh A D18-Apr-2025249 1511

conf.c A D18-Apr-202515.5 KiB717633

confdata.c A D18-Apr-202526.2 KiB1,2831,036

expr.c A D18-Apr-202530.1 KiB1,3061,079

expr.h A D18-Apr-20259.6 KiB330185

foo.h A D18-Apr-2025192 1310

gconf.c A D18-Apr-202538.2 KiB1,5221,211

gconf.glade A D18-Apr-202525 KiB662603

images.c A D18-Apr-20256.4 KiB327307

kconf_id.c A D18-Apr-20251.8 KiB5448

kxgettext.c A D18-Apr-20254.1 KiB236184

list.h A D18-Apr-20253.7 KiB13355

lkc.h A D18-Apr-20254.5 KiB189142

lkc_proto.h A D18-Apr-20252.1 KiB5441

mconf.c A D18-Apr-202527.7 KiB1,048958

menu.c A D18-Apr-202521.5 KiB874607

merge_config.sh A D18-Apr-20254.6 KiB183133

nconf.c A D18-Apr-202538.5 KiB1,5641,376

nconf.gui.c A D18-Apr-202514.8 KiB665513

nconf.h A D18-Apr-20251.9 KiB9578

qconf.cc A D18-Apr-202544.2 KiB1,8801,588

qconf.h A D18-Apr-20257.4 KiB331288

streamline_config.pl A D18-Apr-202516.2 KiB683446

symbol.c A D18-Apr-202530.7 KiB1,4331,153

util.c A D18-Apr-20253.4 KiB180144

zconf.l A D18-Apr-20256.5 KiB373325

zconf.lex.c_shipped A D18-Apr-202558.5 KiB2,5012,065

zconf.tab.c_shipped A D18-Apr-202570.9 KiB2,4892,027

zconf.y A D18-Apr-202516.4 KiB783638

README.buildroot

1This is a copy of the kconfig code in the kernel (currently 4.17-rc2) tweaked
2to suit Buildroot.
3
4To update:
5	cp -r /usr/src/linux/scripts/kconfig support/kconfig.new
6	cd support/kconfig.new
7	# zconf.lex.c and zconf.tab.c needs to be generated by 'make menuconfig'
8	mv zconf.lex.c zconf.lex.c_shipped
9	mv zconf.tab.c zconf.tab.c_shipped
10	rm -rf tests/
11	cp -a ../kconfig/patches ../kconfig/README.buildroot ../kconfig/.gitignore .
12	quilt push -a
13	# Fix any conflict
14	cd ..
15	rm -rf kconfig
16	mv kconfig.new kconfig
17
18Then verify the toplevel targets work:
19	config
20	defconfig
21	menuconfig
22	nconfig
23	xconfig
24	gconfig
25	oldconfig
26