12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /*++
- Copyright (c) 2012 Minoca Corp.
- This file is licensed under the terms of the GNU General Public License
- version 3. Alternative licensing terms are available. Contact
- info@minocacorp.com for details. See the LICENSE file at the root of this
- project for complete licensing information.
- Module Name:
- i8042 Keyboard
- Abstract:
- This module implements a keyboard and mouse driver for the Intel 8042
- keyboard controller.
- Author:
- Evan Green 20-Dec-2012
- Environment:
- Kernel
- --*/
- function build() {
- name = "i8042";
- sources = [
- "i8042.c",
- "scancode.c"
- ];
- dynlibs = [
- "//drivers/usrinput:usrinput"
- ];
- drv = {
- "label": name,
- "inputs": sources + dynlibs,
- };
- entries = driver(drv);
- return entries;
- }
- return build();
|