Quote:
Originally Posted by natemcnutty
Does it have to be /etc/ppp? Because we currently do not have /etc mounted to anything like we did on the rootfs. We could mount /data/etc /etc if we need to.
So we just need this in the install script, right?
Code:
ln -s /data/etc/ppp /system/etc/
|
In reality it has to be /system/etc/ppp because that gets linked to /etc
So inside /system/etc there needs to be a link to data/ppp
Now we have this link in place. Its on the init.rc and in that tar so i dont know how its getting trashed (if it even is getting trashed)
ln -s /data/ppp /system/etc/ppp will do it.