Config.in 771 B

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