Lines Matching refs:make

85    the backup files (some-file-name~ or some-file-name.orig), and make sure
111 make mrproper
132 Using the option ``make O=output/dir`` allows you to specify an alternate
142 make O=/home/name/build/kernel menuconfig
143 make O=/home/name/build/kernel
144 sudo make O=/home/name/build/kernel modules_install install
147 used for all invocations of make.
156 new version with minimal work, use ``make oldconfig``, which will
161 "make config" Plain text interface.
163 "make menuconfig" Text based color menus, radiolists & dialogs.
165 "make nconfig" Enhanced text based color menus.
167 "make xconfig" Qt based configuration tool.
169 "make gconfig" GTK+ based configuration tool.
171 "make oldconfig" Default all questions based on the contents of
175 "make olddefconfig"
179 "make defconfig" Create a ./.config file by using the default
184 "make ${PLATFORM}_defconfig"
188 Use "make help" to get a list of all available
191 "make allyesconfig"
195 "make allmodconfig"
199 "make allnoconfig" Create a ./.config file by setting symbol
202 "make randconfig" Create a ./.config file by setting symbol
205 "make localmodconfig" Create a config based on current config and
216 host$ make LSMOD=/tmp/mylsmod localmodconfig
220 "make localyesconfig" Similar to localmodconfig, except it will convert
223 "make kvmconfig" Enable additional options for kvm guest kernel support.
225 "make xenconfig" Enable additional options for xen dom0 guest kernel
228 "make tinyconfig" Configure the tiniest possible kernel.
233 - NOTES on ``make config``:
235 - Having unnecessary drivers will make the kernel bigger, and can
246 bigger or slower kernel (or both), and can even make the kernel
260 - Do a ``make`` to create a compressed kernel image. It is also
261 possible to do ``make install`` if you have lilo installed to suit the
268 will also have to do ``make modules_install``.
276 ``V=1`` to the ``make`` command, e.g.::
278 make V=1 all
288 working kernel, make a backup of your modules directory before you
289 do a ``make modules_install``.
360 as is, otherwise you will have to use the ``ksymoops`` program to make
400 kernel with -g; edit arch/x86/Makefile appropriately, then do a ``make
401 clean``. You'll also need to enable CONFIG_PROC_FS (via ``make config``).