<feed xmlns='http://www.w3.org/2005/Atom'>
<title>replicant/device_samsung_espresso3g/system.prop, branch replicant-6.0</title>
<subtitle>Patches not merged yet, used for building and testing them
</subtitle>
<link rel='alternate' type='text/html' href='https://git.replicant.us/contrib/GNUtoo/replicant/device_samsung_espresso3g/'/>
<entry>
<title>Samsung-RIL</title>
<updated>2017-06-11T13:40:06+00:00</updated>
<author>
<name>Paul Kocialkowski</name>
<email>contact@paulk.fr</email>
</author>
<published>2014-01-02T22:01:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/contrib/GNUtoo/replicant/device_samsung_espresso3g/commit/?id=cb58dcaeb9d3fc4e6c7bf885312e4b6479707b1d'/>
<id>cb58dcaeb9d3fc4e6c7bf885312e4b6479707b1d</id>
<content type='text'>
Signed-off-by: Paul Kocialkowski &lt;contact@paulk.fr&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Paul Kocialkowski &lt;contact@paulk.fr&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>ril: add ril shim</title>
<updated>2016-09-25T16:54:51+00:00</updated>
<author>
<name>Ziyan</name>
<email>jaraidaniel@gmail.com</email>
</author>
<published>2016-09-07T23:23:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/contrib/GNUtoo/replicant/device_samsung_espresso3g/commit/?id=9bec50660dd955910c2cbe2ab19d47be36a9364e'/>
<id>9bec50660dd955910c2cbe2ab19d47be36a9364e</id>
<content type='text'>
Based on https://github.com/OMAP4-AOSP/android_device_samsung_tuna/tree/aosp-6.0/ril/libsecril-shim.

Change-Id: I8a21e9100938903d593ad67e0a9574c622d5dab4
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Based on https://github.com/OMAP4-AOSP/android_device_samsung_tuna/tree/aosp-6.0/ril/libsecril-shim.

Change-Id: I8a21e9100938903d593ad67e0a9574c622d5dab4
</pre>
</div>
</content>
</entry>
<entry>
<title> espresso3g: move libsec-ril.so to /vendor</title>
<updated>2016-09-24T12:01:03+00:00</updated>
<author>
<name>Andreas Blaesius</name>
<email>skate4life@gmx.de</email>
</author>
<published>2016-09-24T11:59:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/contrib/GNUtoo/replicant/device_samsung_espresso3g/commit/?id=0d896e1b72ecd8026ce5057d427616a1d374ac2d'/>
<id>0d896e1b72ecd8026ce5057d427616a1d374ac2d</id>
<content type='text'>
Change-Id: I41f6ce5853babef0feb2b53206188d40eda06f13
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I41f6ce5853babef0feb2b53206188d40eda06f13
</pre>
</div>
</content>
</entry>
<entry>
<title>Common device tree for 3G variants</title>
<updated>2016-02-23T18:29:08+00:00</updated>
<author>
<name>Ziyan</name>
<email>jaraidaniel@gmail.com</email>
</author>
<published>2016-02-21T16:03:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/contrib/GNUtoo/replicant/device_samsung_espresso3g/commit/?id=92f25590ee6e027b38ea59a1aa5b1025489a40fb'/>
<id>92f25590ee6e027b38ea59a1aa5b1025489a40fb</id>
<content type='text'>
Change-Id: I957fac5b5d41b4afac158fb59feb4e45e2bcd0cf
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I957fac5b5d41b4afac158fb59feb4e45e2bcd0cf
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix RIL_Init ending unexpectedly when passed unknown args</title>
<updated>2016-02-21T19:08:42+00:00</updated>
<author>
<name>Kyle Repinski</name>
<email>repinski23@gmail.com</email>
</author>
<published>2015-11-06T08:10:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/contrib/GNUtoo/replicant/device_samsung_espresso3g/commit/?id=976e03f7ed3d46f4ebbab4056625947b7190433d'/>
<id>976e03f7ed3d46f4ebbab4056625947b7190433d</id>
<content type='text'>
When libsec-ril receives an unknown argument, RIL_Init completely aborts early.

With Android 5.0 and up, a "client id" argument is passed (via '-c' param),
but libsec-ril's getopt call uses "p:d:s:", and anything not '-p' '-d' or '-s'
jumps to the end of RIL_Init.
By passing '--' before '-c', getopt ignores what's left and signals it's done.

Currently there's no extra args passed after rild.libargs other than '-c',
but even if that were to change in the future this change would still be
required for RIL_Init to work.

Change-Id: I7bd4d74cb23ff1624016ae3a1178407a885758d4
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When libsec-ril receives an unknown argument, RIL_Init completely aborts early.

With Android 5.0 and up, a "client id" argument is passed (via '-c' param),
but libsec-ril's getopt call uses "p:d:s:", and anything not '-p' '-d' or '-s'
jumps to the end of RIL_Init.
By passing '--' before '-c', getopt ignores what's left and signals it's done.

Currently there's no extra args passed after rild.libargs other than '-c',
but even if that were to change in the future this change would still be
required for RIL_Init to work.

Change-Id: I7bd4d74cb23ff1624016ae3a1178407a885758d4
</pre>
</div>
</content>
</entry>
<entry>
<title>p5100 : use ttyGS0 instead of ttys0 for radio</title>
<updated>2016-02-21T19:08:35+00:00</updated>
<author>
<name>CCD-1997</name>
<email>dcunha.cyprien@gmail.com</email>
</author>
<published>2015-12-29T14:59:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/contrib/GNUtoo/replicant/device_samsung_espresso3g/commit/?id=1be173a955249ba3999e82c78946296d4d9c2f47'/>
<id>1be173a955249ba3999e82c78946296d4d9c2f47</id>
<content type='text'>
Change-Id: I4f9db0dd44615c84941a9cc11aeb2f1cb4281577
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I4f9db0dd44615c84941a9cc11aeb2f1cb4281577
</pre>
</div>
</content>
</entry>
<entry>
<title>Move lcd density prop to espresso-common (4/5)</title>
<updated>2016-02-01T20:39:36+00:00</updated>
<author>
<name>Ziyan</name>
<email>jaraidaniel@gmail.com</email>
</author>
<published>2016-01-29T11:15:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/contrib/GNUtoo/replicant/device_samsung_espresso3g/commit/?id=bb764d6a2737895afaa5cf930d4550d97414f434'/>
<id>bb764d6a2737895afaa5cf930d4550d97414f434</id>
<content type='text'>
Change-Id: Ib91eabbb82e0d9c7584bcea7ae65e8d8f5bfea2f
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Ib91eabbb82e0d9c7584bcea7ae65e8d8f5bfea2f
</pre>
</div>
</content>
</entry>
<entry>
<title>jellybeaned</title>
<updated>2012-07-23T14:37:14+00:00</updated>
<author>
<name>Daniel Hillenbrand</name>
<email>daniel.hillenbrand@codeworkx.de</email>
</author>
<published>2012-07-23T14:37:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/contrib/GNUtoo/replicant/device_samsung_espresso3g/commit/?id=3113d3f4c11ac1635948eaed09e70838890ff358'/>
<id>3113d3f4c11ac1635948eaed09e70838890ff358</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>initial commit</title>
<updated>2012-06-15T23:43:50+00:00</updated>
<author>
<name>Daniel Hillenbrand</name>
<email>daniel.hillenbrand@codeworkx.de</email>
</author>
<published>2012-06-15T23:43:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/contrib/GNUtoo/replicant/device_samsung_espresso3g/commit/?id=4361c7c1e73f2e2ef8ad3554d06d13aee02a7411'/>
<id>4361c7c1e73f2e2ef8ad3554d06d13aee02a7411</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
