hc
2023-02-13 e440ec23c5a540cdd3f7464e8779219be6fd3d95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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