Skip to content

Instantly share code, notes, and snippets.

@varhub
Created June 15, 2017 19:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save varhub/71d229db75eb5dcefb429e4ad69d001d to your computer and use it in GitHub Desktop.
Save varhub/71d229db75eb5dcefb429e4ad69d001d to your computer and use it in GitHub Desktop.
[Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
## https://bugs.launchpad.net/fwts/+bug/1249978
# **https://ubuntuforums.org/showthread.php?t=1613132**
i915
### ???
realtek: No valid SSID, checking pincfg
### FIXED (overriding)
## https://bugzilla.redhat.com/show_bug.cgi?id=785417
## http://comments.gmane.org/gmane.linux.kernel/1011314
# Driver requires SSID but vendor do not provide it (not following policy).
# Already patched on upstream kernel. SSID injection as follows:
realtek: Enabling init ASM_ID=0x862d CODEC_ID=10ec0269
Bluetooth: Error in firmware loading err = -110,len = 448, size = 4096
Bluetooth: Loading patch file failed
# **http://www.faqssys.info/bluetooth-troubles-with-ar3012-on-gentoo/**
ath3k: probe of 3-4:1.0 failed with error -110
vboxdrv: module verification failed: signature and/or required key missing - tainting kernel
### FIXED (ignore it!)
## The module verification warning is unrelated, it means that the kernel you use (Ubuntu?) has
## module verification enabled and that the key was not available when building (obviously, the
## keys must be kept secret or it would be rather useless to have module signing).
[ 29.567381] bbswitch: version 0.8
[ 29.567385] bbswitch: Found integrated VGA device 0000:00:02.0: \_SB_.PCI0.GFX0
[ 29.567389] bbswitch: Found discrete VGA device 0000:01:00.0: \_SB_.PCI0.PEG0.PEGP
[ 29.567396] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
[ 29.567473] bbswitch: detected an Optimus _DSM function
[ 29.567482] pci 0000:01:00.0: enabling device (0006 -> 0007)
[ 29.567514] bbswitch: Succesfully loaded. Discrete card 0000:01:00.0 is on
[ 29.569086] bbswitch: disabling discrete graphics
[ 29.569094] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
### FIXED (follow Implementation police instead ACPI police)
## https://github.com/Bumblebee-Project/bbswitch/commit/ee0591b
# The ACPI Warning here is harmless (though it can be annoying because it gets repeatedly printed during toggles)
# /* Although the ACPI spec defines Arg3 as a Package, in practise
# * implementations expect a Buffer (CreateWordField and Index functions are
# * applied to it). */
# params[3].type = ACPI_TYPE_BUFFER;
[ 39.573455] init: Failed to spawn nvidia-persistenced main process: unable to execute: No such file or directory
## https://www.mail-archive.com/desktop-packages@lists.launchpad.net/msg366547.html
# in /etc/init/nvidia-persistenced.conf we can find this:
# exec /usr/bin/nvidia-persistenced --user nvidia-persistenced
# but, I really have not nvidia-persistenced binary in /usr/bin/, it is in /usr/lib/nvidia-331/bin/
## https://bugs.launchpad.net/ubuntu/+source/ubuntu-drivers-common/+bug/1363408
#
# -----
# update-alternatives --config x86_64-linux-gnu_gl_conf
# bumblebee-nvidia
# NVIDIA Optimus support using the proprietary NVIDIA driver
# This metapackage ensures that the proprietary NVIDIA driver is installed in a
# way such that 3D acceleration does not break. It does so by configuring the
# OpenGL library path to use the Mesa graphics library
nvidia-331 kernel module failed to build
### FIXED (i do not remember how)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment