Lines Matching defs:config
24 /lib/modules/$(kernel-release)/.config \
25 /etc/kernel-config \
26 /boot/config-$(kernel-release)
33 config-prog := conf
48 $(foreach c, config menuconfig nconfig gconfig xconfig, $(eval $(call config_rule,$(c))))
52 $(Q)$(PERL) $(srctree)/$(src)/streamline_config.pl --$@ $(srctree) $(Kconfig) > .tmp.config
53 $(Q)if [ -f .config ]; then \
54 cmp -s .tmp.config .config || \
55 (mv -f .config .config.old.1; \
56 mv -f .tmp.config .config; \
58 mv -f .config.old.1 .config.old) \
60 mv -f .tmp.config .config; \
63 $(Q)rm -f .tmp.config
97 all-config-fragments = $(call configfiles,*.config)
98 config-fragments = $(call configfiles,$@)
100 %.config: $(obj)/conf
101 $(if $(config-fragments),, $(error $@ fragment does not exists on this architecture))
102 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m .config $(config-fragments)
107 $(Q)KCONFIG_ALLCONFIG=kernel/configs/tiny-base.config $(MAKE) -f $(srctree)/Makefile allnoconfig
108 $(Q)$(MAKE) -f $(srctree)/Makefile tiny.config
121 @echo ' config - Update current config utilising a line-oriented program'
122 @echo ' nconfig - Update current config utilising a ncurses menu based program'
123 @echo ' menuconfig - Update current config utilising a menu based program'
124 @echo ' xconfig - Update current config utilising a Qt based front-end'
125 @echo ' gconfig - Update current config utilising a GTK+ based front-end'
126 @echo ' oldconfig - Update current config utilising a provided .config as base'
127 @echo ' localmodconfig - Update current config disabling modules not loaded'
129 @echo ' localyesconfig - Update current config converting local mods to core'
131 @echo ' defconfig - New config with default from ARCH supplied defconfig'
132 @echo ' savedefconfig - Save current config as ./defconfig (minimal config)'
133 @echo ' allnoconfig - New config where all options are answered with no'
134 @echo ' allyesconfig - New config where all options are accepted with yes'
135 @echo ' allmodconfig - New config selecting modules when possible'
136 @echo ' alldefconfig - New config with all symbols set to default'
137 @echo ' randconfig - New config with random answer to all options'
149 @$(foreach f, $(all-config-fragments), \