Skip to content
This repository has been archived by the owner on Nov 3, 2020. It is now read-only.

Latest commit

 

History

History
36 lines (26 loc) · 1.23 KB

COMPILATION.md

File metadata and controls

36 lines (26 loc) · 1.23 KB

User Compilation


Most users should simply use the pre-built binary releases rather than try to compile the kernel on their own, since it takes significant resources, setup, and time. However, if you are interested in compiling your own kernel, then the steps below will walk you through how to do so.


To generate the build directory for the kernel, you need to run the compile_setup.sh script.
The packager will prompt for the target major version of the Linux kernel during configuration.

sh compile_setup.sh 

Once compile_setup is finished, it will output a directory titled build-{VERSION}.
Note that {VERSION} is the full version of the kernel and not just its major version.
To build this kernel, use these two commands:

cd build-{VERSION}
MAKEFLAGS="-j{NPROC}" makepkg -sc

* Replace {VERSION} with whatever kernel version compile_setup outputs.
** Replace {NPROC} with the number of available processors in your machine.

If you are unable to issue this command because of write permission issues, use the following command to give yourself access, replacing {USER} and {VERSION} with their appropriate values:

chown -R {USER} build-{VERSION}