e3q: Initial device tree
This commit is contained in:
24
extract-files.py
Executable file
24
extract-files.py
Executable file
@@ -0,0 +1,24 @@
|
||||
#!/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/samsung/sm8650-common',
|
||||
]
|
||||
|
||||
module = ExtractUtilsModule(
|
||||
'e3q',
|
||||
'samsung',
|
||||
namespace_imports=namespace_imports,
|
||||
)
|
||||
|
||||
if __name__ == '__main__':
|
||||
utils = ExtractUtils.device_with_common(module, 'sm8650-common', module.vendor)
|
||||
utils.run()
|
Reference in New Issue
Block a user