Commit 2e185f4e authored by topjohnwu's avatar topjohnwu

Add core props support

parent 67f347f8
...@@ -367,6 +367,14 @@ case $1 in ...@@ -367,6 +367,14 @@ case $1 in
log_print "* Running post-fs-data.d" log_print "* Running post-fs-data.d"
general_scripts post-fs-data general_scripts post-fs-data
log_print "* Loading core props"
for PROP in $COREDIR/props/* ; do
if [ -f $PROP ]; then
log_print "Load prop: $PROP"
$MAGISKBIN/resetprop --file $PROP
fi
done
# Exit if disabled # Exit if disabled
[ -f $DISABLEFILE ] && unblock [ -f $DISABLEFILE ] && unblock
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment