mirror of
https://github.com/Evolution-X-Devices/device_oneplus_lemonades
synced 2026-01-27 17:13:05 +00:00
27 lines
547 B
Python
Executable File
27 lines
547 B
Python
Executable File
#!/usr/bin/env -S PYTHONPATH=../../../tools/extract-utils python3
|
|
#
|
|
# SPDX-FileCopyrightText: 2024 The LineageOS Project
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
from extract_utils.main import (
|
|
ExtractUtils,
|
|
ExtractUtilsModule,
|
|
)
|
|
|
|
namespace_imports = [
|
|
'vendor/oneplus/sm8250-common',
|
|
]
|
|
|
|
module = ExtractUtilsModule(
|
|
'lemonades',
|
|
'oneplus',
|
|
namespace_imports=namespace_imports,
|
|
)
|
|
|
|
if __name__ == '__main__':
|
|
utils = ExtractUtils.device_with_common(
|
|
module, 'sm8250-common', module.vendor
|
|
)
|
|
utils.run()
|