diff options
author | rpaulo <rpaulo@FreeBSD.org> | 2008-11-04 11:52:50 +0000 |
---|---|---|
committer | rpaulo <rpaulo@FreeBSD.org> | 2008-11-04 11:52:50 +0000 |
commit | 85b1030aa82414ee7bfcb7727583f5dae5ddb472 (patch) | |
tree | 1edcfe8c94b9c99f46b5fb2cd3088219f741fd1c /etc/devd.conf | |
parent | 27790fa127c2ee176eabb84aa31f0d3054d60e89 (diff) | |
download | FreeBSD-src-85b1030aa82414ee7bfcb7727583f5dae5ddb472.zip FreeBSD-src-85b1030aa82414ee7bfcb7727583f5dae5ddb472.tar.gz |
Add support for Asus A8Sr notebooks.
PR: 128553
Submitted by: Eygene Ryabinkin <rea-fbsd at codelabs.ru>
Reviewed by: philip
MFC after: 2 months
Diffstat (limited to 'etc/devd.conf')
-rw-r--r-- | etc/devd.conf | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/etc/devd.conf b/etc/devd.conf index 395273a..ed37752 100644 --- a/etc/devd.conf +++ b/etc/devd.conf @@ -255,6 +255,28 @@ notify 10 { action "/etc/rc.resume acpi $notify"; }; +# The next blocks enable volume hotkeys that can be found on the Asus laptops +notify 0 { + match "system" "ACPI"; + match "subsystem" "ASUS"; + match "notify" "0x32"; + action "mixer 0"; +}; + +notify 0 { + match "system" "ACPI"; + match "subsystem"i "ASUS"; + match "notify" "0x31"; + action "mixer vol -10"; +}; + +notify 0 { + match "system" "ACPI"; + match "subsystem" "ASUS"; + match "notify" "0x30"; + action "mixer vol +10"; +}; + # The next blocks enable volume hotkeys that can be found on the Asus EeePC # The four keys above the keyboard notify 0x1a through to 0x1d respectively notify 0 { |