@ishitatsuyuki thank you, I'll follow your suggestion and set by default to no, as XanMod has it disabled (arch still has it enabled). I hope all is fine (at least in my system). Can you validate too?
Search Criteria
Package Details: linux-xanmod-headers 6.11.10-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/linux-xanmod.git (read-only, click to copy) |
---|---|
Package Base: | linux-xanmod |
Description: | Headers and scripts for building modules for the Linux Xanmod - Stable Mainline [MAIN] kernel |
Upstream URL: | http://www.xanmod.org/ |
Licenses: | GPL2 |
Submitter: | Yoshi2889 |
Maintainer: | figue (figuepluto, jfigueras) |
Last Packager: | figue |
Votes: | 132 |
Popularity: | 2.20 |
First Submitted: | 2017-02-14 09:40 (UTC) |
Last Updated: | 2024-11-22 21:25 (UTC) |
Dependencies (10)
- pahole (pahole-gitAUR)
- bc (bc-ghAUR) (make)
- cpio (cpio-gitAUR) (make)
- gettext (gettext-gitAUR) (make)
- libelf (elfutils-gitAUR) (make)
- pahole (pahole-gitAUR) (make)
- perl (perl-gitAUR) (make)
- python (python37AUR, python311AUR, python310AUR) (make)
- tar (tar-gitAUR, busybox-coreutilsAUR) (make)
- xz (xz-gitAUR) (make)
Required by (0)
Sources (4)
Latest Comments
« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 11 12 .. 52 Next › Last »
figue commented on 2023-02-27 19:59 (UTC)
ishitatsuyuki commented on 2023-02-27 05:42 (UTC)
It looks like tracers have been disabled upstream since https://github.com/xanmod/linux/commit/bdce8ad4d2d70bc0ce43c87565a95c3d7bf017c0.
For the tracer option to actually make a difference, I think this should be changed to enable these three options when use_tracers=y
(instead of disable):
scripts/config --enable CONFIG_FTRACE \
--enable CONFIG_FUNCTION_TRACER \
--enable CONFIG_STACK_TRACER
figue commented on 2023-02-12 15:44 (UTC)
@yangon99 thanks. It will be fixed in next release.
yangon99 commented on 2023-02-12 15:22 (UTC) (edited on 2023-02-12 15:23 (UTC) by yangon99)
hello, it seems there's something wrong with tools/bpf/resolve_btfids
here's the origin line 276 in PKGBUILD
:
# required when DEBUG_INFO_BTF_MODULES is enabled
if [ -f "$builddir/tools/bpf/resolve_btfids" ]; then install -Dt "$builddir/tools/bpf/resolve_btfids" tools/bpf/resolve_btfids/resolve_btfids ; fi
I think we should change the line into the following pattern:
# required when DEBUG_INFO_BTF_MODULES is enabled
if [ -f "tools/bpf/resolve_btfids/resolve_btfids" ]; then install -Dt "$builddir/tools/bpf/resolve_btfids" tools/bpf/resolve_btfids/resolve_btfids ; fi
figue commented on 2023-01-25 19:22 (UTC)
@j1simon
-
It's a kernel feature
-
I think it's here:
https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=linux-xanmod#n126
Do makepkg -o and check file .config, in my case the result has:
CONFIG_LOCALVERSION="-skylake"
figue commented on 2023-01-25 19:08 (UTC)
@habernir someone post this:
https://github.com/xanmod/linux/issues/331#issuecomment-1402505778
IDK if it works
habernir commented on 2023-01-25 08:02 (UTC)
well i compile also 6.1.8 xanmod to see if its boot in zen3 but still the same. doesn't boot . i hope their will be a patch for this issue
j1simon commented on 2023-01-24 12:45 (UTC) (edited on 2023-01-24 12:59 (UTC) by j1simon)
One question about PKGBUILD
: why "Disabling FUNCTION_TRACER/GRAPH_TRACER only if we are not compiling with clang..."?
Another question: how can I avoid adding the optimization type in the kernel name to be consistent with the standard kernel naming? I use ZFS and I have created a module (like zfs-linux-zen
) to compile zfs (without DKMS) for this kernel and with the current nomenclature it is a pain.
figue commented on 2023-01-21 09:19 (UTC)
@ayyash07 I'm sorry, but I cannot reproduce this issue... If you figure out how to workaround, please post here or in upstream project github. Thank you
figue commented on 2023-01-21 09:18 (UTC)
@RubenKelevra depends on what config you use. Default is upstream's config. So if you think these options should benify whole project, please fill a request in its project github.
Pinned Comments
anlorsp commented on 2024-07-13 17:07 (UTC) (edited on 2024-07-15 04:53 (UTC) by anlorsp)
Adding
to myconfig does solve the "Failed to insert module 'nvidia': Key was rejected by service" problem.
Anyone who configured secure boot using sbctl and want to load dkms modules can try this solution.
figue commented on 2018-12-14 00:50 (UTC) (edited on 2023-02-27 20:00 (UTC) by figue)
This package have several variables to enable/disable features.
Personally I'm running now xanmod kernel compiled with this:
Also, you can now create the file myconfig in your local repo to build this package with a custom config or use ${XDG_CONFIG_HOME}/linux-xanmod/myconfig. This file can be a full kernel config or be a script with several entries to add/remove options (you have several examples in PKGBUILD by using scripts/config):
Code involved: