Package Details: linux-lqx 6.10.11.lqx1-1

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: 160
Popularity: 1.30
First Submitted: 2011-08-08 16:08 (UTC)
Last Updated: 2024-09-20 17:12 (UTC)

Dependencies (19)

Required by (11)

Sources (3)

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

Latest Comments

« First ‹ Previous 1 .. 78 79 80 81 82 83 84 85 86 87 88 .. 121 Next › Last »

clfarron4 commented on 2014-05-06 12:58 (UTC)

Question: Is anyone having random kernel panics caused by BFQ with "elevator=bfq" set?

shivik commented on 2014-05-02 06:27 (UTC)

The first 3.14 lqx patch is out, but the config files are the ones from 3.13, so you'll get lots config related questions during build.Just hit "Enter" to each one. That is until damentz uploads the new configs for 3.14. And there is no BFS released for 3.14(if that's a show stopper for you) 3.13 and older stuff can be found here: http://liquorix.herobo.com/linux-lqx/

shivik commented on 2014-04-20 20:29 (UTC)

Sorry guys.I was in a hurry for Easter day and forgot to clean up after some experiments. My fault entirely. Redownload and test.Should be OK now.

Roshless commented on 2014-04-20 19:47 (UTC)

Not only you. Tried 2 times since morning, same error.

fhdrin commented on 2014-04-20 19:30 (UTC)

compile errors with latest (3.13.10-1) lqx kernel. just me or everyone?

alaviss commented on 2014-04-20 02:00 (UTC)

Liquorix 3.13.10-1 is out! Please update the package

clfarron4 commented on 2014-04-08 21:20 (UTC)

Thanks! Builds now!

shivik commented on 2014-04-08 16:16 (UTC)

Yes,there is a problem. https://aur.archlinux.org/packages/linux-uksm-ck/?setlang=en&comments=all The guy reports that this works: --- linux-3.13.9-uksm_orig/mm/uksm.c 2014-04-04 14:56:29.738462696 -0300 +++ linux-3.13.9-devel/mm/uksm.c 2014-04-04 14:55:36.165528224 -0300 @@ -1604,7 +1604,11 @@ static struct page *page_trans_compound_anon(struct page *page) { if (PageTransCompound(page)) { - struct page *head = compound_trans_head(page); + /*benatto: old compound_trans_head + * was merged into standard + * compound_head function on linux/mm.h + */ + struct page *head = compound_head(page); /* * head may actually be splitted and freed from under * us but it's ok here.