Bump version:

1. sys-kernel/liquorix-sources: bump to 6.1.4-lqx2
2. update sys-kernel/liquorix-sources/config/default-config
This commit is contained in:
HougeLangley 2023-01-08 22:11:51 +08:00 committed by 苏业钦
parent 3edb49fce7
commit f649296e31
3 changed files with 60 additions and 1 deletions

View File

@ -3,3 +3,4 @@ DIST genpatches-6.1-1.extras.tar.xz 3804 BLAKE2B 62ee97ed9142b41f415129dfb12d103
DIST linux-6.1.tar.xz 134728520 BLAKE2B ae60257860b2bd1bd708d183f0443afc60ebbd2b3d535c45e44c2e541bd0928530a3b62de6385dd4e4726ebbedcc0a871d4f3ffb4105b9f1f6d8ed7467f5688e SHA512 6ed2a73c2699d0810e54753715635736fc370288ad5ce95c594f2379959b0e418665cd71bc512a0273fe226fe90074d8b10d14c209080a6466498417a4fdda68
DIST v6.1.3-lqx1.patch.xz 478240 BLAKE2B 427593b6e45803800e952973da2b6b548ab7560feedd3cc4e60d8d5fb809802faabe488f6b07e3178809935399ee9f7bd624ec0a1bed27a1c0ec1a476693c778 SHA512 6a56840655e7c01d36516bcd51d2b65a57557e1729db7558b64e6a39c3ae45ac073b3370554319202d1c8f67f35c605abeb181d5b8e2e728806901af97e0bf14
DIST v6.1.4-lqx1.patch.xz 540848 BLAKE2B f42ec9e68b776b9f3ace8fd125b08e7492a320f3e8a1c69a7b40ce525100957a7e7acf81a3a0b346dfba99ca8fec4347d07e0bc8b0881ee257550185fd5c0892 SHA512 4de48ae9286b36d465af161201bee18583d17cff51f2fd55abd71cb501ba7c1dd82d8b07d744fc18a9a10511d4f0e6ad922a14e83c546e8308b80bda52d1a7b9
DIST v6.1.4-lqx2.patch.xz 540804 BLAKE2B 03999c08d4136d6e3488262ec589d90ec1e38b89ea350c5c567ce2e1f5edf771ebf00eea606159ed51e7920775065f558c1e5f9c4fae1a0f8ec25ccab5ab85de SHA512 df0275cd6abb430c15a6d3aa8748c81851334a9a095dba732ded9db43089ceb0f390ef6c31b4de5521bd4044120001d544a61b501b2675375db0c31dbc04253f

View File

@ -10643,7 +10643,7 @@ CONFIG_INIT_STACK_NONE=y
CONFIG_INIT_ON_ALLOC_DEFAULT_ON=y
# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set
CONFIG_CC_HAS_ZERO_CALL_USED_REGS=y
CONFIG_ZERO_CALL_USED_REGS=y
# CONFIG_ZERO_CALL_USED_REGS is not set
# end of Memory initialization
CONFIG_RANDSTRUCT_NONE=y

View File

@ -0,0 +1,58 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
# Define what default functions to run
ETYPE="sources"
# No 'experimental' USE flag provided, but we still want to use genpatches
K_EXP_GENPATCHES_NOUSE="1"
# Just get basic genpatches, -lqx patch set already includes main updates
K_GENPATCHES_VER="1"
# -lqx already sets EXTRAVERSION to kernel Makefile
K_NOSETEXTRAVERSION="1"
# Not supported by the Gentoo security team
K_SECURITY_UNSUPPORTED="1"
# We want the very basic patches from gentoo-sources, experimental patch is
# already included in liquorix-sources
K_WANT_GENPATCHES="extras"
# To use CJKTTY, Please enable this USE
IUSE="+cjk"
DEPEND="
app-arch/cpio
dev-util/pahole"
inherit kernel-2
detect_version
DESCRIPTION="Liquorix kernel is best one for desktop, multimedia and gaming workloads"
HOMEPAGE="https://liquorix.net/"
SRC_URI="
${KERNEL_BASE_URI}/linux-${KV_MAJOR}.${KV_MINOR}.tar.xz
${GENPATCHES_URI}
https://github.com/zen-kernel/zen-kernel/releases/download/v${PV}-lqx2/v${PV}-lqx2.patch.xz
https://github.com/zhmars/cjktty-patches/raw/master/v${KV_MAJOR}.x/cjktty-${KV_MAJOR}.${KV_MINOR}.patch"
KEYWORDS="~amd64"
S="${WORKDIR}/linux-${PV}-liquorix"
K_EXTRAEINFO="For more info on liquorix-kernel and details on how to report problems, see: ${HOMEPAGE}."
src_unpack() {
UNIPATCH_LIST_DEFAULT="${DISTDIR}/v${PV}-lqx2.patch.xz"
UNIPATCH_LIST=""
if use cjk; then
UNIPATCH_LIST+="${DISTDIR}/cjktty-${KV_MAJOR}.${KV_MINOR}.patch"
fi
kernel-2_src_unpack
}