app-emulation/virtualbox-modules: drop 7.1.12

Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
This commit is contained in:
Viorel Munteanu
2025-12-19 09:07:15 +02:00
parent e04cda236f
commit 0bcc01d8aa
2 changed files with 0 additions and 49 deletions

View File

@@ -1,4 +1,3 @@
DIST vbox-host-kernel-module-src-7.1.12.tar.xz 768076 BLAKE2B 70cd6fcf9ad7195cef6eb62fa212815cd3c0ca7a8c483d41cac73b7f1487293e3ec768e566a1026784d27593ad6294bcf136444152348c75029367a7467aa67e SHA512 0c9948e9cecde63c8976fb8007068ab6e3be9654b901ab8dc14279033212f7bc18986c4af1b6e6aafdd19388dce00fa935273f5312f93d493fb3fa2a9bb1affa
DIST vbox-host-kernel-module-src-7.1.14.tar.xz 768400 BLAKE2B 71b1c0ed6e83a7ff723da1335dc77bdd540964602d8cf98e07bbd8fdd06ae86fb5fe8d506e167ce26fa8d432ce2ad619f058183b8583711b9acf71e885b020b7 SHA512 10fe023f505f1f6b8ee031d5e826208a4669c96d8890efe6df81c4d5e37fd323bb0a186a52b2063d5b9d0114b3cee94f5ce7abd0488c0fa67b3e3daf33348b70
DIST vbox-host-kernel-module-src-7.2.2.tar.xz 810096 BLAKE2B 9ab365e8828b8ffda11c40c2b1e4da2d6327b4f28f10ac423ba3564c399b8eea65cdde2655a32c13c3e71282ee7c19c82c0747a8b5fd6557d72ecbd5b327ae0f SHA512 00173cf92256e97b88e8e87e19424610eceb3bda7e2ac8433cc6b633f01f0fdaeb3fc0c66c4742d8b26d54d0aac57268a10d9d2975fec9a7f568fdc55eb10209
DIST vbox-host-kernel-module-src-7.2.4.tar.xz 812144 BLAKE2B 5c18bf9bc656fb3e49c9b3bbc8e2b55175d83680cbb7d8182114a9d07a670d42159f845a79187d5c7ca34ad4e2cccfdce7cd1a4152b5df6aff05b436dfd67f48 SHA512 bff6cbbe8fc76e964078e9b54c10365628950a8bc7c8b6e08c26b903b118e8baeded1ecffd9dfe7170288ca023e877443d23aa9fd4554e3052b66d126634d62f

View File

@@ -1,48 +0,0 @@
# Copyright 2022-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# XXX: the tarball here is just the kernel modules split out of the binary
# package that comes from VirtualBox-*.run
# XXX: update: now it is split from virtualbox-*-Debian~bullseye_amd64.deb
EAPI=8
inherit linux-mod-r1
MY_P="vbox-host-kernel-module-src-${PV}"
DESCRIPTION="Kernel Modules for Virtualbox"
HOMEPAGE="https://www.virtualbox.org/"
SRC_URI="https://dev.gentoo.org/~ceamac/${CATEGORY}/${PN}/${MY_P}.tar.xz"
S="${WORKDIR}"
LICENSE="GPL-3"
SLOT="0/$(ver_cut 1-2)"
KEYWORDS="amd64"
CONFIG_CHECK="~!SPINLOCK JUMP_LABEL ~PREEMPT_NOTIFIERS"
src_compile() {
local modlist=( {vboxdrv,vboxnetflt,vboxnetadp}=misc )
local modargs=( KERN_DIR="${KV_OUT_DIR}" KERN_VER="${KV_FULL}" )
linux-mod-r1_src_compile
}
src_install() {
linux-mod-r1_src_install
insinto /usr/lib/modules-load.d/
newins "${FILESDIR}"/virtualbox.conf-r1 virtualbox.conf
insinto /etc/modprobe.d # bug #945135
newins - virtualbox.conf <<-EOF
# modprobe.d configuration file for VBOXSF
# Starting with kernel 6.12,
# KVM initializes virtualization on module loading by default.
# This prevents VirtualBox VMs from starting.
# See also:
# https://bugs.gentoo.org/945135
# https://www.virtualbox.org/wiki/Changelog-7.1
# ------------------------------
options kvm enable_virt_at_load=0
EOF
}