mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
dd1e33c8dc
In a few cases, the prefix was originally necessary because a different helper script was used for automake, and a different one for meson. But now we use meson exclusively, and the prefix isn't useful. This also synchronizes the target name, file name, and variable name in meson.build. The targets exposed by meson didn't have the prefix, so the user interface is unchanged. (The prefix is retained in the few tools that are used for meson itself, e.g. meosn-vcs-tag.sh, meson-make-symlink.sh, etc.)
33 lines
933 B
Bash
Executable File
33 lines
933 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
cd "$1"
|
|
|
|
unset permissive
|
|
if [ "${2:-}" = "-p" ]; then
|
|
permissive=1
|
|
shift
|
|
else
|
|
permissive=0
|
|
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'
|
|
curl -L -o ma-medium.txt 'http://standards-oui.ieee.org/oui28/mam.txt'
|
|
curl -L -o ma-small.txt 'http://standards-oui.ieee.org/oui36/oui36.txt'
|
|
curl -L -o pnp_id_registry.html 'https://uefi.org/uefi-pnp-export'
|
|
curl -L -o acpi_id_registry.html 'https://uefi.org/uefi-acpi-export'
|
|
) 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
|
|
|
|
./ids_parser.py
|