From 7b4bc31f68db2a9a15e97ed08f27e0ace900e7a2 Mon Sep 17 00:00:00 2001 From: Alexandru Ardelean Date: Wed, 22 Apr 2026 12:16:55 +0300 Subject: [PATCH] hwdata: update to 0.406 Updates PCI, USB, OUI, and other hardware ID databases. Changelog: https://github.com/vcrhonek/hwdata/commits/v0.406 Signed-off-by: Alexandru Ardelean (cherry picked from commit c903ed04b765f89df3505e01932c83e44d6628be) --- utils/hwdata/Makefile | 4 ++-- utils/hwdata/test.sh | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/utils/hwdata/Makefile b/utils/hwdata/Makefile index ee1b0b9c53..9d7aed8d1c 100644 --- a/utils/hwdata/Makefile +++ b/utils/hwdata/Makefile @@ -6,12 +6,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=hwdata -PKG_VERSION:=0.405 +PKG_VERSION:=0.406 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:=13605519e72e46aa13d5eede1901a07a6c83cd25ef866a86e7458047b5c81ce5 +PKG_HASH:=1ccfd1ca723595b1fe8794f4157ec5635be1ebedb5d13769b4be75d0b75bc199 PKG_MAINTAINER:= PKG_LICENSE:=GPL-2.0-or-later XFree86-1.0 diff --git a/utils/hwdata/test.sh b/utils/hwdata/test.sh index ed0697adc3..0ac3ae1abf 100644 --- a/utils/hwdata/test.sh +++ b/utils/hwdata/test.sh @@ -3,11 +3,14 @@ case "$1" in pciids) test -s /usr/share/hwdata/pci.ids + grep -q "^8086" /usr/share/hwdata/pci.ids ;; usbids) test -s /usr/share/hwdata/usb.ids + grep -q "^0781" /usr/share/hwdata/usb.ids ;; pnpids) test -s /usr/share/hwdata/pnp.ids + grep -q "PNP" /usr/share/hwdata/pnp.ids ;; esac