27 lines
546 B
Python
Executable File
27 lines
546 B
Python
Executable File
#!/usr/bin/env -S PYTHONPATH=../../../tools/extract-utils python3
|
|
#
|
|
# SPDX-FileCopyrightText: 2025 The LineageOS Project
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
from extract_utils.main import (
|
|
ExtractUtils,
|
|
ExtractUtilsModule,
|
|
)
|
|
|
|
namespace_imports = [
|
|
'vendor/qcom/opensource/commonsys/display',
|
|
'vendor/qcom/opensource/commonsys-intf/display',
|
|
]
|
|
|
|
|
|
module = ExtractUtilsModule(
|
|
'wfd',
|
|
'qcom',
|
|
namespace_imports=namespace_imports,
|
|
)
|
|
|
|
if __name__ == '__main__':
|
|
utils = ExtractUtils.device(module)
|
|
utils.run()
|