~ubuntu-branches/ubuntu/lucid/acpid/lucid-updates

« back to all changes in this revision

Viewing changes to ng/acpid/config.lua

  • Committer: Bazaar Package Importer
  • Author(s): Michael Meskes
  • Date: 2009-11-17 14:50:01 UTC
  • mfrom: (2.1.12 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091117145001-y5hevyg7gcg6uwjk
Tags: 1.0.10-4
Updated netlink patch to version 6.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
channels = {
 
3
        [{ "netlink",   { "acpi" }                      }] = function(...)
 
4
                return ...
 
5
        end,
 
6
        [{ "evdev",     { "/dev/input/event0" }         }] = function(...)
 
7
                return ...
 
8
        end,
 
9
        [{ "evdev",     { "/dev/input/event1" }         }] = function(...)
 
10
                return ...
 
11
        end,
 
12
        [{ "evdev",     { "/dev/input/event2" }         }] = function(...)
 
13
                return ...
 
14
        end,
 
15
        [{ "evdev",     { "/dev/input/event3" }         }] = function(...)
 
16
                return ...
 
17
        end,
 
18
        [{ "evdev",     { "/dev/input/event4" }         }] = function(...)
 
19
                return ...
 
20
        end,
 
21
        [{ "evdev",     { "/dev/input/event5" }         }] = function(...)
 
22
                return ...
 
23
        end,
 
24
}
 
25