Skip to content

Commit

Permalink
rename _resetprop to resetprop
Browse files Browse the repository at this point in the history
  • Loading branch information
ayasa520 committed May 27, 2023
1 parent 4fce5db commit 6c6e651
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
12 changes: 5 additions & 7 deletions stuffs/general.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,22 +67,20 @@ def extract(self):
z.extractall(self.extract_to)

def add_props(self):
bin_dir = os.path.join(self.copy_dir, "system", "bin")
bin_dir = os.path.join(self.copy_dir, "system", "etc")
resetprop_rc = os.path.join(
self.copy_dir, "system/etc/init/resetprop.rc")
if not os.path.isfile(os.path.join(bin_dir, "_resetprop")):
if not os.path.isfile(os.path.join(bin_dir, "resetprop")):
if not os.path.exists(bin_dir):
os.makedirs(bin_dir)
shutil.copy(os.path.join(
"./bin", self.arch[0], "_resetprop"), bin_dir)
os.chmod(os.path.join(bin_dir, "_resetprop"), 0o755)
"./bin", self.arch[0], "resetprop"), bin_dir)
os.chmod(os.path.join(bin_dir, "resetprop"), 0o755)
if not os.path.isfile(os.path.join(bin_dir, "resetprop.sh")):
with open(os.path.join(bin_dir, "resetprop.sh"), "w") as f:
f.write("#!/system/bin/sh\n")
f.write(
"temp_dir=$(mktemp -d);ln -s /system/bin/_resetprop \"${temp_dir}/resetprop\"\n")
f.write(
"while read line; do \"${temp_dir}/resetprop\" ${line%=*} ${line#*=}; done < /vendor/waydroid.prop\n")
"while read line; do /system/etc/resetprop ${line%=*} ${line#*=}; done < /vendor/waydroid.prop\n")
os.chmod(os.path.join(bin_dir, "resetprop.sh"), 0o755)
if not os.path.isfile(resetprop_rc):
if not os.path.exists(os.path.dirname(resetprop_rc)):
Expand Down

0 comments on commit 6c6e651

Please sign in to comment.