mirror of
https://github.com/openwrt/packages.git
synced 2026-04-15 19:02:09 +00:00
Update PCI and USB vendor/device IDs database. Full release notes: https://github.com/vcrhonek/hwdata/releases/tag/v0.405 Add quick test.sh to CI Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
14 lines
179 B
Bash
14 lines
179 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
pciids)
|
|
test -s /usr/share/hwdata/pci.ids
|
|
;;
|
|
usbids)
|
|
test -s /usr/share/hwdata/usb.ids
|
|
;;
|
|
pnpids)
|
|
test -s /usr/share/hwdata/pnp.ids
|
|
;;
|
|
esac
|