blob: 07f50299bd5b349eb2c3bea2adbe3bacbb4b72d6 [file] [log] [blame]
Uwe Hermann661e3802008-03-21 18:37:23 +00001##
2## This file is part of the libpayload project.
3##
4## Copyright (C) 2007 Uwe Hermann <uwe@hermann-uwe.de>
5## Copyright (C) 2008 Advanced Micro Devices, Inc.
Stefan Reinauer69863582008-08-08 13:45:03 +00006## Copyright (C) 2008 coresystems GmbH
Uwe Hermann661e3802008-03-21 18:37:23 +00007##
8## Redistribution and use in source and binary forms, with or without
9## modification, are permitted provided that the following conditions
10## are met:
11## 1. Redistributions of source code must retain the above copyright
12## notice, this list of conditions and the following disclaimer.
13## 2. Redistributions in binary form must reproduce the above copyright
14## notice, this list of conditions and the following disclaimer in the
15## documentation and/or other materials provided with the distribution.
16## 3. The name of the author may not be used to endorse or promote products
17## derived from this software without specific prior written permission.
18##
19## THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20## ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21## IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22## ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23## FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24## DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25## OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26## HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27## LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28## OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29## SUCH DAMAGE.
30##
Uwe Hermann0b53ec3d2008-04-15 17:24:08 +000031
Stefan Reinauer69863582008-08-08 13:45:03 +000032TARGETS-$(CONFIG_PCI) += drivers/pci.o
33
34TARGETS-$(CONFIG_SPEAKER) += drivers/speaker.o
Jordan Crousef6145c32008-03-19 23:56:58 +000035
36TARGETS-$(CONFIG_SERIAL_CONSOLE) += drivers/serial.o
Stefan Reinauer69863582008-08-08 13:45:03 +000037
Jordan Crousef6145c32008-03-19 23:56:58 +000038TARGETS-$(CONFIG_PC_KEYBOARD) += drivers/keyboard.o
Stefan Reinauer69863582008-08-08 13:45:03 +000039
Uwe Hermannb642e6d2008-03-31 15:18:56 +000040TARGETS-$(CONFIG_NVRAM) += drivers/nvram.o
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +000041TARGETS-$(CONFIG_NVRAM) += drivers/options.o
Jordan Crouse30939bd2008-04-10 22:49:02 +000042
43# Video console drivers
44TARGETS-$(CONFIG_VIDEO_CONSOLE) += drivers/video/video.o
45TARGETS-$(CONFIG_VGA_VIDEO_CONSOLE) += drivers/video/vga.o
Jordan Crouse54315532008-04-11 15:48:21 +000046
Peter Stuge4b1971c2008-10-08 14:47:41 +000047# Geode LX console drivers
48TARGETS-$(CONFIG_GEODELX_VIDEO_CONSOLE) += drivers/video/geodelx.o
49TARGETS-$(CONFIG_GEODELX_VIDEO_CONSOLE) += drivers/video/font8x16.o
Patrick Georgid21f68b2008-09-02 16:06:22 +000050
51# USB stack
52TARGETS-$(CONFIG_USB) += drivers/usb/usbinit.o
53TARGETS-$(CONFIG_USB) += drivers/usb/usb.o
54TARGETS-$(CONFIG_USB) += drivers/usb/usb_dev.o
55TARGETS-$(CONFIG_USB_HUB) += drivers/usb/usbhub.o
56TARGETS-$(CONFIG_USB_UHCI) += drivers/usb/uhci.o
57TARGETS-$(CONFIG_USB_UHCI) += drivers/usb/uhci_rh.o
58TARGETS-$(CONFIG_USB_HID) += drivers/usb/usbhid.o
59TARGETS-$(CONFIG_USB_MSC) += drivers/usb/usbmsc.o
60
Stefan Reinauer1beabe12010-03-25 18:52:24 +000061# used by both USB HID and keyboard
62TARGETS-y += drivers/hid.o