Ich bin in Kernel-Fragen noch nicht so wirklich fix... Mir gelingt es zwar, nach Anleitung einen neuen Kernel zu kompillieren... das war es aber auch schon.
Mein Laptop hat ein ACPI-Problem und ich ab dazu einen Bugreport verfasst. Sowohl auf bugs.debian.org, als auch auf kernel.org.
Jetzt hab ich vom Kernel-Entwickler einen Patch bekommen https://bugzilla.kernel.org/show_bug.cgi?id=191561 und weiß nicht, wie ich den Kernel gepatcht bekomme.
Den Link hab ich mittels wget runtergeladen und in acpi-polling-gpe-not-enabled.diff benannt.
Weiters hab ich mir die Vanilla-Sourcen von hier https://cdn.kernel.org/pub/linux/kernel ... rc4.tar.xz mit wget geholt und entpackt und mit dieser Anleitung
http://www.linuxhaven.de/dlhp/HOWTO/DE- ... WTO-5.html mit
Code: Alles auswählen
cat acpi-polling-gpe-not-enabled.diff | patch -p0 2>&1 | tee patch.out
Den Patch hab ich ins Verzeichnis ~/src/linux-4.10-rc4 kopiert und den obigen patch-Befehl auch in diesem Verzeichnis ausgeführt.
Code: Alles auswählen
$ cat acpi-polling-gpe-not-enabled.diff | patch -p0 2>&1 | tee patch.out
can't find file to patch at input line 12
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--------------------------
|From: Lv Zheng <lv.zheng@intel.com>
|Subject: [PATCH] ACPI / EC: Use busy polling mode when GPE is not enabled
|
|Useful for bootup/shutdown processes.
|
|Signed-off-by: Lv Zheng <lv.zheng@intel.com>
|---
|Index: linux-acpica/drivers/acpi/ec.c
|===================================================================
|--- linux-acpica.orig/drivers/acpi/ec.c
|+++ linux-acpica/drivers/acpi/ec.c
--------------------------
File to patch:
Skip this patch? [y]
Skipping patch.
8 out of 8 hunks ignored
can't find file to patch at input line 138
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--------------------------
|Index: linux-acpica/drivers/acpi/internal.h
|===================================================================
|--- linux-acpica.orig/drivers/acpi/internal.h
|+++ linux-acpica/drivers/acpi/internal.h
--------------------------
File to patch:
Skip this patch? [y]
Skipping patch.
1 out of 1 hunk ignored
Im Patchfile ist die Datei gesucht:
Code: Alles auswählen
--- linux-acpica.orig/drivers/acpi/ec.c
+++ linux-acpica/drivers/acpi/ec.c
Code: Alles auswählen
z.B. $ find |grep '/ec.c$'
./drivers/acpi/ec.c
lg scientific