source: mainline/uspace/drv/meson.build@ e3997a8

Last change on this file since e3997a8 was 443695e, checked in by Jiri Svoboda <jiri@…>, 15 months ago

Basic PCI-IDE driver (no DMA support)

Also, make sure we avoid attaching ISA IDE and PCI IDE
at the same time. For simplicity, use ISA IDE on ISA systems
and PCI IDE on PCI-based systems.

  • Property mode set to 100644
File size: 2.6 KB
Line 
1#
2# Copyright (c) 2019 Jiří Zárevúcky
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions
7# are met:
8#
9# - Redistributions of source code must retain the above copyright
10# notice, this list of conditions and the following disclaimer.
11# - Redistributions in binary form must reproduce the above copyright
12# notice, this list of conditions and the following disclaimer in the
13# documentation and/or other materials provided with the distribution.
14# - The name of the author may not be used to endorse or promote products
15# derived from this software without specific prior written permission.
16#
17# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27#
28
29drvs = [
30 'audio/hdaudio',
31 'audio/sb16',
32 'root/root',
33 'root/virt',
34 'block/ahci',
35 'block/ddisk',
36 'block/isa-ide',
37 'block/pci-ide',
38 'block/usbmast',
39 'block/virtio-blk',
40 'bus/adb/cuda_adb',
41 'bus/isa',
42 'bus/pci/pciintel',
43 'bus/usb/ehci',
44 'bus/usb/ohci',
45 'bus/usb/uhci',
46 'bus/usb/usbdiag',
47 'bus/usb/usbflbk',
48 'bus/usb/usbhub',
49 'bus/usb/usbmid',
50 'bus/usb/vhc',
51 'bus/usb/xhci',
52 'char/i8042',
53 'char/msim-con',
54 'char/ns8250',
55 'char/pc-lpt',
56 'char/pl011',
57 'char/pl050',
58 'char/ski-con',
59 'char/sun4v-con',
60 'fb/amdm37x_dispc',
61 'fb/kfb',
62 'hid/adb-kbd',
63 'hid/adb-mouse',
64 'hid/atkbd',
65 'hid/ps2mouse',
66 'hid/usbhid',
67 'hid/xtkbd',
68 'intctl/apic',
69 'intctl/gicv2',
70 'intctl/i8259',
71 'intctl/icp-ic',
72 'intctl/obio',
73 'nic/ne2k',
74 'nic/e1k',
75 'nic/rtl8139',
76 'nic/rtl8169',
77 'nic/ar9271',
78 'nic/virtio-net',
79 'platform/amdm37x',
80 'platform/arm64virt',
81 'platform/hikey960',
82 'platform/icp',
83 'platform/mac',
84 'platform/malta',
85 'platform/msim',
86 'platform/pc',
87 'platform/ski',
88 'platform/sun4v',
89 'test/test1',
90 'test/test2',
91 'test/test3',
92 'time/cmos-rtc',
93]
94
95# sun4u driver won't compile on 32-bit targets
96if UARCH == 'sparc64'
97 drvs += 'platform/sun4u'
98endif
Note: See TracBrowser for help on using the repository browser.