From 2993da8141ecc9af48686a1a59f45b2b805f1dce Mon Sep 17 00:00:00 2001 From: mayfrost Date: Sat, 13 Oct 2018 21:45:37 +0000 Subject: [PATCH] Update KERNEL.md --- KERNEL.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/KERNEL.md b/KERNEL.md index f9bf4d5..98e5781 100644 --- a/KERNEL.md +++ b/KERNEL.md @@ -49,7 +49,7 @@ Compiling a kernel has the advantage to make it as minimal and featureful as you Is standard to download Linux sources under __/usr/src/__, then link the downloaded kernel tree to __/usr/src/linux-__ and work there, but is not a requirement. * Change to __/usr/src/__. `cd /usr/src/` -* Symlink. +* Symlink. `ln -s linux- linux` ### DOWNLOAD THE KERNEL SOURCE @@ -91,14 +91,14 @@ This process makes a "__.config__" file in the kernel source directory, this fil * The __M__ flag in kernel configuration compiles options as separate modules. * The __N__ (or a blank space in __menuconfig__) flag in kernel configuration will not build selected option. -* __OPTION 1__: Start a menu and browse options. Requires curses library but likely is already on your computer. Press "__H__" or "__?__" to see help. You can use the space bar to cycle between the available choices or press the appropriate key mentioned above. Pressing "__/__" to search for keywords. +__OPTION 1__: Start a menu and browse options. Requires curses library but likely is already on your computer. Press "__H__" or "__?__" to see help. You can use the space bar to cycle between the available choices or press the appropriate key mentioned above. Pressing "__/__" to search for keywords. `make menuconfig` __NOTE__: Remember to save the configuration if you are using menuconfig to generate the "_.config_" file. -* __OPTION 2__: Will make questions on what kernel options to support when it finds new kernel options not marked on an existing config file (takes time and and if you are using a striped down config file it requires you knowledge). +__OPTION 2__: Will make questions on what kernel options to support when it finds new kernel options not marked on an existing config file (takes time and and if you are using a striped down config file it requires you knowledge). `make oldconfig` -* __OPTION 3__: Will fill questions with default answers on what kernel options to support beyond your provided config file. +__OPTION 3__: Will fill questions with default answers on what kernel options to support beyond your provided config file. `make olddefconfig` ## COMPILATION