mirror of
https://github.com/Anything-at-25-00/android_device_tecno_LG8n.git
synced 2026-04-21 08:56:07 -07:00
36 lines
759 B
Python
Executable file
36 lines
759 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.fixups_blob import (
|
|
blob_fixup,
|
|
blob_fixups_user_type,
|
|
)
|
|
from extract_utils.main import (
|
|
ExtractUtils,
|
|
ExtractUtilsModule,
|
|
)
|
|
|
|
namespace_imports = [
|
|
'hardware/mediatek',
|
|
'hardware/millennium',
|
|
'vendor/tecno/mt6789-common',
|
|
]
|
|
|
|
blob_fixups: blob_fixups_user_type = {
|
|
} # fmt: skip
|
|
|
|
module = ExtractUtilsModule(
|
|
'LG8n',
|
|
'tecno',
|
|
blob_fixups=blob_fixups,
|
|
namespace_imports=namespace_imports,
|
|
)
|
|
|
|
if __name__ == '__main__':
|
|
utils = ExtractUtils.device_with_common(
|
|
module, 'mt6789-common', module.vendor
|
|
)
|
|
utils.run()
|