I'm trying to make some changes to an android 812 firmware. Ultimately what I'm trying to do is extract some files from a tar.gz into a folder on the root.
I have got as far as creating the directory on the root, and having a shell script run that extracts the files to the root folder. Problem is, the files aren't appearing in my folder.
This is what I've done so far:
1. Extracted the boot image in the firmware to edit "init.rc". I've made the changes so I can make my "test" folder with 777 permissions.
In the "on init" section of init.rc I have this:
mkdir /test 777
#!/system/bin/sh MARK=/data/local/test if [ ! -e $MARK ]; then echo "test script" busybox tar -zxf /system/test.tar.gz -C /test/ touch $MARK echo "OK, installation complete." fi
service test_copy /system/bin/test.sh user root group root disabled oneshot on property:sys.boot_completed=1 start test_copy
The last thing I need is the files from the tar.gz to be 777 permissions.
Obviously I'm a complete noob at this, hope that makes sense and someone can help?
Comment