11a3d2a472
The hwdata collection is hosted at GitHub now and provides additional databases, besides pci.ids and usb.ids: - Individual Address Block (IAB) and Organizationally Unique Identifier (OUI) databases, from IEEE Registration Authority - PNP ID database (from Microsoft) Install only pci.ids and usb.ids by default, to keep compatibility with previous versions. In the future we can make other packages (pciutils, lshw) use the common files instead of installing their own copies, thus saving some storage space. [Peter: drop BR2_PACKAGE_HWDATA_ANY and build time error, rework install step] Signed-off-by: Carlos Santos <casantos@datacom.ind.br> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
39 lines
771 B
Plaintext
39 lines
771 B
Plaintext
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
|