summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2023-11-15 15:21:26 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2023-11-15 15:21:26 +0100
commit94113d5f19e5768c206176684e63525f679988d3 (patch)
tree927e6cdf48ff119b21b0cbd161298842ca4fd765
parentmeson: use ternary op for brevity (diff)
downloadsystemd-94113d5f19e5768c206176684e63525f679988d3.tar.xz
systemd-94113d5f19e5768c206176684e63525f679988d3.zip
hwdb: rename .html=>.csv
The old suffix is now confusing.
-rwxr-xr-xhwdb.d/acpi-update.py4
-rw-r--r--hwdb.d/acpi_id_registry.csv (renamed from hwdb.d/acpi_id_registry.html)0
-rw-r--r--hwdb.d/pnp_id_registry.csv (renamed from hwdb.d/pnp_id_registry.html)0
-rwxr-xr-xtools/update-hwdb.sh4
4 files changed, 4 insertions, 4 deletions
diff --git a/hwdb.d/acpi-update.py b/hwdb.d/acpi-update.py
index f65147c91d4..386575067be 100755
--- a/hwdb.d/acpi-update.py
+++ b/hwdb.d/acpi-update.py
@@ -28,5 +28,5 @@ print('# This file is part of systemd.\n'
'# https://uefi.org/uefi-pnp-export\n'
'# https://uefi.org/uefi-acpi-export')
-read_table("acpi_id_registry.html")
-read_table("pnp_id_registry.html")
+read_table('acpi_id_registry.csv')
+read_table('pnp_id_registry.csv')
diff --git a/hwdb.d/acpi_id_registry.html b/hwdb.d/acpi_id_registry.csv
index 5081796f318..5081796f318 100644
--- a/hwdb.d/acpi_id_registry.html
+++ b/hwdb.d/acpi_id_registry.csv
diff --git a/hwdb.d/pnp_id_registry.html b/hwdb.d/pnp_id_registry.csv
index 1e33e85ba0e..1e33e85ba0e 100644
--- a/hwdb.d/pnp_id_registry.html
+++ b/hwdb.d/pnp_id_registry.csv
diff --git a/tools/update-hwdb.sh b/tools/update-hwdb.sh
index abbbb82f4bc..096a10016bc 100755
--- a/tools/update-hwdb.sh
+++ b/tools/update-hwdb.sh
@@ -21,8 +21,8 @@ if [ "${2:-}" != "-n" ]; then (
curl --fail -L -o ma-large.txt 'http://standards-oui.ieee.org/oui/oui.txt'
curl --fail -L -o ma-medium.txt 'http://standards-oui.ieee.org/oui28/mam.txt'
curl --fail -L -o ma-small.txt 'http://standards-oui.ieee.org/oui36/oui36.txt'
- curl --fail -L -o pnp_id_registry.html 'https://uefi.org/uefi-pnp-export'
- curl --fail -L -o acpi_id_registry.html 'https://uefi.org/uefi-acpi-export'
+ curl --fail -L -o pnp_id_registry.csv 'https://uefi.org/uefi-pnp-export'
+ curl --fail -L -o acpi_id_registry.csv 'https://uefi.org/uefi-acpi-export'
) fi
set -x