initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
config BR2_PACKAGE_HWDATA
bool "hwdata"
help
Various hardware identification and configuration data
- Individual Address Block (IAB) and Organizationally Unique
Identifier (OUI) databases, from IEEE Registration Authority
- PCI ID database
- PNP ID database (from Microsoft)
- USB ID database
https://github.com/vcrhonek/hwdata
if BR2_PACKAGE_HWDATA
config BR2_PACKAGE_HWDATA_IAB_OUI_TXT
bool "install iab.txt and oui.txt"
help
Install iab.txt and oui.txt
config BR2_PACKAGE_HWDATA_PCI_IDS
bool "install pci.ids"
default y
help
Install pci.ids
config BR2_PACKAGE_HWDATA_PNP_IDS
bool "install pnp.ids"
help
Install pnp.ids
config BR2_PACKAGE_HWDATA_USB_IDS
bool "install usb.ids"
default y
help
Install usb.ids
endif
+4
View File
@@ -0,0 +1,4 @@
# Locally calculated
sha256 fafcc97421ba766e08a2714ccc3eebb0daabc99e67d53c2d682721dd01ccf7a7 hwdata-0.345.tar.gz
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING
sha256 21d0406f93e884a050426ebc21931839a45d56bfcbcbfdda7686d583f36f107f LICENSE
+26
View File
@@ -0,0 +1,26 @@
################################################################################
#
# hwdata
#
################################################################################
HWDATA_VERSION = 0.345
HWDATA_SITE = $(call github,vcrhonek,hwdata,v$(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))