Makefile (39c3f1ba5ee3b937c43747f60dfa869d9776a4ac) Makefile (fa75a727c01963088299a7fa691e71ed90018a7d)
1# ===========================================================================
2# Kernel configuration targets
3# These targets are used from top-level makefile
4
5PHONY += xconfig gconfig menuconfig config silentoldconfig update-po-config \
6 localmodconfig localyesconfig
7
8ifdef KBUILD_KCONFIG

--- 108 unchanged lines hidden (view full) ---

117
118PHONY += tinyconfig
119tinyconfig:
120 $(Q)$(MAKE) -f $(srctree)/Makefile allnoconfig tiny.config
121
122# Help text used by make help
123help:
124 @echo ' config - Update current config utilising a line-oriented program'
1# ===========================================================================
2# Kernel configuration targets
3# These targets are used from top-level makefile
4
5PHONY += xconfig gconfig menuconfig config silentoldconfig update-po-config \
6 localmodconfig localyesconfig
7
8ifdef KBUILD_KCONFIG

--- 108 unchanged lines hidden (view full) ---

117
118PHONY += tinyconfig
119tinyconfig:
120 $(Q)$(MAKE) -f $(srctree)/Makefile allnoconfig tiny.config
121
122# Help text used by make help
123help:
124 @echo ' config - Update current config utilising a line-oriented program'
125 @echo ' nconfig - Update current config utilising a ncurses menu based program'
125 @echo ' nconfig - Update current config utilising a ncurses menu based'
126 @echo ' program'
126 @echo ' menuconfig - Update current config utilising a menu based program'
127 @echo ' xconfig - Update current config utilising a Qt based front-end'
128 @echo ' gconfig - Update current config utilising a GTK+ based front-end'
129 @echo ' oldconfig - Update current config utilising a provided .config as base'
130 @echo ' localmodconfig - Update current config disabling modules not loaded'
131 @echo ' localyesconfig - Update current config converting local mods to core'
132 @echo ' silentoldconfig - Same as oldconfig, but quietly, additionally update deps'
133 @echo ' defconfig - New config with default from ARCH supplied defconfig'
134 @echo ' savedefconfig - Save current config as ./defconfig (minimal config)'
135 @echo ' allnoconfig - New config where all options are answered with no'
136 @echo ' allyesconfig - New config where all options are accepted with yes'
137 @echo ' allmodconfig - New config selecting modules when possible'
138 @echo ' alldefconfig - New config with all symbols set to default'
139 @echo ' randconfig - New config with random answer to all options'
140 @echo ' listnewconfig - List new options'
127 @echo ' menuconfig - Update current config utilising a menu based program'
128 @echo ' xconfig - Update current config utilising a Qt based front-end'
129 @echo ' gconfig - Update current config utilising a GTK+ based front-end'
130 @echo ' oldconfig - Update current config utilising a provided .config as base'
131 @echo ' localmodconfig - Update current config disabling modules not loaded'
132 @echo ' localyesconfig - Update current config converting local mods to core'
133 @echo ' silentoldconfig - Same as oldconfig, but quietly, additionally update deps'
134 @echo ' defconfig - New config with default from ARCH supplied defconfig'
135 @echo ' savedefconfig - Save current config as ./defconfig (minimal config)'
136 @echo ' allnoconfig - New config where all options are answered with no'
137 @echo ' allyesconfig - New config where all options are accepted with yes'
138 @echo ' allmodconfig - New config selecting modules when possible'
139 @echo ' alldefconfig - New config with all symbols set to default'
140 @echo ' randconfig - New config with random answer to all options'
141 @echo ' listnewconfig - List new options'
141 @echo ' olddefconfig - Same as silentoldconfig but sets new symbols to their default value'
142 @echo ' olddefconfig - Same as silentoldconfig but sets new symbols to their'
143 @echo ' default value'
142 @echo ' kvmconfig - Enable additional options for guest kernel support'
143 @echo ' tinyconfig - Configure the tiniest possible kernel'
144
145# lxdialog stuff
146check-lxdialog := $(srctree)/$(src)/lxdialog/check-lxdialog.sh
147
148# Use recursively expanded variables so we do not call gcc unless
149# we really need to do so. (Do not call gcc as part of make mrproper)

--- 161 unchanged lines hidden ---
144 @echo ' kvmconfig - Enable additional options for guest kernel support'
145 @echo ' tinyconfig - Configure the tiniest possible kernel'
146
147# lxdialog stuff
148check-lxdialog := $(srctree)/$(src)/lxdialog/check-lxdialog.sh
149
150# Use recursively expanded variables so we do not call gcc unless
151# we really need to do so. (Do not call gcc as part of make mrproper)

--- 161 unchanged lines hidden ---