mirror of
https://github.com/ayasa520/redroid-script.git
synced 2026-02-24 16:35:08 +08:00
67 lines
3.4 KiB
Python
67 lines
3.4 KiB
Python
import os
|
|
import re
|
|
import shutil
|
|
from stuff.general import General
|
|
from tools.helper import bcolors, get_download_dir, print_color, run
|
|
|
|
|
|
class Houdini(General):
|
|
download_loc = get_download_dir()
|
|
copy_dir = "./houdini"
|
|
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"
|
|
"""
|
|
dl_links = {
|
|
"11.0.0": [
|
|
"https://github.com/supremegamers/vendor_intel_proprietary_houdini/archive/81f2a51ef539a35aead396ab7fce2adf89f46e88.zip",
|
|
"fbff756612b4144797fbc99eadcb6653"],
|
|
"12.0.0": [
|
|
"https://github.com/supremegamers/vendor_intel_proprietary_houdini/archive/0e0164611d5fe5595229854759c30a9b5c1199a5.zip",
|
|
"9709701b44b6ab7fc311c7dc95945bd0"],
|
|
"13.0.0": [
|
|
"https://github.com/supremegamers/vendor_intel_proprietary_houdini/archive/978d8cba061a08837b7e520cd03b635af643ba08.zip",
|
|
"1e139054c05034648fae58a1810573b4"
|
|
],
|
|
# "9.0.0":[],
|
|
# "8.1.0":[]
|
|
}
|
|
dl_file_name = os.path.join(download_loc, "libhoudini.zip")
|
|
extract_to = "/tmp/houdiniunpack"
|
|
|
|
def __init__(self, version):
|
|
self.version = version
|
|
if version in self.dl_links.keys():
|
|
self.dl_link = self.dl_links[version][0]
|
|
self.act_md5 = self.dl_links[version][1]
|
|
else:
|
|
raise ValueError(
|
|
"No available libhoudini for Android {}".format(version))
|
|
|
|
def download(self):
|
|
print_color("Downloading libhoudini now .....", bcolors.GREEN)
|
|
super().download()
|
|
|
|
def copy(self):
|
|
if os.path.exists(self.copy_dir):
|
|
shutil.rmtree(self.copy_dir)
|
|
run(["chmod", "+x", self.extract_to, "-R"])
|
|
|
|
print_color("Copying libhoudini library files ...", bcolors.GREEN)
|
|
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, "system"), dirs_exist_ok=True)
|
|
|
|
init_path = os.path.join(self.copy_dir, "system", "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)
|
|
os.chmod(init_path, 0o644)
|