diff options
author | Robert Greenwalt <robdroid@android.com> | 2009-08-25 13:55:57 -0700 |
---|---|---|
committer | Robert Greenwalt <robdroid@android.com> | 2009-08-25 13:55:57 -0700 |
commit | 0ab3a93abaac2d44d1db064c91c275f0e38925de (patch) | |
tree | 24d6dda2e66d8a18d34aab4e49593716123675d0 /init | |
parent | 90b06ac786f859895ac503cf42759c2706205700 (diff) | |
download | system_core-0ab3a93abaac2d44d1db064c91c275f0e38925de.zip system_core-0ab3a93abaac2d44d1db064c91c275f0e38925de.tar.gz system_core-0ab3a93abaac2d44d1db064c91c275f0e38925de.tar.bz2 |
Allow radio to modify net.ppp* properties for dns
The radio bringup script was changed from operating as root to operating as radio. This is
preventing it from adding the "net.ppp0.dns0" and "net.ppp0.dns1" properties that
ConnectivityService needs to correctly set dns.
bug: 2077628
Diffstat (limited to 'init')
-rw-r--r-- | init/property_service.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/init/property_service.c b/init/property_service.c index 23a8821..7d3b8dc 100644 --- a/init/property_service.c +++ b/init/property_service.c @@ -55,6 +55,7 @@ struct { } property_perms[] = { { "net.rmnet0.", AID_RADIO }, { "net.gprs.", AID_RADIO }, + { "net.ppp", AID_RADIO }, { "ril.", AID_RADIO }, { "gsm.", AID_RADIO }, { "net.dns", AID_RADIO }, |