diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2018-03-02 12:06:32 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2018-03-02 12:06:32 +0100 |
commit | 299597f8d5f06fc0faa3600f3c5181b58c25b922 (patch) | |
tree | c023b75334066b0f310e58bccbdb64c1c8e073f3 /tools/meson-hwdb-update.sh | |
parent | tools/hwdb-update: print what is being executed (diff) | |
download | systemd-299597f8d5f06fc0faa3600f3c5181b58c25b922.tar.gz systemd-299597f8d5f06fc0faa3600f3c5181b58c25b922.tar.bz2 systemd-299597f8d5f06fc0faa3600f3c5181b58c25b922.zip |
tools/hwdb-update: allow downloads to fail
sf.net is down, and linux-usb.org which is hosted there also fails.
That's not nice, but there's not we can do about it now.
Diffstat (limited to 'tools/meson-hwdb-update.sh')
-rwxr-xr-x | tools/meson-hwdb-update.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/meson-hwdb-update.sh b/tools/meson-hwdb-update.sh index 6f8f0caed..d4ec555be 100755 --- a/tools/meson-hwdb-update.sh +++ b/tools/meson-hwdb-update.sh @@ -3,8 +3,16 @@ set -eu cd "$1" +unset permissive +if [ "$2" = "-p" ]; then + permissive=1 + shift +fi + if [ "${2:-}" != "-n" ]; then ( + [ -z "$permissive" ] || set +e set -x + curl -L -o usb.ids 'http://www.linux-usb.org/usb.ids' curl -L -o pci.ids 'http://pci-ids.ucw.cz/v2.2/pci.ids' curl -L -o ma-large.txt 'http://standards-oui.ieee.org/oui/oui.txt' |