Skip to content

Commit 94113d5

Browse files
committed
hwdb: rename .html=>.csv
The old suffix is now confusing.
1 parent 3e0cf73 commit 94113d5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

hwdb.d/acpi-update.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ def read_table(a):
2828
'# https://uefi.org/uefi-pnp-export\n'
2929
'# https://uefi.org/uefi-acpi-export')
3030

31-
read_table("acpi_id_registry.html")
32-
read_table("pnp_id_registry.html")
31+
read_table('acpi_id_registry.csv')
32+
read_table('pnp_id_registry.csv')
File renamed without changes.
File renamed without changes.

tools/update-hwdb.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ if [ "${2:-}" != "-n" ]; then (
2121
curl --fail -L -o ma-large.txt 'http://standards-oui.ieee.org/oui/oui.txt'
2222
curl --fail -L -o ma-medium.txt 'http://standards-oui.ieee.org/oui28/mam.txt'
2323
curl --fail -L -o ma-small.txt 'http://standards-oui.ieee.org/oui36/oui36.txt'
24-
curl --fail -L -o pnp_id_registry.html 'https://uefi.org/uefi-pnp-export'
25-
curl --fail -L -o acpi_id_registry.html 'https://uefi.org/uefi-acpi-export'
24+
curl --fail -L -o pnp_id_registry.csv 'https://uefi.org/uefi-pnp-export'
25+
curl --fail -L -o acpi_id_registry.csv 'https://uefi.org/uefi-acpi-export'
2626
) fi
2727

2828
set -x

0 commit comments

Comments
 (0)