3.8 KiB
linux-clear
This repository contains the PKGBUILD
file required for building the linux-clear
and linux-clear-headers
packages.
You can find this package on the AUR.
How to build and install
Read this Arch Linux Wiki article.
Updates
This package is usually updated 0-3 days after a kernel release. If a security-relevant update is available the package will be updated as soon as possible.
Environment variables
The PKGBUILD file supports customization via environment variables. Here's a list of all of them:
_makemenuconfig
: Invokesmake menuconfig
(ncurses-based default configuration menu) before compilation starts_makenconfig
: Invokesmake nconfig
(ncurses-based nicer configuration menu) before compilation starts_makexconfig
: Invokesmake xconfig
(X11-based GUI configuration menu) before compilation starts_reuse_current
: Will use the configuration of the running kernel, if the running kernel is compiled withIKCONFIG_PROC
_reuse_file
: Will use the configuration file namedkconfig
contained in thePKGBUILD
file's directory_update_kconfig_on_reuse
: Specifies whether the kernel configuration shall be updated when using any of the 'reuse*' flags_copyfinalconfig
: Copies the final kernel configuration into the repository root askconfig-new
before compilation starts_localmodcfg
: Only compiles modules found in modprobed-db's database (which decreases compilation time and kernel size)_use_llvm_lto
: Compiles the kernel with LLVM instead of GCC. Should work, if not open an issue_subarch
: Specifies the subarchitecture to compile for (see thePKGBUILD
file for a list of all subarches). Default is41
(Generic x86-64), which is compatible with all amd64 processors. Must be a number_use_llvm_lto
: Enables compilation with LLVM. Untested but should work. If not write a comment on the AUR._subarch_microarch
: Specifies the microarchitecture to compile for. Only applies to and is required by theGENERIC_CPU
subarch. Must be a number between1
and4
(click for more information)_debug_kernel
: Force enables kernel debugging options when set toy
, force disables debug options when set ton
or relies on the kconfig when unset_debug_script
: Enables debugging for thePKGBUILD
file
All of these variables just need to be set for them to apply, except for _subarch
, _subarch_microarch
and _debug_kernel
. For more information please check their documentation inside the PKGBUILD
file
GPG errors
If makepkg complains about invalid PGP keys, try running this command:
gpg --locate-keys torvalds@kernel.org gregkh@kernel.org sashal@kernel.org benhh@debian.org
This command only needs to be executed once.
Issue handling
Please only submit issues if they aren't bug reports about the package or help requests. Please keep them on the AUR only. This prevents unnecessary signups.
License
This package does not yet have a license as the original repository (before me becoming it's maintainer) did not have one yet. I have contacted metak (the previous maintainer) to negotiate a license.
Build tool
If you want a dead simple way to compile this package, you can try out my build tool. It includes a few no nonsense changes to the kernel configuration and allows you to configure the PKGBUILD in a simple manner to decrease build time. If you don't want that, using makepkg
as-is works fine too.