aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-03-02 11:50:43 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-03-02 11:50:43 +0100
commit4af1aea4116f2d1936017b75ecd2aaa11dfebbae (patch)
treede0d185ea1b1ffa4780149edb284a4c11331f2a1 /tools
parentMerge pull request #8316 from yuwata/fix-8315 (diff)
downloadsystemd-4af1aea4116f2d1936017b75ecd2aaa11dfebbae.tar.gz
systemd-4af1aea4116f2d1936017b75ecd2aaa11dfebbae.tar.bz2
systemd-4af1aea4116f2d1936017b75ecd2aaa11dfebbae.zip
tools/hwdb-update: print what is being executed
Diffstat (limited to 'tools')
-rwxr-xr-xtools/meson-hwdb-update.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/meson-hwdb-update.sh b/tools/meson-hwdb-update.sh
index 275d54cd1..6f8f0caed 100755
--- a/tools/meson-hwdb-update.sh
+++ b/tools/meson-hwdb-update.sh
@@ -3,7 +3,8 @@ set -eu
cd "$1"
-if [ "${2:-}" != "-n" ]; then
+if [ "${2:-}" != "-n" ]; then (
+ 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'
@@ -11,8 +12,9 @@ if [ "${2:-}" != "-n" ]; then
curl -L -o ma-small.txt 'http://standards-oui.ieee.org/oui36/oui36.txt'
curl -L -o pnp_id_registry.html 'http://www.uefi.org/uefi-pnp-export'
curl -L -o acpi_id_registry.html 'http://www.uefi.org/uefi-acpi-export'
-fi
+) fi
+set -x
./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
! diff -u 20-acpi-vendor.hwdb.base 20-acpi-vendor.hwdb >20-acpi-vendor.hwdb.patch