1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#!/usr/bin/env python3
# Copyright 2019-2022, Collabora, Ltd.
# SPDX-License-Identifier: BSL-1.0
#
# Original Author: Rylie Pavlik <rylie.pavlik@collabora.com>
"""Make a hwdb file. Requires an associated .rules file."""
from xrhardware.db import get_devices
from xrhardware.generate import generate_file_contents
if __name__ == "__main__":
all_entries = "\n\n".join(d.make_hwdb_entry() for d in get_devices())
contents = "\n".join(
(
"# This hwdb file must be used with the corresponding rules file.",
all_entries,
)
)
print(generate_file_contents(__file__, contents))
|