You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
3.2 KiB
Python
67 lines
3.2 KiB
Python
import os
|
|
import re
|
|
import shutil
|
|
from stuff.general import General
|
|
from tools.logger import Logger
|
|
|
|
|
|
class Houdini(General):
|
|
id = "libhoudini"
|
|
partition = "system"
|
|
dl_links = {
|
|
"11": ["https://github.com/supremegamers/vendor_intel_proprietary_houdini/archive/81f2a51ef539a35aead396ab7fce2adf89f46e88.zip", "fbff756612b4144797fbc99eadcb6653"],
|
|
# "13": ["https://github.com/supremegamers/vendor_intel_proprietary_houdini/archive/978d8cba061a08837b7e520cd03b635af643ba08.zip", "1e139054c05034648fae58a1810573b4"]
|
|
}
|
|
act_md5 = ...
|
|
dl_link = ...
|
|
dl_file_name = "libhoudini.zip"
|
|
extract_to = "/tmp/houdiniunpack"
|
|
init_rc_component = """
|
|
on early-init
|
|
mount -t binfmt_misc binfmt_misc /proc/sys/fs/binfmt_misc
|
|
|
|
on property:ro.enable.native.bridge.exec=1
|
|
exec -- /system/bin/sh -c "echo ':arm_exe:M::\\\\x7f\\\\x45\\\\x4c\\\\x46\\\\x01\\\\x01\\\\x01\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x02\\\\x00\\\\x28::/system/bin/houdini:P' > /proc/sys/fs/binfmt_misc/register"
|
|
exec -- /system/bin/sh -c "echo ':arm_dyn:M::\\\\x7f\\\\x45\\\\x4c\\\\x46\\\\x01\\\\x01\\\\x01\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x03\\\\x00\\\\x28::/system/bin/houdini:P' >> /proc/sys/fs/binfmt_misc/register"
|
|
exec -- /system/bin/sh -c "echo ':arm64_exe:M::\\\\x7f\\\\x45\\\\x4c\\\\x46\\\\x02\\\\x01\\\\x01\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x02\\\\x00\\\\xb7::/system/bin/houdini64:P' >> /proc/sys/fs/binfmt_misc/register"
|
|
exec -- /system/bin/sh -c "echo ':arm64_dyn:M::\\\\x7f\\\\x45\\\\x4c\\\\x46\\\\x02\\\\x01\\\\x01\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x00\\\\x03\\\\x00\\\\xb7::/system/bin/houdini64:P' >> /proc/sys/fs/binfmt_misc/register"
|
|
"""
|
|
apply_props = {
|
|
"ro.product.cpu.abilist": "x86_64,x86,arm64-v8a,armeabi-v7a,armeabi",
|
|
"ro.product.cpu.abilist32": "x86,armeabi-v7a,armeabi",
|
|
"ro.product.cpu.abilist64": "x86_64,arm64-v8a",
|
|
"ro.dalvik.vm.native.bridge": "libhoudini.so",
|
|
"ro.enable.native.bridge.exec": "1",
|
|
"ro.dalvik.vm.isa.arm": "x86",
|
|
"ro.dalvik.vm.isa.arm64": "x86_64"
|
|
}
|
|
files = [
|
|
"bin/arm",
|
|
"bin/arm64",
|
|
"bin/houdini",
|
|
"bin/houdini64",
|
|
"etc/binfmt_misc",
|
|
"etc/init/houdini.rc",
|
|
"lib/arm",
|
|
"lib/libhoudini.so",
|
|
"lib64/arm64",
|
|
"lib64/libhoudini.so"
|
|
]
|
|
|
|
def __init__(self, android_version="11") -> None:
|
|
super().__init__()
|
|
self.dl_link = self.dl_links[android_version][0]
|
|
self.act_md5 = self.dl_links[android_version][1]
|
|
|
|
def copy(self):
|
|
Logger.info("Copying libhoudini library files ...")
|
|
name = re.findall("([a-zA-Z0-9]+)\.zip", self.dl_link)[0]
|
|
shutil.copytree(os.path.join(self.extract_to, "vendor_intel_proprietary_houdini-" + name,
|
|
"prebuilts"), os.path.join(self.copy_dir, self.partition), dirs_exist_ok=True)
|
|
init_path = os.path.join(
|
|
self.copy_dir, self.partition, "etc", "init", "houdini.rc")
|
|
if not os.path.isfile(init_path):
|
|
os.makedirs(os.path.dirname(init_path), exist_ok=True)
|
|
with open(init_path, "w") as initfile:
|
|
initfile.write(self.init_rc_component)
|