dsmryder
Android Expert
I made a script to try to link the file (will be files) that the build moves to the /hidden partition. I can do everything manually, but I'm not sure what I'm doing wrong here. And I don't even know if the init.triumph.rc is running the file.
Here is the quick list of the commands ran.
And here is the script that I am running
Here is the quick list of the commands ran.
Code:
[EMAIL="root@android:/system/app"]root@android:/system/app[/EMAIL] # mount -o remount,rw /system
[EMAIL="root@android:/system/app"]root@android:/system/app[/EMAIL] # cd /sdcard
[EMAIL="root@android:/sdcard"]root@android:/sdcard[/EMAIL] # sh apklink.sh
link failed File exists
Code:
cd /system
for i in /hidden/*.apk
do
ln -s "$i" "${i##*/}"
done