9067 Support PMBR customisation with EFI label
[unleashed.git] / usr / src / data / hwdata / Makefile
blob13c724f2a2a2c265fa1fde3c3e1b4cb0e7305d33
2 # CDDL HEADER START
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.
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.
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]
19 # CDDL HEADER END
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.
28 include $(SRC)/data/Makefile.data
30 HWDATA= pci.ids usb.ids efi.fixes
31 HWDATADIR= $(ROOT)/usr/share/hwdata
32 ROOTHWDATA= $(HWDATA:%=$(HWDATADIR)/%)
34 CLOBBERFILES= THIRDPARTYLICENSE.pciids THIRDPARTYLICENSE.efifixes
36 $(ROOTHWDATA):= FILEMODE = 444
38 all install: THIRDPARTYLICENSE.pciids THIRDPARTYLICENSE.efifixes
40 THIRDPARTYLICENSE.pciids: pci.ids THIRDPARTYLICENSE.pciids.tmpl
41 $(RM) $@
42 $(SED) -e '/^$$/,$$ d' < pci.ids > $@
43 $(CAT) THIRDPARTYLICENSE.pciids.tmpl >> $@
45 THIRDPARTYLICENSE.efifixes: efi.fixes THIRDPARTYLICENSE.efifixes.tmpl
46 $(RM) $@
47 $(SED) -e '/^$$/,$$ d' < efi.fixes > $@
48 $(CAT) THIRDPARTYLICENSE.efifixes.tmpl >> $@
50 install: $(ROOTHWDATA)
52 $(HWDATADIR)/%: %
53 $(INS.file)
55 clean:
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.
59 update: usb.update pci.update
61 # URLs for PCI IDs and USB IDs
62 PCIURL= http://pci-ids.ucw.cz/v2.2/pci.ids
63 USBURL= http://www.linux-usb.org/usb.ids
65 # These could move into Makefile.master
66 URL_FETCH= wget
67 URL_FETCHARGS=
69 pci.update:
70 $(RM) pci.ids
71 $(URL_FETCH) $(URL_FETCHARGS) $(PCIURL)
73 usb.update:
74 $(RM) usb.ids
75 $(URL_FETCH) $(URL_FETCHARGS) $(USBURL)
77 include $(SRC)/data/Makefile.targ