Files
packages/utils/hwdata/test.sh
T
Alexandru Ardelean 270b3cb630 hwdata: bump to 0.405
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>
(cherry picked from commit c30a3f2595)
2026-05-28 11:47:00 +02:00

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