1config BR2_PACKAGE_HWDATA 2 bool "hwdata" 3 help 4 Various hardware identification and configuration data 5 6 - Individual Address Block (IAB) and Organizationally Unique 7 Identifier (OUI) databases, from IEEE Registration Authority 8 - PCI ID database 9 - PNP ID database (from Microsoft) 10 - USB ID database 11 12 https://github.com/vcrhonek/hwdata 13 14if BR2_PACKAGE_HWDATA 15 16config BR2_PACKAGE_HWDATA_IAB_OUI_TXT 17 bool "install iab.txt and oui.txt" 18 help 19 Install iab.txt and oui.txt 20 21config BR2_PACKAGE_HWDATA_PCI_IDS 22 bool "install pci.ids" 23 default y 24 help 25 Install pci.ids 26 27config BR2_PACKAGE_HWDATA_PNP_IDS 28 bool "install pnp.ids" 29 help 30 Install pnp.ids 31 32config BR2_PACKAGE_HWDATA_USB_IDS 33 bool "install usb.ids" 34 default y 35 help 36 Install usb.ids 37 38endif 39