diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2009-12-09 21:00:41 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2009-12-09 21:00:41 -0500 |
commit | 578774824896c2af1b38d6fc313e805a4f3493d1 (patch) | |
tree | 1daa092baad2c29019b2449b764e82be8639956b /src/config.h | |
parent | 980328091d8c9670f1fc0fd6a3c5330414192c2a (diff) | |
download | seabios-578774824896c2af1b38d6fc313e805a4f3493d1.tar.gz |
Move ps2 specific keyboard and mouse code to ps2port.c.
Diffstat (limited to 'src/config.h')
-rw-r--r-- | src/config.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h index 9c7c504e..3881cc49 100644 --- a/src/config.h +++ b/src/config.h @@ -38,6 +38,8 @@ #define CONFIG_USB_OHCI 1 // Support USB keyboards #define CONFIG_USB_KEYBOARD 1 +// Support PS2 ports (keyboard and mouse) +#define CONFIG_PS2PORT 1 // Support for IDE disk code #define CONFIG_ATA 1 // Use 32bit PIO accesses on ATA (minor optimization on PCI transfers) @@ -71,7 +73,7 @@ // Disable A20 on 16bit boot #define CONFIG_DISABLE_A20 0 // Support for int15c2 mouse calls -#define CONFIG_PS2_MOUSE 1 +#define CONFIG_MOUSE 1 // If the target machine has multiple independent root buses, the // extra buses may be specified here. #define CONFIG_PCI_ROOT1 0x00 |