Done.
Thanks for your work, damentz!
P.S. I was actually waiting for -5, but you always release your patches after I go to bed :)
Search Criteria
Package Details: linux-lqx 6.14.4.lqx1-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/linux-lqx.git (read-only, click to copy) |
---|---|
Package Base: | linux-lqx |
Description: | The Linux Liquorix kernel and modules |
Upstream URL: | https://liquorix.net/ |
Keywords: | bbr2 bfq futex pds proton zen |
Licenses: | GPL-2.0-only |
Provides: | UKSMD-BUILTIN, VHBA-MODULE, VIRTUALBOX-GUEST-MODULES, WIREGUARD-MODULE |
Submitter: | akurei |
Maintainer: | sir_lucjan (damentz) |
Last Packager: | damentz |
Votes: | 165 |
Popularity: | 1.97 |
First Submitted: | 2011-08-08 16:08 (UTC) |
Last Updated: | 2025-04-25 14:10 (UTC) |
Dependencies (19)
- coreutils (coreutils-gitAUR, coreutils-selinuxAUR, coreutils-uutilsAUR, coreutils-uutils-symlinkAUR)
- initramfs (booster-gitAUR, booster-wip-gitAUR, dracut-gitAUR, mkinitcpio-gitAUR, ugrd-gitAUR, booster, dracut, mkinitcpio)
- kmod (kmod-gitAUR)
- bc (bc-ghAUR) (make)
- cpio (cpio-gitAUR) (make)
- gettext (gettext-gitAUR) (make)
- git (git-gitAUR, git-glAUR) (make)
- libelf (elfutils-gitAUR) (make)
- pahole (pahole-gitAUR) (make)
- perl (perl-gitAUR) (make)
- python (python37AUR, python311AUR, python310AUR) (make)
- tar (tar-gitAUR) (make)
- xz (xz-gitAUR) (make)
- zstd (zstd-gitAUR, zstd-staticAUR) (make)
- linux-firmware (linux-libre-firmwareAUR, linux-firmware-uncompressedAUR, linux-firmware-gitAUR) (optional) – firmware images needed for some devices
- modprobed-dbAUR (optional) – Keeps track of EVERY kernel module that has ever been probed - useful for those of us who make localmodconfig
- sof-firmware (optional) – firmware images needed for Sound Open Firmware capable devices
- uksmdAUR (uksmd-gitAUR, uksmd-nosystemd-gitAUR, uksmd-cachyos-nosystemd-gitAUR) (optional) – Userspace KSM helper daemon
- wireless-regdb (optional) – to set the correct wireless channels of your country
Required by (12)
- linux-lqx-docs
- linux-lqx-headers
- mullvad-wg.sh-git (requires WIREGUARD-MODULE) (optional)
- piavpn-bin (requires WIREGUARD-MODULE) (optional)
- piavpn-manual-git (requires WIREGUARD-MODULE)
- uksmd (requires UKSMD-BUILTIN)
- uksmd-cachyos-nosystemd-git (requires UKSMD-BUILTIN) (optional)
- uksmd-git (requires UKSMD-BUILTIN)
- uksmd-nosystemd-git (requires UKSMD-BUILTIN) (optional)
- uksmdstats-git (requires UKSMD-BUILTIN) (optional)
- virtualbox-guest-utils-nox-svn (requires VIRTUALBOX-GUEST-MODULES)
- virtualbox-guest-utils-svn (requires VIRTUALBOX-GUEST-MODULES)
Sources (3)
Latest Comments
« First ‹ Previous 1 .. 107 108 109 110 111 112 113 114 115 116 117 .. 122 Next › Last »
shivik commented on 2012-01-24 06:43 (UTC)
damentz commented on 2012-01-24 02:42 (UTC)
@shivik: please update to 3.2.1-5 soon. This contains a patch to a recently discovered local privilege escalation vulnerability. More information here: http://techpatterns.com/forums/about2004.html
silvik commented on 2012-01-23 16:49 (UTC)
@damentz: thanks for including brcmsmac in the latest release.
shivik commented on 2012-01-23 06:58 (UTC)
experimental lqx 3.2.1-4 with extramodules - http://netload.in/dateiW6Wijh5flg/linux-lqx-3.2.1-4_with_extramodules.tar.gz.htm
nvidia module for it - http://netload.in/dateixrEyHY2Aqg/nvidia-lqx-290.10-2.with_extramodules.tar.gz.htm
<deleted-account> commented on 2012-01-22 23:50 (UTC)
Out of date. Current patch is for 3.2.1-4, won't build.
shivik commented on 2012-01-21 17:30 (UTC)
@harryNID,
request 1:Done
request 2:Done
Regarding the kernel configuration - it's what damentz sets up for us.Take a look here http://liquorix.net/sources/3.2/
<deleted-account> commented on 2012-01-21 16:56 (UTC)
@shivik, Could you please take a look at the modprobed_db code. The new version of modprobed_db does not use the reload_database script any longer. For reference check out "modprobed_db" and "linux-ck" packages. It does require that sudo be set up however.
Example: (Updated for this package from "linux-ck" PKGBUILD)
### Optionally load needed modules for the make localmodconfig
# See http://aur.archlinux.org/packages.php?ID=41689
if [ $_config = "local" ]; then
msg "If you have modprobe_db installed, running it in recall mode now"
if [ -e /usr/bin/modprobed_db ]; then
[[ ! -x /usr/bin/sudo ]] && echo "Cannot call modprobe with sudo. Install via pacman -S sudo and configure to work with this user." && exit 1
sudo /usr/bin/modprobed_db recall
fi
msg "Running Steven Rostedt's make localmodconfig now"
make localmodconfig
else
yes "" | make config
fi
Also, would it be possible to add nconfig along with menuconfig and xconfig. It has a nicer interface than plain menuconfig (IMO).
Example: (Since I use nconfig I have "y" set to that but it's up to you)
_menu="y" # menuconfig option [m = make menuconfig; x = make xconfig; nconf or "y" = nconfig n = none]
if [ $_menu = "m" ]; then
msg "Running make menuconfig"
make menuconfig
fi
if [ $_menu = "x" ]; then
msg "Running make xconfig"
make xconfig
fi
if [ $_menu = "nconf" -o $_menu = "y" ]; then
msg "Running make nconfig"
make nconfig
fi
One last question, Is it just me or does the this new kernel config version have more things being built directly into the kernel? Is it the lqx config? It just seems like there is more things I have to manually go through and deselect from being built directly in than in previous versions so I can get a stripped down kernel.
Thanks for your time!!
shivik commented on 2012-01-21 07:02 (UTC)
Oops, I think I got it.You have to use this nvidia PKGBUILD with the extramodules lqx http://netload.in/dateixrEyHY2Aqg/nvidia-lqx-290.10-2.with_extramodules.tar.gz.htm
I used that on both machines,but never included it in the original tar.gz, because I didn't know you use nvidia at that time.
It will be good if others test if extramodules lqx works for them.
If it does I'll replace the main lqx package with one that uses extramodules.
shivik commented on 2012-01-21 06:29 (UTC)
@Wintershade,looks like you have some linux-headers problem.At least this is what "Unable to determine the target kernel version." I get when I mess up the location of the linux headers when I'm tinkering around experimenting.
""nvidia: disagrees about version of symbol module_layout" - this I get when I try to load a nvidia module that is compiled for a different version of the kernel.
for example 3.1.5 module on 3.1.8 kernel(pure example there with versions).Or maybe (3.1 module on 3.2 kernel).
What's inside your "ls /lib/modules/extramodules-3.2-lqx/".I get a "nvidia.ko.gz" and "version".
I checked the extramodules kernel on another machine at home and it does work there as well(I only have nvidia module),but it boots to gui no problem.
I'm actually still running the extramodule kernel that I did for you on 19th of jan.
That doesn't prove anything 100% of course,but is a starting point where to look.
Pinned Comments
damentz commented on 2020-08-31 15:22 (UTC) (edited on 2021-12-21 18:25 (UTC) by damentz)
Official binaries of linux-lqx, linux-lqx-headers, and linux-lqx-docs are now available: https://wiki.archlinux.org/index.php/Unofficial_user_repositories#liquorix
Signing key import instructions:
sudo pacman-key --keyserver hkps://keyserver.ubuntu.com --recv-keys 9AE4078033F8024D && sudo pacman-key --lsign-key 9AE4078033F8024D