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

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

85 $(Q)rm -f arch/um/Kconfig.arch
86 $(Q)rm -f $(obj)/config.pot
87
88PHONY += allnoconfig allyesconfig allmodconfig alldefconfig randconfig
89
90allnoconfig allyesconfig allmodconfig alldefconfig randconfig: $(obj)/conf
91 $< --$@ $(Kconfig)
92
1# ===========================================================================
2# Kernel configuration targets
3# These targets are used from top-level makefile
4
5PHONY += oldconfig xconfig gconfig menuconfig config silentoldconfig update-po-config \
6 localmodconfig localyesconfig
7
8ifdef KBUILD_KCONFIG

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

85 $(Q)rm -f arch/um/Kconfig.arch
86 $(Q)rm -f $(obj)/config.pot
87
88PHONY += allnoconfig allyesconfig allmodconfig alldefconfig randconfig
89
90allnoconfig allyesconfig allmodconfig alldefconfig randconfig: $(obj)/conf
91 $< --$@ $(Kconfig)
92
93PHONY += listnewconfig oldnoconfig defconfig
93PHONY += listnewconfig oldnoconfig savedefconfig defconfig
94
95listnewconfig oldnoconfig: $(obj)/conf
96 $< --$@ $(Kconfig)
97
94
95listnewconfig oldnoconfig: $(obj)/conf
96 $< --$@ $(Kconfig)
97
98savedefconfig: $(obj)/conf
99 $< --$@=defconfig $(Kconfig)
100
98defconfig: $(obj)/conf
99ifeq ($(KBUILD_DEFCONFIG),)
100 $< --defconfig $(Kconfig)
101else
102 @echo "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'"
103 $(Q)$< --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig)
104endif
105

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

113 @echo ' menuconfig - Update current config utilising a menu based program'
114 @echo ' xconfig - Update current config utilising a QT based front-end'
115 @echo ' gconfig - Update current config utilising a GTK based front-end'
116 @echo ' oldconfig - Update current config utilising a provided .config as base'
117 @echo ' localmodconfig - Update current config disabling modules not loaded'
118 @echo ' localyesconfig - Update current config converting local mods to core'
119 @echo ' silentoldconfig - Same as oldconfig, but quietly, additionally update deps'
120 @echo ' defconfig - New config with default from ARCH supplied defconfig'
101defconfig: $(obj)/conf
102ifeq ($(KBUILD_DEFCONFIG),)
103 $< --defconfig $(Kconfig)
104else
105 @echo "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'"
106 $(Q)$< --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig)
107endif
108

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

116 @echo ' menuconfig - Update current config utilising a menu based program'
117 @echo ' xconfig - Update current config utilising a QT based front-end'
118 @echo ' gconfig - Update current config utilising a GTK based front-end'
119 @echo ' oldconfig - Update current config utilising a provided .config as base'
120 @echo ' localmodconfig - Update current config disabling modules not loaded'
121 @echo ' localyesconfig - Update current config converting local mods to core'
122 @echo ' silentoldconfig - Same as oldconfig, but quietly, additionally update deps'
123 @echo ' defconfig - New config with default from ARCH supplied defconfig'
124 @echo ' savedefconfig - Save current config as ./defconfig (minimal config)'
121 @echo ' allnoconfig - New config where all options are answered with no'
122 @echo ' allyesconfig - New config where all options are accepted with yes'
123 @echo ' allmodconfig - New config selecting modules when possible'
124 @echo ' alldefconfig - New config with all symbols set to default'
125 @echo ' randconfig - New config with random answer to all options'
126 @echo ' listnewconfig - List new options'
127 @echo ' oldnoconfig - Same as silentoldconfig but set new symbols to n (unset)'
128

--- 205 unchanged lines hidden ---
125 @echo ' allnoconfig - New config where all options are answered with no'
126 @echo ' allyesconfig - New config where all options are accepted with yes'
127 @echo ' allmodconfig - New config selecting modules when possible'
128 @echo ' alldefconfig - New config with all symbols set to default'
129 @echo ' randconfig - New config with random answer to all options'
130 @echo ' listnewconfig - List new options'
131 @echo ' oldnoconfig - Same as silentoldconfig but set new symbols to n (unset)'
132

--- 205 unchanged lines hidden ---