kernel-6.12.40
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
<Summary>Kernel module allowing to switch dedicated graphics card on Optimus laptops</Summary>
|
||||
<Description>kernel module allowing to switch dedicated graphics card on Optimus laptops</Description>
|
||||
<BuildDependencies>
|
||||
<Dependency version="6.6.92">kernel-module-headers</Dependency>
|
||||
<Dependency version="6.12.40">kernel-module-headers</Dependency>
|
||||
</BuildDependencies>
|
||||
<Archive sha1sum="e282ee682d794e3962baa4dead01917c42571e78" type="targz">https://github.com/Bumblebee-Project/bbswitch/archive/v0.8.tar.gz</Archive>
|
||||
<Patches>
|
||||
@@ -25,7 +25,7 @@
|
||||
<Package>
|
||||
<Name>module-bbswitch</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency version="6.6.92">kernel</Dependency>
|
||||
<Dependency version="6.12.40">kernel</Dependency>
|
||||
<Dependency release="current">bbswitch-common</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
@@ -63,6 +63,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="96">
|
||||
<Date>2025-07-24</Date>
|
||||
<Version>0.8</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="95">
|
||||
<Date>2025-05-23</Date>
|
||||
<Version>0.8</Version>
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
https://bugs.gentoo.org/947928
|
||||
|
||||
Adds support for the new name of the asm/unaligned.h header file for kernels >=6.12.0 (header file was renamed to "linux/unaligned.h")
|
||||
Bug found by Sam Petch
|
||||
Patch by Sam Petch
|
||||
|
||||
TESTING DETAILS:
|
||||
|
||||
Bugfix tested by Sam Petch on kernels: gentoo-sources:6.6.67, gentoo-sources:6.12.4-r1, gentoo-sources:6.12.9
|
||||
|
||||
Patch tested on kernels: gentoo-sources:6.6.67, gentoo-sources:6.12.9
|
||||
|
||||
Bugfix and patch tested on device: 2012 Macbook Pro (A1278) running Gentoo Linux with Gnome Desktop / OpenRC profile
|
||||
|
||||
Chipset: BCM4331 (Broadcom)
|
||||
|
||||
Contact: sam.petch.recall824@passinbox.com
|
||||
|
||||
--- a/src/wl/sys/wl_linux.c
|
||||
+++ b/src/wl/sys/wl_linux.c
|
||||
@@ -56,7 +56,12 @@
|
||||
#include <asm/irq.h>
|
||||
#include <asm/pgtable.h>
|
||||
#include <asm/uaccess.h>
|
||||
+
|
||||
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 12, 0)
|
||||
+#include <linux/unaligned.h>
|
||||
+#else
|
||||
#include <asm/unaligned.h>
|
||||
+#endif
|
||||
|
||||
#include <proto/802.1d.h>
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
<Archive sha1sum="8acbdbb4ab4ab4123d1773b616904798fbef9277" type="targz" target="i686">https://docs.broadcom.com/docs-and-downloads/docs/linux_sta/hybrid-v35-nodebug-pcoem-6_30_223_271.tar.gz</Archive>
|
||||
<Archive sha1sum="1f568bb989d175813c5631c6629d9479eae6f3be" type="targz" target="x86_64">https://docs.broadcom.com/docs-and-downloads/docs/linux_sta/hybrid-v35_64-nodebug-pcoem-6_30_223_271.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency version="6.6.92">kernel-module-headers</Dependency>
|
||||
<Dependency version="6.12.40">kernel-module-headers</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">patch/linux-recent.patch</Patch>
|
||||
@@ -31,13 +31,14 @@
|
||||
|
||||
<Patch level="1">patch/broadcom-wl-6.30.223.271-kernel-6.0.0.patch</Patch>
|
||||
<Patch level="1">patch/broadcom-wl-fix-linux-6.1.patch</Patch>
|
||||
<Patch level="1">patch/017-handle-new-header-name-6.12.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>module-broadcom-wl</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency version="6.6.92">kernel</Dependency>
|
||||
<Dependency version="6.12.40">kernel</Dependency>
|
||||
<Dependency release="current">module-broadcom-wl-userspace</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
@@ -66,6 +67,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="95">
|
||||
<Date>2025-07-24</Date>
|
||||
<Version>6.30.223.271</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="94">
|
||||
<Date>2025-05-23</Date>
|
||||
<Version>6.30.223.271</Version>
|
||||
|
||||
@@ -12,9 +12,9 @@
|
||||
<IsA>driver</IsA>
|
||||
<Summary>Kernel modules for VirtualBox guest machines</Summary>
|
||||
<Description>This package provides the kernel modules needed for mouse integration and shared folder support between VirtualBox host and guest systems.</Description>
|
||||
<Archive sha1sum="ac1ddabb07a16a3ea3ab57edd48431b31271044b" type="tarxz">https://sourceforge.net/projects/pisilinux/files/source/module-virtualbox-guest-7.1.8.tar.xz</Archive>
|
||||
<Archive sha1sum="4417864c71f3e1a1a953280e90b2550592db550b" type="tarxz">https://sourceforge.net/projects/pisilinux/files/source/module-virtualbox-guest-7.1.12.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency version="6.6.92">kernel-module-headers</Dependency>
|
||||
<Dependency version="6.12.40">kernel-module-headers</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch>vboxsf-make.patch</Patch> -->
|
||||
@@ -24,7 +24,7 @@
|
||||
<Package>
|
||||
<Name>module-virtualbox-guest</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency version="6.6.92">kernel</Dependency>
|
||||
<Dependency version="6.12.40">kernel</Dependency>
|
||||
<Dependency>baselayout</Dependency>
|
||||
<Dependency version="current">module-virtualbox-guest-userspace</Dependency>
|
||||
</RuntimeDependencies>
|
||||
@@ -55,6 +55,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="138">
|
||||
<Date>2025-07-24</Date>
|
||||
<Version>7.1.12</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="137">
|
||||
<Date>2025-05-23</Date>
|
||||
<Version>7.1.8</Version>
|
||||
|
||||
@@ -12,9 +12,9 @@
|
||||
<IsA>driver</IsA>
|
||||
<Summary>Kernel modules for VirtualBox</Summary>
|
||||
<Description>This package provides the kernel support for VirtualBox.</Description>
|
||||
<Archive sha1sum="04e92d233de122d47556d9e9e6e068dee64b7d82" type="tarxz">https://sourceforge.net/projects/pisilinux/files/source/module-virtualbox-7.1.8.tar.xz</Archive>
|
||||
<Archive sha1sum="28aeb7843de3fcabb54331903ef6517f0681ae79" type="tarxz">https://sourceforge.net/projects/pisilinux/files/source/module-virtualbox-7.1.12.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency version="6.6.92">kernel-module-headers</Dependency>
|
||||
<Dependency version="6.12.40">kernel-module-headers</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!--Patch level="2">fixes_for_5.6.patch</Patch>
|
||||
@@ -25,7 +25,7 @@
|
||||
<Package>
|
||||
<Name>module-virtualbox</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency version="6.6.92">kernel</Dependency>
|
||||
<Dependency version="6.12.40">kernel</Dependency>
|
||||
<Dependency version="current">module-virtualbox-userspace</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
@@ -51,6 +51,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="138">
|
||||
<Date>2025-07-24</Date>
|
||||
<Version>7.1.12</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="137">
|
||||
<Date>2025-05-23</Date>
|
||||
<Version>7.1.8</Version>
|
||||
|
||||
@@ -11,7 +11,7 @@ from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import kerneltools
|
||||
|
||||
KDIR = kerneltools.getKernelVersion()
|
||||
KVER ="6.6.92"
|
||||
KVER ="6.12.40"
|
||||
|
||||
def build():
|
||||
autotools.make("KVER=%s" % KVER )
|
||||
|
||||
@@ -13,10 +13,10 @@
|
||||
<Summary>REALTEK RTL88x2B USB Linux Driver</Summary>
|
||||
<Icon>rtl88x2bu</Icon>
|
||||
<Description>REALTEK RTL88x2B USB Linux Driver</Description>
|
||||
<Archive sha1sum="1afa2c6df3f47cbb57de752551e7acb7dadb9ec7" type="zip">https://github.com/morrownr/88x2bu-20210702/archive/refs/heads/main.zip</Archive>
|
||||
<Archive sha1sum="133e29d9bf93d8bdcca6bcb0065856c12fb930ee" type="zip">https://github.com/morrownr/88x2bu-20210702/archive/refs/heads/main.zip</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>bc</Dependency>
|
||||
<Dependency version="6.6.92">kernel-module-headers</Dependency>
|
||||
<Dependency version="6.12.40">kernel-module-headers</Dependency>
|
||||
</BuildDependencies>
|
||||
<!--
|
||||
<Patches>
|
||||
@@ -36,6 +36,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="22">
|
||||
<Date>2025-07-24</Date>
|
||||
<Version>2023.07.23</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="21">
|
||||
<Date>2025-05-23</Date>
|
||||
<Version>2023.07.23</Version>
|
||||
|
||||
Reference in New Issue
Block a user