diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-04-15 00:40:59 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-04-23 21:47:29 -0400 |
commit | abba22c51c44871395316a73cf0e69106eeb94a1 (patch) | |
tree | fbc2d1d2e68cca127a64d0d64ebb473019caeccd /tools | |
parent | 177929c2363d86ee17814f00d27e0dca4e327b40 (diff) | |
download | systemd-abba22c51c44871395316a73cf0e69106eeb94a1.tar.gz |
meson: add hwdb/update target
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/meson-hwdb-update.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/meson-hwdb-update.sh b/tools/meson-hwdb-update.sh new file mode 100755 index 0000000000..339ebb9ace --- /dev/null +++ b/tools/meson-hwdb-update.sh @@ -0,0 +1,13 @@ +#!/bin/sh -ex + +cd "$1" +wget -O usb.ids 'http://www.linux-usb.org/usb.ids' +wget -O pci.ids 'http://pci-ids.ucw.cz/v2.2/pci.ids' +wget -O ma-large.txt 'http://standards.ieee.org/develop/regauth/oui/oui.txt' +wget -O ma-medium.txt 'http://standards.ieee.org/develop/regauth/oui28/mam.txt' +wget -O ma-small.txt 'http://standards.ieee.org/develop/regauth/oui36/oui36.txt' +wget -O pnp_id_registry.html 'http://www.uefi.org/uefi-pnp-export' +wget -O acpi_id_registry.html 'http://www.uefi.org/uefi-acpi-export' +./ids-update.pl +./acpi-update.py > 20-acpi-vendor.hwdb.base +patch -p0 -o- 20-acpi-vendor.hwdb.base <20-acpi-vendor.hwdb.patch >20-acpi-vendor.hwdb |