-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move i8042 and usrinput into common input directory.
In anticipation of having more user input drivers in the future, create a top level input directory within drivers, and then move i8042 and usrinput into there.
- Loading branch information
Showing
18 changed files
with
85 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
################################################################################ | ||
# | ||
# Copyright (c) 2017 Minoca Corp. | ||
# | ||
# This file is licensed under the terms of the GNU General Public License | ||
# version 3. Alternative licensing terms are available. Contact | ||
# [email protected] for details. See the LICENSE file at the root of this | ||
# project for complete licensing information. | ||
# | ||
# Module Name: | ||
# | ||
# Input | ||
# | ||
# Abstract: | ||
# | ||
# This directory contains User Input related drivers. | ||
# | ||
# Author: | ||
# | ||
# Evan Green 28-Apr-2017 | ||
# | ||
# Environment: | ||
# | ||
# Kernel | ||
# | ||
################################################################################ | ||
|
||
INPUT_DEVICE_DRIVERS := i8042 \ | ||
|
||
DIRS = usrinput \ | ||
$(INPUT_DEVICE_DRIVERS) \ | ||
|
||
include $(SRCROOT)/os/minoca.mk | ||
|
||
$(INPUT_DEVICE_DRIVERS): usrinput | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/*++ | ||
Copyright (c) 2017 Minoca Corp. | ||
This file is licensed under the terms of the GNU General Public License | ||
version 3. Alternative licensing terms are available. Contact | ||
[email protected] for details. See the LICENSE file at the root of this | ||
project for complete licensing information. | ||
Module Name: | ||
Input | ||
Abstract: | ||
This directory contains user input related drivers. | ||
Author: | ||
Evan Green 28-Apr-2017 | ||
Environment: | ||
Kernel | ||
--*/ | ||
|
||
from menv import group; | ||
|
||
function build() { | ||
var entries; | ||
var inputDrivers; | ||
|
||
inputDrivers = [ | ||
"drivers/input/i8042:i8042" | ||
]; | ||
|
||
entries = group("input_drivers", inputDrivers); | ||
return entries; | ||
} | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.