From 270b3cb630a67073f49acfc956994deb036efaa5 Mon Sep 17 00:00:00 2001 From: Alexandru Ardelean Date: Sun, 15 Mar 2026 12:56:55 +0200 Subject: [PATCH] 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 (cherry picked from commit c30a3f25959c5c004014c99a482adbcb18cb43e7) --- utils/hwdata/Makefile | 4 ++-- utils/hwdata/test.sh | 13 +++++++++++++ 2 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 utils/hwdata/test.sh diff --git a/utils/hwdata/Makefile b/utils/hwdata/Makefile index e5a57be1af..ee1b0b9c53 100644 --- a/utils/hwdata/Makefile +++ b/utils/hwdata/Makefile @@ -6,12 +6,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=hwdata -PKG_VERSION:=0.387 +PKG_VERSION:=0.405 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/vcrhonek/hwdata/tar.gz/v$(PKG_VERSION)? -PKG_HASH:=8c6be8f0863a8ff5c83b2c46aa525b503b30d42792ed57891c40849de543e1ee +PKG_HASH:=13605519e72e46aa13d5eede1901a07a6c83cd25ef866a86e7458047b5c81ce5 PKG_MAINTAINER:= PKG_LICENSE:=GPL-2.0-or-later XFree86-1.0 diff --git a/utils/hwdata/test.sh b/utils/hwdata/test.sh new file mode 100644 index 0000000000..ed0697adc3 --- /dev/null +++ b/utils/hwdata/test.sh @@ -0,0 +1,13 @@ +#!/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