diff options
author | hwspeedy <ns@bigbear.dk> | 2024-02-27 20:14:28 +0100 |
---|---|---|
committer | hwspeedy <ns@bigbear.dk> | 2024-02-27 20:15:10 +0100 |
commit | 8d7d281335e911fa7bf1e6e5f20a686adbac44ae (patch) | |
tree | 59cefe525d6f19783ecedf6fbe86dae302340715 /tools | |
parent | 0b912e312d3a70e12e0dcc80998dcf11af60a09e (diff) |
FIX removed mini pci ids, Add script to update data & updated data
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/update_data.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/update_data.sh b/tools/update_data.sh new file mode 100755 index 00000000..6a5005df --- /dev/null +++ b/tools/update_data.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +echo "Updating data included in distribution.." + +wget -O ../data/pci.ids https://pci-ids.ucw.cz/v2.2/pci.ids +wget -O ../data/usb.ids http://www.linux-usb.org/usb.ids +wget -O ../data/benchmark.json https://hardinfo2.org/benchmark.json + +echo "Done..." + + |