Add buildroot 2018-02
This commit is contained in:
26
buildroot/package/hwdata/hwdata.mk
Normal file
26
buildroot/package/hwdata/hwdata.mk
Normal file
@@ -0,0 +1,26 @@
|
||||
################################################################################
|
||||
#
|
||||
# hwdata
|
||||
#
|
||||
################################################################################
|
||||
|
||||
HWDATA_VERSION = v0.308
|
||||
HWDATA_SITE = $(call github,vcrhonek,hwdata,$(HWDATA_VERSION))
|
||||
HWDATA_LICENSE = GPL-2.0+, BSD-3-Clause, XFree86 1.0
|
||||
HWDATA_LICENSE_FILES = COPYING LICENSE
|
||||
|
||||
HWDATA_FILES = \
|
||||
$(if $(BR2_PACKAGE_HWDATA_IAB_OUI_TXT),iab.txt oui.txt) \
|
||||
$(if $(BR2_PACKAGE_HWDATA_PCI_IDS),pci.ids) \
|
||||
$(if $(BR2_PACKAGE_HWDATA_PNP_IDS),pnp.ids) \
|
||||
$(if $(BR2_PACKAGE_HWDATA_USB_IDS),usb.ids)
|
||||
|
||||
ifneq ($(strip $(HWDATA_FILES)),)
|
||||
define HWDATA_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -d -m 755 $(TARGET_DIR)/usr/share/hwdata
|
||||
$(INSTALL) -m 644 -t $(TARGET_DIR)/usr/share/hwdata \
|
||||
$(addprefix $(@D)/,$(HWDATA_FILES))
|
||||
endef
|
||||
endif
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user