-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathextract-files.py
executable file
·43 lines (36 loc) · 1014 Bytes
/
extract-files.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env -S PYTHONPATH=../../../tools/extract-utils python3
#
# SPDX-FileCopyrightText: 2024 The LineageOS Project
# SPDX-License-Identifier: Apache-2.0
#
import extract_utils.tools
extract_utils.tools.DEFAULT_PATCHELF_VERSION = '0_17_2'
from extract_utils.main import (
ExtractUtils,
ExtractUtilsModule,
)
from extract_utils.fixups_blob import (
blob_fixup,
blob_fixups_user_type,
)
namespace_imports = [
'hardware/xiaomi',
'vendor/xiaomi/msm8998-common',
]
blob_fixups: blob_fixups_user_type = {
'vendor/etc/sensors/hals.conf': blob_fixup()
.regex_replace('sensors.elliptic.so\n', ''),
'vendor/lib64/libgf_hal.so': blob_fixup()
.remove_needed('libpowermanager.so'),
} # fmt: skip
module = ExtractUtilsModule(
'sagit',
'xiaomi',
blob_fixups=blob_fixups,
namespace_imports=namespace_imports,
)
if __name__ == '__main__':
utils = ExtractUtils.device_with_common(
module, 'msm8998-common', module.vendor
)
utils.run()