From 0194c581896ea73e9d8e41e3e908a399afb15659 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Sun, 5 Sep 2021 22:16:12 +0200 Subject: sys-kernel/linux: update to 5.13.14 --- sys-kernel/linux/Manifest | 2 +- sys-kernel/linux/linux-5.13.14-r2.ebuild | 112 +++++++++++++++++++++++++++++++ sys-kernel/linux/linux-5.13.9-r1.ebuild | 107 ----------------------------- 3 files changed, 113 insertions(+), 108 deletions(-) create mode 100644 sys-kernel/linux/linux-5.13.14-r2.ebuild delete mode 100644 sys-kernel/linux/linux-5.13.9-r1.ebuild (limited to 'sys-kernel') diff --git a/sys-kernel/linux/Manifest b/sys-kernel/linux/Manifest index 81dbda9..d41d183 100644 --- a/sys-kernel/linux/Manifest +++ b/sys-kernel/linux/Manifest @@ -1 +1 @@ -DIST linux-5.13.9.tar.gz 192744819 BLAKE2B 823be596395f43942e54ed86ab87b080553a851f4da3dc68544deeedcce23434af61f67d61ca0cce0175ded549e151c21cfc6b099abba96f215c0fe17633da69 SHA512 51f0acb52c1a492dfe9733d062b6fde4a8e4d590278a1aad79bdbc5cecef9ca5076006e95d80c9fa5041d6472dfd890152688a38efbb04166d95128fb476a407 +DIST linux-5.13.14.tar.gz 192762380 BLAKE2B 87d0f367b559c7bfb9324f0322053ec76d764bdae519b1e6125ddf495da7f87324ab35784c204c6b97e1b213a1bd317da807f72964a8705c265a7acf384a270e SHA512 93d5a711c041b1bdcd4c68232a8d46a9cbb832cbc8de9247fe90020a710ca0902dacf99e073f0c60be1eeda9d3125214daa08abfc6e203f0966436b0c55d14b9 diff --git a/sys-kernel/linux/linux-5.13.14-r2.ebuild b/sys-kernel/linux/linux-5.13.14-r2.ebuild new file mode 100644 index 0000000..1fab479 --- /dev/null +++ b/sys-kernel/linux/linux-5.13.14-r2.ebuild @@ -0,0 +1,112 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +VER="${PV%-r*}" +REV="r${PV##*-r}" + +DESCRIPTION="Linux kernel" +HOMEPAGE="http://kernel.org/" +SRC_URI="https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/snapshot/linux-${VER}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/linux-${VER}" + +LICENSE="GPLv2" +SLOT="${PV}" +KEYWORDS="amd64 ~x86" +IUSE="amd intel initramfs ucode" + +RDEPEND="initramfs? ( sys-boot/myinitramfs )" +DEPEND=" + sys-devel/bc + dev-libs/elfutils + dev-util/pahole + app-arch/cpio +" + +src_configure() { + # Fix ARCH variable + [ "$ARCH" = "amd64" ] && ARCH="x86" + + "${FILESDIR}"/config_prepare.sh $(usev amd) $(usev intel) \ + || die "Configuration application failed" +} + +src_install() { + emake modules_install INSTALL_MOD_PATH="${D}" + for dir in "build" "source"; do + rm "${D}/lib/modules/${PV}/$dir" + ln -sf "../../../usr/src/${P}" "${D}/lib/modules/${PV}/$dir" + done + + dodir /boot + insinto /boot + newins "${S}/arch/$ARCH/boot/bzImage" "bzlinux-${PV}" + + # Package source (kind of annoying because of some packages expecting it) + emake clean + dodir /usr/src + cp -a "${S}" "${D}/usr/src/${P}" +} + +# Link /usr/src/linux to newest kernel +src_link() { + ( + cd "${ROOT}/usr/src" + rm -f linux + ln -s $(ls | grep "linux-" | sort | tail -1) linux + ) +} + +sysfile() { + local cfgs=( + "/boot/syslinux.cfg" + "/boot/syslinux/syslinux.cfg" + "/boot/EFI/BOOT/syslinux.cfg" + "/boot/extlinux.conf" + ) + for cfg in "${cfgs[@]}"; do + if [ -f "${ROOT}${cfg}" ]; then + echo "${ROOT}${cfg}" + return 0 + fi + done + eerror "Can't locate syslinux configuration!" +} + +pkg_postinst() { + # Add label to syslinux config if there is non yet + local syslinux initrd args + local syslinux="$(sysfile)" + if ! grep -q "^LABEL gentoo-${PV}$" "${syslinux}"; then + if $(use initramfs); then + if $(use ucode); then + initrd="\tINITRD /ucode.cpio,/initramfs-gentoo\n" + else + initrd="\tINITRD /initramfs-gentoo\n" + fi + fi + args="$(grep -E "^# ARGS: " "${syslinux}" | sed 's/^# ARGS: //')" + if [ -n "$args" ]; then + sed -i "/^## Dynamic labels ##$/a LABEL gentoo-${PV}\n\tMENU LABEL Gentoo ${PV}\n\tLINUX /bzlinux-${PV}\n\tAPPEND ${args}\n$initrd" "${syslinux}" || eerror "Adding label to syslinux configuration failed!" + sed -i "/^## Dynamic recovery labels ##$/a LABEL gentoo-${PV}-recovery\n\tMENU LABEL Gentoo ${PV} - Recovery\n\tLINUX /bzlinux-${PV}\n\tAPPEND ${args} recovery\n$initrd" "${syslinux}" || eerror "Adding recovery label to syslinux configuration failed!" + else + eerror "Adding label to syslinux configuration failed as there are no arguments" + fi + fi + + src_link +} + +pkg_prerm() { + # Remove label from syslinux config + local syslinux="$(sysfile)" + sed -i "/^LABEL gentoo-${PV}\(\|-recovery\)$/,/^$/d" "${syslinux}" || eerror "Removing label from syslinux fonfiguration failed!" +} + +pkg_postrm() { + # Remove any residue files + rm -rf "/usr/src/${P}" "/lib/modules/${PV}" + + src_link +} diff --git a/sys-kernel/linux/linux-5.13.9-r1.ebuild b/sys-kernel/linux/linux-5.13.9-r1.ebuild deleted file mode 100644 index d6f103b..0000000 --- a/sys-kernel/linux/linux-5.13.9-r1.ebuild +++ /dev/null @@ -1,107 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -VER="${PV%-r*}" -REV="r${PV##*-r}" - -DESCRIPTION="Linux kernel" -HOMEPAGE="http://kernel.org/" -SRC_URI="https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/snapshot/linux-${VER}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/linux-${VER}" - -LICENSE="GPLv2" -SLOT="${PV}" -KEYWORDS="amd64 ~x86" -IUSE="amd intel initramfs ucode" - -RDEPEND="initramfs? ( sys-boot/myinitramfs )" -DEPEND=" - sys-devel/bc - dev-libs/elfutils - dev-util/pahole - app-arch/cpio -" - -src_configure() { - # Fix ARCH variable - [ "$ARCH" = "amd64" ] && ARCH="x86" - - "${FILESDIR}"/config_prepare.sh $(usev amd) $(usev intel) \ - || die "Configuration application failed" -} - -src_install() { - emake modules_install INSTALL_MOD_PATH="${D}" - for dir in "build" "source"; do - rm "${D}/lib/modules/${PV}/$dir" - ln -sf "../../../usr/src/${P}" "${D}/lib/modules/${PV}/$dir" - done - - dodir /boot - insinto /boot - newins "${S}/arch/$ARCH/boot/bzImage" "bzlinux-${PV}" - - # Package source (kind of annoying because of some packages expecting it) - emake clean - dodir /usr/src - cp -a "${S}" "${D}/usr/src/${P}" -} - -# Link /usr/src/linux to newest kernel -src_link() { - ( - cd "${ROOT}/usr/src" - rm -f linux - ln -s $(ls | grep "linux-" | sort | tail -1) linux - ) -} - -sysfile() { - if [ -f "${ROOT}/boot/syslinux/syslinux.cfg" ]; then - SYSLINUX="${ROOT}/boot/syslinux/syslinux.cfg" - elif [ -f "${ROOT}/boot/EFI/BOOT/syslinux.cfg" ]; then - SYSLINUX="${ROOT}/boot/EFI/BOOT/syslinux.cfg" - elif [ -f "${ROOT}/boot/extlinux.conf" ]; then - SYSLINUX="${ROOT}/boot/extlinux.conf" - else - eerror "Can't locate syslinux configuration!" - fi -} - -pkg_postinst() { - # Add label to syslinux config if there is non yet - sysfile - if ! grep -q "^LABEL gentoo-${PV}$" "${SYSLINUX}"; then - if $(use initramfs); then - if $(use ucode); then - INITRD="\tINITRD /ucode.cpio,/initramfs-gentoo\n" - else - INITRD="\tINITRD /initramfs-gentoo\n" - fi - fi - ARGS="$(grep -E "^# ARGS: " "${SYSLINUX}" | sed 's/^# ARGS: //')" - if [ -n "$ARGS" ]; then - sed -i "/^## Dynamic labels ##$/a LABEL gentoo-${PV}\n\tMENU LABEL Gentoo ${PV}\n\tLINUX /bzlinux-${PV}\n\tAPPEND ${ARGS}\n$INITRD" "${SYSLINUX}" || eerror "Adding label to syslinux configuration failed!" - sed -i "/^## Dynamic recovery labels ##$/a LABEL gentoo-${PV}-recovery\n\tMENU LABEL Gentoo ${PV} - Recovery\n\tLINUX /bzlinux-${PV}\n\tAPPEND ${ARGS} recovery\n$INITRD" "${SYSLINUX}" || eerror "Adding recovery label to syslinux configuration failed!" - else - eerror "Adding label to syslinux configuration failed as there are no arguments" - fi - fi - - src_link -} - -pkg_prerm() { - # Remove label from syslinux config - sysfile - sed -i "/^LABEL gentoo-${PV}\(\|-recovery\)$/,/^$/d" "${SYSLINUX}" || eerror "Removing label from syslinux fonfiguration failed!" -} - -pkg_postrm() { - # Remove any residue files - rm -rf "/usr/src/${P}" "/lib/modules/${PV}" - - src_link -} -- cgit v1.2.3