MacBookPro 11,5 - Como obtenho o controle de brilho?

2

Estou executando o Ubuntu 16.04 e o Gnome

# sudo dmidecode -s system-product-name
MacBookPro11,5

Meu problema:

    As teclas de brilho
  • (fn + f1, fn + f2) não alteram o brilho.
  • não há controle deslizante de brilho nas configurações de energia do gnome (apenas o brilho da luz de fundo do teclado)

  • a única maneira de alterar o brilho é editar /sys/class/backlight/radeon_bl0/brightness e depois reiniciar.

  • definir --brightness a xrandr é apenas contraste e não altera a intensidade da luz de fundo. (provavelmente esta é a funcionalidade pretendida de xrandr , mas não é como eu / alguém deveria querer ajustar o brilho)

minha exibição:

$ xrandr
Screen 0: minimum 320 x 200, current 2880 x 1800, maximum 16384 x 16384
eDP connected primary 2880x1800+0+0 (normal left inverted right x axis y axis) 331mm x 207mm
   2880x1800     59.99*+
   1920x1200     59.88  
   1920x1080     59.96  
   1600x1200     59.87  
   1680x1050     59.95  
   1400x1050     59.98  
   1280x1024     59.89  
   1440x900      59.89  
   1280x960      59.94  
   1280x854      59.89  
   1280x800      59.81  
   1280x720      59.86  
   1152x768      59.78  
   1024x768      59.92  
   800x600       59.86  
   848x480       59.66  
   720x480       59.71  
   640x480       59.38  
DisplayPort-0 disconnected (normal left inverted right x axis y axis)
DisplayPort-1 disconnected (normal left inverted right x axis y axis)
HDMI-0 disconnected (normal left inverted right x axis y axis)

meu arquivo /etc/default/grub

# If you change this file, run 'update-grub' afterwards to update

#

 /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR='lsb_release -i -s 2> /dev/null || echo Debian'
#GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
# Changed in order to get backlight control working
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash pcie_aspm=force acpi_backlight=vendor"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command 'vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"

Eu também tentei acpi_backlight=native sem sucesso.

Eu corri sudo update-grub e reiniciei depois de todas as alterações neste arquivo.

Minha pasta de luz de fundo tem dois diretórios:

  • radeon_bl0 /
  • gmux_backlight / & lt; - até onde eu sei, isso não é usado.

Como faço para depurar isso mais e obter meus controles de luz de fundo funcionando?

    
por NullVoxPopuli 07.08.2016 / 14:30

2 respostas

1

Adivinhar aqui; na versão anterior (macbookpro 11.3) você tinha que rodar

setpci -v -H1 -s 00:01.00 BRIDGE_CONTROL=0

talvez seja o mesmo em um presente?

    
por PhroZen 12.08.2016 / 03:09
1

este é um problema no kernel. Você precisa corrigir e reconstruir o kernel para corrigir esse problema.

Eu criei uma postagem no blog sobre como corrigi-lo para o Fedora. Há links para dois patches que você precisa aplicar: link

Espero que ajude.

    
por Adam Šamalík 18.08.2016 / 14:56