• Home
  • Raw
  • Download

Lines Matching refs:make

84    the backup files (some-file-name~ or some-file-name.orig), and make sure
110 make mrproper
131 Using the option ``make O=output/dir`` allows you to specify an alternate
141 make O=/home/name/build/kernel menuconfig
142 make O=/home/name/build/kernel
143 sudo make O=/home/name/build/kernel modules_install install
146 used for all invocations of make.
155 new version with minimal work, use ``make oldconfig``, which will
160 "make config" Plain text interface.
162 "make menuconfig" Text based color menus, radiolists & dialogs.
164 "make nconfig" Enhanced text based color menus.
166 "make xconfig" Qt based configuration tool.
168 "make gconfig" GTK+ based configuration tool.
170 "make oldconfig" Default all questions based on the contents of
174 "make olddefconfig"
178 "make defconfig" Create a ./.config file by using the default
183 "make ${PLATFORM}_defconfig"
187 Use "make help" to get a list of all available
190 "make allyesconfig"
194 "make allmodconfig"
198 "make allnoconfig" Create a ./.config file by setting symbol
201 "make randconfig" Create a ./.config file by setting symbol
204 "make localmodconfig" Create a config based on current config and
219 host$ make LSMOD=/tmp/mylsmod \
225 "make localyesconfig" Similar to localmodconfig, except it will convert
229 "make kvmconfig" Enable additional options for kvm guest kernel support.
231 "make xenconfig" Enable additional options for xen dom0 guest kernel
234 "make tinyconfig" Configure the tiniest possible kernel.
239 - NOTES on ``make config``:
241 - Having unnecessary drivers will make the kernel bigger, and can
252 bigger or slower kernel (or both), and can even make the kernel
266 - Do a ``make`` to create a compressed kernel image. It is also
267 possible to do ``make install`` if you have lilo installed to suit the
274 will also have to do ``make modules_install``.
282 ``V=1`` to the ``make`` command, e.g.::
284 make V=1 all
294 working kernel, make a backup of your modules directory before you
295 do a ``make modules_install``.
366 as is, otherwise you will have to use the ``ksymoops`` program to make
406 kernel with -g; edit arch/x86/Makefile appropriately, then do a ``make
407 clean``. You'll also need to enable CONFIG_PROC_FS (via ``make config``).