Modelo: Aspire V5-471(ID do modelo: 1136)
For kernel versions from 3.7 to at least 3.9, make sure to build the modules for the webcam and wifi devices. When running make menuconfig, check the following:
Device Drivers --> Multimedia Support -->
Device Drivers --> Multimedia Support --> Media USB Adapters --> USB Video Class (UVC) -->
Device Drivers --> Network device support --> Wireless LAN --> Atheros Wireless Cards --> Atheros 802.11n wireless cards support -->
There was an issue of not being able to shut down. When shutting down, the system would restart itself. Here's a fix I found on a blog (http://www.pbehnke.com/main/node/11):
#! /bin/bash
#
# haltusbpower init script
#
# chkconfig: 345 99 20
# description: A script to act as a workaround for the bug in the
runtime power management module, which causes my acer aspire v5-571
laptop to restart after shutting down.
#
### BEGIN INIT INFO
# Provides: haltusbpower
# Default-Stop: 0 1 3 5
# Short-Description: Halt USB Powersave mode
# Description: A script to halt usb power control.
### END INIT INFO
# Source function library.
. /etc/init.d/functions
# Bus list for the runtime power management module.
buslist="usb"
# See how we were called.
case "$1" in
start)
echo "USB bug fix active"
#no-op on startup
;;
stop)
echo "Turning off USB Power Control"
for bus in $buslist; do
for i in /sys/bus/$bus/devices/*/power/control; do
echo on > $i
done
done
;;
*)
echo "Usage: /etc/init.d/haltusbpower {start|stop}"
exit 1
;;
esac
exit 0Example:
ln -s /etc/init.d/haltusbpower /etc/rc0.d/haltusbpower
acpi_backlight=vendorThe kernel parameters can be edited in the file /etc/default/grub. Append acpi_backlight=vendor to GRUB_CMDLINE_LINUX_DEFAULT. Then run sudo update-grub.
| Dispositivos 3G | 34 |
| Acquisition cards | 35 |
| Bluetooth | 59 |
| Placas de rede | 174 |
| Leitores de impressão digital | 14 |
| Controladores de host | 171 |
| Modems | 18 |
| Notebook | 810 |
| Printers | 127 |
| Adaptadores RAID | 20 |
| Scanners | 24 |
| Leitores de cartão SD | 57 |
| Placas de som | 148 |
| Placas de vídeo | 348 |
| Webcams | 136 |
| Placas wifi | 237 |
| TOTAL | 2412 |