diff options
author | JIKWANG KANG <leo76.kang@samsung.com> | 2010-09-22 20:12:55 -0700 |
---|---|---|
committer | Maarten Hooft <mthooft@google.com> | 2010-09-22 21:40:57 -0700 |
commit | 94e25540e70899a7f1545cb435e090668341e7b1 (patch) | |
tree | 48b0b1ac8788ded257bdc24202070183a34d0ce9 | |
parent | f4cc843a6b7dcd424ea6e9db65ffd51053bcfd43 (diff) | |
download | device_samsung_crespo-94e25540e70899a7f1545cb435e090668341e7b1.zip device_samsung_crespo-94e25540e70899a7f1545cb435e090668341e7b1.tar.gz device_samsung_crespo-94e25540e70899a7f1545cb435e090668341e7b1.tar.bz2 |
S5PC11X: RIL: Giving the permission and setting the property
Some permissions to access uart & mtdblock for remvoing SAMSUNG RILD
SAMSUNG RILD was added for giving some capabilities.
If we want to remove SAMSUNG RILD, radio should have some permissions.
/dev/s3c2410_serial3/
it is for downloading the modem boot codes.
/dev/block/mtdblock5
Thre is a modem binary.
fixed the bug (Google ID, 3009603), Crespo only rings once when receiving a phone call
RIL in Crespo doesn't send the ringing notifications continuously,
but It can be done by setting the property, ro.telephony.call_ring.multiple, false
So, setting it in init.herring.rc
Change-Id: I6a5111d2f85a64b30a2a499183458a76d8dd40d0
Signed-off-by: JIKWANG KANG <leo76.kang@samsung.com>
-rwxr-xr-x | init.herring.rc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/init.herring.rc b/init.herring.rc index 97e8e63..53a3422 100755 --- a/init.herring.rc +++ b/init.herring.rc @@ -24,6 +24,11 @@ on boot # phone chown radio radio /sys/class/modemctl/xmm/control chmod 660 /sys/class/modemctl/xmm/control + chown radio radio /dev/s3c2410_serial3 + chmod 660 /dev/s3c2410_serial3 + chown radio radio /dev/block/mtdblock5 + chmod 640 /dev/block/mtdblock5 + setprop ro.telephony.call_ring.multiple 0 # create data/gps for GPS demon chown root system /dev/s3c2410_serial1 |