@d00d00 Added in 5.15.7-2
. https://bugs.archlinux.org/task/72756
@xuanruiqi Added in 5.15.7-3
. Haven't tried it too much so test it and we'll see.
@Moviuro Added in 5.15.7-4
. I also changed it for the other variables as well.
Git Clone URL: | https://aur.archlinux.org/linux-clear.git (read-only, click to copy) |
---|---|
Package Base: | linux-clear |
Description: | Linux kernel with patches from Clear Linux which allow for higher performance. This package includes header files and scripts for building kernel modules. |
Upstream URL: | https://git.staropensource.de/JeremyStarTM/aur-linux-clear |
Keywords: | clear clearlinux intel kernel linux |
Licenses: | GPL-2.0-only |
Submitter: | metak |
Maintainer: | JeremyStarTM |
Last Packager: | JeremyStarTM |
Votes: | 74 |
Popularity: | 0.50 |
First Submitted: | 2018-01-18 21:47 (UTC) |
Last Updated: | 2025-04-04 21:08 (UTC) |
« First ‹ Previous 1 .. 10 11 12 13 14 15 16 17 18 19 20 .. 52 Next › Last »
@d00d00 Added in 5.15.7-2
. https://bugs.archlinux.org/task/72756
@xuanruiqi Added in 5.15.7-3
. Haven't tried it too much so test it and we'll see.
@Moviuro Added in 5.15.7-4
. I also changed it for the other variables as well.
Could we get the following diff in the PKGBUILD? rationale: I can now do _subarch=26 makepkg -sriCfc
; and it correctly compiles for skylake, with no interaction from me. That way, I don't need to edit the PKGBUILD, or wait until I'm asked for the subarch in an interactive way.
The : "${var:="value"}"
is a POSIX-compliant way to set a variable to a default value (in our case: the empty string), but only if it wasn't already set. This change has no impact for people who simply type makepkg
, and it will still ask them (interactively) which subarch to compile for.
diff --git a/PKGBUILD b/PKGBUILD
index 13880d4..ff19d30 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -62,7 +62,7 @@ _localmodcfg=
# 39. Generic-x86-64-v4 (GENERIC_CPU4)
# 40. Intel-Native optimizations autodetected by GCC (MNATIVE_INTEL)
# 41. AMD-Native optimizations autodetected by GCC (MNATIVE_AMD)
-_subarch=
+: "${_subarch:=""}"
# Use the current kernel's .config file
# Enabling this option will use the .config of the RUNNING kernel rather than
Could we have an option to enable Clang builds for the kernel? I would like to use a Clang/LLVM build with LTO.
Hello! Would it be possible for you to add the KSMBD module to the default build for this kernel? It's a kernel-level SMB daemon that works really well on lighter-weight NAS machines and whatnot. It requires these configuration changes to be added to the PKGBUILD (assuming SMB Direct is desired):
# KSMBD
scripts/config --module SMB_SERVER \
--enable SMB_SERVER_SMBDIRECT
And it requires KSMBD-MODULE to be added to provides(). Sorry if this is too niche a request, and thank you for your work maintaining this package.
I'm having this error message for boot entry Arch Linux, with Linux linux-clear-bin.cmdline
I do have another boot entry regarding clear
, Arch Linux, with Linux linux-clear-bin
which can be booted into.
Loading Linux linux
Error: premature end of file /vmlinuz-linux-clear-bin.cmdline
Loading initial ramdisk
Error: you need to load the kernel first
Press a key to continue
I have adjusted cmd boot line as pinned comment, that is
GRUB_CMDLINE_LINUX="quiet console=tty0 console=ttyS0,115200n8 cryptomgr.notests initcall_debug intel_iommu=igfx_off kvm-intel.nested=1 no_timer_check noreplace-smp page_alloc.shuffle=1 rcupdate.rcu_expedited=1 rootfstype=ext4,btrfs,xfs,f2fs tsc=reliable rw"
then had executed sudo grub-mkconfig -o /boot/grub/grub.cfg
@metak It worked. Thanks^^
@metak Awesome, thanks!
@tam1m NTFS3 module enabled in 5.15.1-2
. The default config comes from clear team and it's not enabled in there by default, don't know why exactly.
@FiestaLake Can you try the latest update?
Pinned Comments
JeremyStarTM commented on 2024-08-06 19:37 (UTC) (edited on 2025-02-03 12:44 (UTC) by JeremyStarTM)
Information comment
This comment provides useful information about this package. Make sure to read it through, you won't regret it.
Repository URL
This package is hosted at sos!git. If you want to contribute to the package, you can do it here: https://git.staropensource.de/JeremyStarTM/aur-linux-clear
Issue handling
Please only submit issues in the package's repository if they aren't bug reports about the package or help requests. Please keep them to the AUR only. This prevents unnecessary signups.
Updates
I usually publish updates 0-3 days after a kernel release, depending on how busy I am.
If I however get wind of security-relevant updates or any vulnerabilities I will try to update the kernel as soon as possible and write a comment about the vulnerability/update. So make sure to subscribe to this package's comment mailing list.
PKGBUILD environment variable customization
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-
_use_current
: Will use the configuration of the running kernel, if the running kernel is compiled withIKCONFIG_PROC
-
_optimize_defconfig
: Applies package maintainer-picked configuration changes to your defconfig. Only takes effect with_use_current
being enabled-
_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 the PKGBUILD file for a list of all subarches). Default is41
/MGENERIC_CPU
(Generic x86-64), which is compatible with all amd64 processors. Must be a number or subarch name-
_subarch_microarch
: Specifies the microarchitecture to compile for. Only applies to and is required by theMGENERIC_CPU
subarch. Must be a number between1
and4
(click for more information)-
_debug
: Force enables debug options when set toy
, force disables debug options when set ton
or uses the config defaults when unset-
_show_compile
: Enables verbose-er compilation output and displays all executingmake
targets. Enabled by default, unset for 'pv' outputAll of these variables just need to be set for them to apply, except for
_subarch
and_debug
. For more information please check their documentation inside thePKGBUILD
fileGPG errors
If makepkg complains about invalid PGP keys, try running this command first:
gpg --locate-keys torvalds@kernel.org gregkh@kernel.org sashal@kernel.org benh@debian.org
. This command only needs to be executed once.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 file in a simple manner and decrease build time. And if you don't want that, using
makepkg
as-is works fine too.