xref: /illumos-gate/usr/src/data/hwdata/Makefile (revision 29940bf8)
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21
22#
23# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
24# Copyright 2015, OmniTI Computer Consulting, Inc. All rights reserved.
25# Copyright 2018 OmniOS Community Edition (OmniOSce) Association.
26#
27
28include		$(SRC)/data/Makefile.data
29
30HWDATA=		pci.ids usb.ids efi.fixes
31HWDATADIR=	$(ROOT)/usr/share/hwdata
32ROOTHWDATA=	$(HWDATA:%=$(HWDATADIR)/%)
33
34CLOBBERFILES=	THIRDPARTYLICENSE.pciids THIRDPARTYLICENSE.efifixes
35
36$(ROOTHWDATA):=	FILEMODE = 444
37
38all install:	THIRDPARTYLICENSE.pciids THIRDPARTYLICENSE.efifixes
39
40THIRDPARTYLICENSE.pciids: pci.ids THIRDPARTYLICENSE.pciids.tmpl
41		$(RM) $@
42		$(SED) -e '/^$$/,$$ d' < pci.ids > $@
43		$(CAT) THIRDPARTYLICENSE.pciids.tmpl >> $@
44
45THIRDPARTYLICENSE.efifixes: efi.fixes THIRDPARTYLICENSE.efifixes.tmpl
46		$(RM) $@
47		$(SED) -e '/^$$/,$$ d' < efi.fixes > $@
48		$(CAT) THIRDPARTYLICENSE.efifixes.tmpl >> $@
49
50install:	$(ROOTHWDATA)
51
52$(HWDATADIR)/%: %
53		$(INS.file)
54
55clean:
56
57# The "update" target family allows a simple pull-from-the-source update.
58# One can then use revision-control diffs to see what actually changed.
59update:		usb.update pci.update
60
61# URLs for PCI IDs and USB IDs
62PCIURL=		https://pci-ids.ucw.cz/v2.2/pci.ids
63USBURL=		http://www.linux-usb.org/usb.ids
64
65# These could move into Makefile.master
66URL_FETCH=	wget
67URL_FETCHARGS=
68
69pci.update:
70		$(RM) pci.ids
71		$(URL_FETCH) $(URL_FETCHARGS) $(PCIURL)
72
73usb.update:
74		$(RM) usb.ids
75		$(URL_FETCH) $(URL_FETCHARGS) $(USBURL)
76
77include		$(SRC)/data/Makefile.targ
78