From: Zbigniew Jędrzejewski-Szmek Date: Wed, 15 Nov 2023 14:21:26 +0000 (+0100) Subject: hwdb: rename .html=>.csv X-Git-Tag: v255-rc2~2^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=94113d5f19e5768c206176684e63525f679988d3;p=thirdparty%2Fsystemd.git hwdb: rename .html=>.csv The old suffix is now confusing. --- 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 similarity index 100% rename from hwdb.d/acpi_id_registry.html rename to hwdb.d/acpi_id_registry.csv diff --git a/hwdb.d/pnp_id_registry.html b/hwdb.d/pnp_id_registry.csv similarity index 100% rename from hwdb.d/pnp_id_registry.html rename to 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