aboutsummaryrefslogtreecommitdiff
path: root/gps (follow)
Commit message (Collapse)AuthorAge
* msm8996-common: gps: Don't include cutils/threads.hTomasz Wasilczyk2024-12-19
| | | | | | Bug: 289414897 Test: buildserver Change-Id: I14b99f42feaae7af00cbd17cfe482eb2e5da71e8
* msm8996-common: gps: Fix compilation errorslineage-20Davide Garberi2023-11-18
| | | | Change-Id: If2b120073acb63b0b2ef385f9ba6508ef2e39179
* msm8996-common: Implement xtra-daemon control via propertyMichael Bestas2023-08-19
| | | | | | | | Default to false if the property is not set. Device init scripts will need to be adapted to restart loc_launcher service when property change is detected. Change-Id: Icbda789cd2a9a3391f437af2c07fc5127f2f09ab
* msm8996-common: gps: Remove all Wno-error flagsMichael Bestas2023-08-19
| | | | | | | Almost all warnings/errors have been fixed. Ignore undefined bool conversion error on purpose. Change-Id: I00cb5f38711fa9f873da030fc6a0ebc6cde3ceeb
* msm8996-common: Remove libhwbinder and libhidltransport referencesDavide Garberi2021-10-04
| | | | | | * These are now combined with libhidlbase Change-Id: I7cea1f4e09c12a4bedff40a168d4bce494f8c51d
* msm8996-common: Fix build errors with libgps.utils.soDivya Sharma2019-09-23
| | | | | | | | set_sched_policy() was moved from libcutils to libprocessgroup CRs-fixed: 2390701 Change-Id: I1468dee2b30f79bcdaa4ab3144628fddc69c4e80
* msm8996-common: gps: Fix 1.1 interface leftoversDavide Garberi2018-12-04
| | | | | | | * Thanks CAF for derping as usual Change-Id: I4a571fbc8810127cf675ff0aa29c4923b16bc62a Signed-off-by: Davide Garberi <dade.garberi@gmail.com>
* msm8996-common: gps: Switch back to 89xx tagsDavide Garberi2018-12-04
| | | | | | | | * Basically just remove the gnss 1.1 support * Tag: LA.UM.7.6.r1-03100-89xx.0 Change-Id: Ie52463e60c6f6bb127e736fe3e23a8b75c044a3a Signed-off-by: Davide Garberi <dade.garberi@gmail.com>
* msm8996-common: gps: Update from LA.UM.7.2.r1-04000-sdm660.0Davide Garberi2018-10-19
| | | | | | | | * The vendor blobs from LA.UM.7.2.r1-04000-sdm660.0 - B2N_sprout:9/PPR1.180610.011/00WW_3_22C * Update gnsspps from CAF's location repo Change-Id: I6afc29a05459bf6d1951cb36b746d8cc781bc48f Signed-off-by: Davide Garberi <dade.garberi@gmail.com>
* msm8996-common: Move gnss and lights services to system-background.Cosme Domínguez Díaz2018-09-30
|
* msm8996-common: Update to stock GPS configs and clean upBruno Martins2018-08-04
| | | | | | | | * Remove QC location and other unused GPS blobs * Ship with the same premium features enabled in stock builds Change-Id: I2e76e45160f028464eca34bb78da028f7d8dba8c
* msm8996: gps: Increase batch size to maxPranav Vashi2018-07-29
| | | | Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
* msm8996-common: gps: decrease log priority function tracingKhalid Zubair2018-05-14
| | | | | | | | Some location libraries are spamming logcat with function traces. Decrease the priority of these logs to prevent them from flooding logcat. Change-Id: I7b105684c8c9ba0ce67e5302bb7a003f1af7c90d
* msm8996-common: gps: Reduce GPS log level to 2 (warning)Brian Duddie2018-05-14
| | | | | | | | Based on recommendation from Qualcomm to reduce slim_daemon log spam, only log WARNING and ERROR level messages by default. Bug: 30375274 Change-Id: I8a5cc466c87b5db4ff9071f5123266ff721fb2b8
* msm8996-common: gps: qcom_diag -> oem_2901.Cosme Domínguez Díaz2018-05-03
|
* msm8996: update gps from LA.UM.6.5.r1-07400-8x96.0codeworkx2018-05-02
| | | | Change-Id: Ic9d4ea1e69f0f9e4ccf56917fe96696876a83a42
* msm8996: fix android.hardware.gnss@1.0-service-qtiThierry Strudel2018-04-22
| | | | | | | | | Make service part of 'hal' class. Install files in vendor partition. Register instance as 'default' as expected by framework. Change-Id: I487fad4df872397ab76cea377e5304c956a756da Signed-off-by: Thierry Strudel <tstrudel@google.com>
* Remove hardcoded LOCAL_MODULE_PATHS from vendor components. (gps)Vishwath Mohan2018-04-22
| | | | | | | | | | | | | | | | | This CL replaces all LOCAL_MODULE_PATH_* definitions for vendor shared libraries with LOCAL_VENDOR_MODULE := true instead. This appropriately generates sanitized versions of these libraries to /data/asan/* while generating the stock versions in /vendor/lib* as desired. Needed for ASAN builds to work correctly. Bug: 37740897 Test: m -j40 && SANITIZE_TARGET="address" m -j40 # shared libs in $ANDROID_PRODUCT_OUT/vendor/lib* do not contain asan symbols, while the ones in $ANDROID_PRODUCT_OUT/data/asan/vendor/lib* do. Change-Id: If6a495dd153c47f929de047fd48039b990348720 (cherry picked from commit e872612127cfbf55ceba01e9860e0acc47d64447)
* Move android.hardware.gnss@1.0-service-qti.rc to vendorSzuWei Lin2018-04-22
| | | | | | | | | The .rc file should be on the vendor image, or can not boot with generic system image. Bug: 63051055 Test: Boot with GSI to home screen Change-Id: I1e2ebe5d23a6cf5a4176ee33613ef621b4b558cf
* Don't rely on transitively included headersJiyong Park2018-04-22
| | | | | | | | | | | | One must explicitly include what it need. time.h for struct tm. sys/time.h for gettimeofday, etc. Bug: 37629934 Test: build Merged-In: Iacd5317d958f61df062fca40fbf2e8992c7fbb44 Change-Id: I19e1043f23dbe85836b73714a4f1440159ebe419
* Build libgps.utils with VNDK.Steven Moreland2018-04-22
| | | | | | Test: m -j BOARD_VNDK_VERSION=current libgps.utils Bug: 37342627 Change-Id: Ifcd9344245cf689d4075d34b89faa689647b8b0b
* msm8996-common: Import gps config from ZUI 3.5.261.Cosme Domínguez Díaz2018-03-16
|
* msm8996-common: Update GPS HIDL HAL from upstreamBruno Martins2018-03-16
| | | | | | * Tag: LA.UM.6.6.r1-06700-89xx.0 Change-Id: If746b12bcbc3e414aa9ba9f421040edd0f815638
* msm8996: gps: Squashed update to LA.UM.6.5.r1-05300-8x96.0dianlujitao2018-01-27
| | | | | Change-Id: I76b39dd5329a050d44f126c684edb44b0184f0fc Signed-off-by: Davide Garberi <dade.garberi@gmail.com>
* Revert GPS ZUI configurations importDavide Garberi2017-12-24
| | | | | | | | | | | | * Just doesn't change anything Revert "msm8996-common: gps: Change oem_xxx and qcom_diag with oem_2901" This reverts commit fd3efa5b1ed12630d854395bd3b2f4ccf27d4e14. Revert "msm8996-common: gps: Import configuration files from ZUI" This reverts commit 8c53f81929e9a66e19c55089fdcf8d1ffc6e74a6.
* msm8996-common: gps: Change oem_xxx and qcom_diag with oem_2901Davide Garberi2017-12-17
| | | | Signed-off-by: Davide Garberi <dade.garberi@gmail.com>
* msm8996-common: gps: Import configuration files from ZUIDavide Garberi2017-12-17
| | | | Signed-off-by: Davide Garberi <dade.garberi@gmail.com>
* msm8996: Remove oneplus edits from gps.confRashed Abdel-Tawab2017-12-12
| | | | | Change-Id: I55b3cd45bd5d177e153dada45054db0ea8b2ae99 Signed-off-by: Davide Garberi <dade.garberi@gmail.com>
* msm8996: Update GPS configs for oreoRashed Abdel-Tawab2017-12-12
| | | | | Change-Id: Iff0084580c3a496b7b2d73f3778a54b89cbcad2c Signed-off-by: Davide Garberi <dade.garberi@gmail.com>
* msm8996: Restore GPS configsRashed Abdel-Tawab2017-12-12
| | | | | Change-Id: I486ebf4e40dd962227553fbf2e44e4afaf15e628 Signed-off-by: Davide Garberi <dade.garberi@gmail.com>
* msm8996-common: Import gps from LA.UM.6.5.r1-02500-8x96.0Rashed Abdel-Tawab2017-12-12
| | | | Signed-off-by: Davide Garberi <dade.garberi@gmail.com>
* msm8996-common: Nuke the GPS HalDavide Garberi2017-12-12
| | | | | | * Just to make a clean import Signed-off-by: Davide Garberi <dade.garberi@gmail.com>
* msm8996-common: gps: switch NTP server to global NTP poolAlex Naidis2017-11-02
| | | | | | | | | | | Switching to pool.ntp.org since our previously used server time.izatcloud.net is timing out. We are not using time.gpsonextra.net since the latency of time.gpsonextra.net is huge. Signed-off-by: Alex Naidis <alex.naidis@linux.com> Signed-off-by: dd3boh <dade.garberi@gmail.com>
* msm8996-common: Commonize the device treedd3boh2017-10-31
| | | | Signed-off-by: dd3boh <dade.garberi@gmail.com>
* z2_plus: Use oem_2901 instead of qcom_diagdd3boh2017-10-31
| | | | | | * thanks @erfanoabdi for the suggestion :) Signed-off-by: dd3boh <dade.garberi@gmail.com>
* Revert "z2_plus: rootdir: Get rid of qcom_diag"dd3boh2017-10-31
| | | | This reverts commit bd10d1a6243b013efd4b89cb9ec6416225f6b053.
* gps: remove slim_daemonDemon0002017-09-07
| | | | | | | | It's a PREMIUM_FEATURE daemon and it's causing errors on O. 01-29 01:03:28.327 877 877 F DEBUG : Abort message: 'CANNOT LINK EXECUTABLE "slim_daemon": cannot locate symbol "_ZN7android16SensorEventQueue4readEP12ASensorEventm" referenced by "/system/vendor/bin/slim_daemon"...' Change-Id: Iba1342d12b10e94be9e37724795a922996d32773
* z2_plus: rootdir: Get rid of qcom_diagLuca Stefani2017-09-07
| | | | | Change-Id: Ie301a2699ab1f203af4042ffe28ae61535287abf Signed-off-by: dd3boh <dade.garberi@gmail.com>
* Add missing liblog dependencyDimitry Ivanov2017-09-07
| | | | | | | | Bug: http://b/31289077 Bug: http://b/27171986 Test: remove liblog from libcutils and recompile Change-Id: Icd2f1ae735e263296a5c6705c7b528b00aa1a94a (cherry picked from commit 532f3378c214c3134afcb5bcc7c19ce047ec02ac)
* Depend on libandroid_runtimeColin Cross2017-09-07
| | | | | | | | | | | | libloc_pla is playing tricks with -Wl,--export-dynamic to use symbols from libandroid_runtime without depending on it. libandroid_runtime's headers are moving to where they are only exported to modules that depend on it, so add a dependency and remove -Wl,--export-dynamic Bug: 33630870 Test: builds Change-Id: I9b0567a48ded63031085b6ba93fb3b36404279e1 (cherry picked from commit ada652709d5a1b9faedecc02739d2ed610e18f86)
* gps.conf: use HTTPS for XTRA downloadsÁlvaro Brey2017-07-13
| | | | Change-Id: I5e999cd96327889560a6535ec8bfe6e161fd6f92
* gps: Fix agpsdavidevinavil2017-06-21
|
* gps: Fix cold startdavidevinavil2017-04-07
| | | | Change-Id: I2cdc800b58d61943f1bef3e86c4d0739b91eac5e
* Gps: import Zuk configdavidevinavil2017-01-23
| | | | Change-Id: Id0ca8d739071465b3a272d943be464e004f63439
* fixdavidevinavil2017-01-21
| | | | Change-Id: Ibe3d022be95bf66954fc794d1b2b06bd92cc52ce
* z2_plus: Fix target device to build gpsdavidevinavil2017-01-21
| | | | Change-Id: Iabe4c3e09dbdd315456337e128e6e3940ce21065
* z2_plus: Update GPS and Location API from upstreamBruno Martins2017-01-21
| | | | | | * Tag: LA.UM.5.5.r1-02300-8x96.0 Change-Id: I0449ca62f7ad8763c799e865be39b5146e0b0e31
* z2_plus: Import QC location sourceBruno Martins2017-01-21
| | | | | | * Tag: LA.UM.5.5.r1-01800-8x96.0 Change-Id: Ib33b01591c1743dd8b217a81a580bc3c2b13bd05
* z2_plus: Update GPS HAL from upstreamdianlujitao2017-01-21
| | | | | | * Tag: LA.UM.5.5.r1-01300-8x96.0 Change-Id: I269ec7f9809531139e157220feed9a2c977a7d6c
* z2_plus: Update services to drop net_raw and net_admindavidevinavil2017-01-21
| | | | Change-Id: I1d8803f5cbe62bbf61647386f74b93d91e2f1efb