summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
sinikang [Thu, 21 Feb 2019 08:15:46 +0000 (17:15 +0900)]
Modify tfeature init sequence
- remove function of model config
- add TFEATURE_DEVICE_LTE_SUPPORTED
Change-Id: Ibfdb0e33da2aeda689407a4dbc31d407d3a5e5d8
Signed-off-by: sinikang <sinikang@samsung.com>
sinikang [Wed, 19 Dec 2018 23:05:35 +0000 (08:05 +0900)]
Fix svace issue(WGID 379871)
Change-Id: I92bdf8b6a31750599babdf0102df97cb113216f9
sinikang [Thu, 13 Dec 2018 09:13:26 +0000 (18:13 +0900)]
Remove db-util dependency
- use sqlite3 library directly
Change-Id: I314206375c3598c0c6979b68519d8d8373b0c279
sinikang [Wed, 5 Sep 2018 02:42:55 +0000 (11:42 +0900)]
Modify a duplicate code to use a function
Change-Id: I4b35c70e148164850c496a0e3c13f31cedfac88c
sinikang [Tue, 17 Jul 2018 05:20:57 +0000 (14:20 +0900)]
Remove unused upgrade script
Change-Id: I90b5c153eef81214b490b7b063d96f51cd724444
sinikang [Mon, 9 Jul 2018 06:17:27 +0000 (15:17 +0900)]
Fix coverity issue (CID 863700)
Change-Id: Iea82ef91818181700fcc76413b4d9982b2b05254
sinikang [Fri, 29 Jun 2018 06:59:21 +0000 (15:59 +0900)]
Add spn-conf.xml
- When this file is used on manager plugin loding
but, there has been occured error log due to file missing.
For fixing this situation, should add this file to db plugin.
Change-Id: Icf356061271fae71068f3f607694ec24f8afb402
Taejin Woo [Fri, 16 Mar 2018 02:47:30 +0000 (11:47 +0900)]
Fix build error regarding to Cmake upgrade
Change-Id: I13f06ed00d8c8967816740d0c7bf9baef32e81fb
Signed-off-by: Taejin Woo <tt.woo@samsung.com>
(cherry picked from commit
006d654a831be6a8c5952503350634c2cbbef6b3)
sinikang [Tue, 20 Mar 2018 05:22:41 +0000 (14:22 +0900)]
Fix svace issue (WGID 309818)
Change-Id: I1d56ca594afbb9d951806b677136240956ef59df
Wootak Jung [Tue, 30 Jan 2018 05:23:42 +0000 (14:23 +0900)]
Fix sqlite memory leak issue
Change-Id: Ifff9513d0223509c02eff65a47eb48448a08de81
sinikang [Wed, 15 Nov 2017 02:13:29 +0000 (11:13 +0900)]
Add security-config requires for removing build warning
Change-Id: I2e4fc4fea9da134c60390fccb5a878594717c610
sinikang [Thu, 21 Sep 2017 06:52:51 +0000 (15:52 +0900)]
Update Upgrade script
- declare PATH explicitly in upgarde script
for avoiding weak point attach on PATH environment
Change-Id: I8e1bb3b2ff3e87b9cd57766d993f0a19935fb9a8
sinikang [Fri, 11 Aug 2017 08:07:29 +0000 (17:07 +0900)]
Add upgrade script to Tizen 4.0
Change-Id: I4623446db045f9736825f2b39fe0f399655791f6
Wootak Jung [Fri, 19 May 2017 01:31:54 +0000 (10:31 +0900)]
Add TW2 reference device tfeature
Change-Id: I483592042e1708ee19febd2bb1461222f18c8d7e
Geunsik Lim [Wed, 17 May 2017 01:36:43 +0000 (10:36 +0900)]
[MIC] tel-plugin-databases: Speed up SQLite3 insertion operations while running MIC command
This commit is to speed up exeuction time of a MIC operation.
The "INSERT INTO ..." operation has been taken more than 500 milli seconds
when we run MIC command to make a Tizen platform image on the below system environment.
- CPU: Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz
- Memory: DDR3 8GiB
- OS: Ubuntu 14.04.5 LTS
We don't need to keep the synchronous operation in case that we only
run insertion commands without any data modification such as MODIFY
and DELETE statement.
@To maintainer:
----------------
First, Note that the number of insertion commands results in more synchronization
cost in kernel space. For example, the more we call a write(2) syscall,
the more Linux kernel calls submit_bio(9) and futex_wait(9) kernel function.
Disabling a synchronous operation will cause SQLite3 to not wait on data to
reach the disk surface, which will make write operations appear to be much
faster.
Second, Note that you have to check frequently if the version of SQLite3 is state-of-the-art.
As we all know, the existing bugs is often fixed in the latest version of SQLite3.
@Evaluation:
----------------
- How to do unit-test:
$ cd ./tel-plugin-databases
$ time sqlite3 ./mybenchmark.db < ../cdma_mcc_sid_list.sql
- Before this patch:
real 0m0.553s
user 0m0.019s
sys 0m0.013s
- After this patch:
real 0m0.029s
user 0m0.020s
sys 0m0.009s
@Reference:
----------------
- Pragma statements supported by SQLite, https://www.sqlite.org/pragma.html
Change-Id: I0f3c7c36bd768722fa649e1bc2f4236dcebe9e71
Signed-off-by: Geunsik Lim <geunsik.lim@samsung.com>
Wootak Jung [Mon, 3 Apr 2017 02:07:29 +0000 (11:07 +0900)]
Use %license macro in spec file
- Add manifest file in libtfeature
Change-Id: I869784e4140cc6cacec7879b69867ffd0fe2f7d6
sinikang [Fri, 10 Mar 2017 01:29:24 +0000 (10:29 +0900)]
Add tfeature definition and functionality
Change-Id: I3c16a554cf8ab7f702044d2a6b775fd648ac28ae
Suresh Kumar N [Mon, 28 Nov 2016 11:33:49 +0000 (17:03 +0530)]
Fix memory leak in storage API
Change-Id: I8cf39a3c0879297f778908442ee2b7383d2ce649
Signed-off-by: Suresh Kumar N <suresh.n@samsung.com>
Wootak Jung [Mon, 5 Dec 2016 09:43:19 +0000 (18:43 +0900)]
Modify script numbering
- in general case(no dependency with other scripts), use 500 numbering
Change-Id: I70655dffeca3a9e9ee659b50dd57993cfe027a35
Wootak Jung [Wed, 24 Aug 2016 04:52:20 +0000 (13:52 +0900)]
Add upgrade script
Change-Id: I3685d2191a739f4733a76231d6bd057be5910633
Jooseok Park [Mon, 16 May 2016 04:42:55 +0000 (13:42 +0900)]
fix memory fix
- add g_free when creating g_hash_table
Change-Id: I78d8fae2008b6eef18712bf9e5e09a611a1df7be
Wootak Jung [Wed, 4 May 2016 01:20:18 +0000 (10:20 +0900)]
Modify db file label to System
Change-Id: I05a8d8f0df85e736665ded21399bc54bb78503a1
Wootak Jung [Mon, 2 May 2016 02:04:26 +0000 (11:04 +0900)]
Modify uid/gid from system to root
Change-Id: I3acee6ce41e9e4723e454e64ed40cee2dd227471
Wootak Jung [Fri, 29 Apr 2016 05:52:37 +0000 (14:52 +0900)]
Modify mccmnc db uid/gid
Change-Id: If207057dbca03c1321683c647acb82a34c1abbed
Jiwan Kim [Fri, 11 Mar 2016 04:52:34 +0000 (13:52 +0900)]
Add build dependency for directory path
Change-Id: I664008eebcf9f1b05ed563820fbd8827cd030026
Jiwan Kim [Thu, 3 Mar 2016 01:48:36 +0000 (10:48 +0900)]
Change directory path to use tzplatform-config
Change-Id: I6142968355061af9e53afa0beecce773dd994bc9
Wootak Jung [Wed, 2 Sep 2015 03:59:40 +0000 (12:59 +0900)]
Sync from SPIN branch
Change-Id: Ib091eca91e40cf75487dc6943e915f8eae7d104e
Jiwan Kim [Thu, 2 Jul 2015 07:58:13 +0000 (16:58 +0900)]
Remove smack command
Change-Id: I5d8a63f9972197399eabd0ed44ac05e5e2da8d35
Jiwan Kim [Thu, 2 Jul 2015 04:30:09 +0000 (13:30 +0900)]
Code sync from tizen_2.4
Change-Id: I830c8128d0bdd7d89c1bbde25c4c61b77c2ae4c7
Jiwan Kim [Tue, 24 Mar 2015 11:31:56 +0000 (20:31 +0900)]
Fix for 64-bit build compatibility
Change-Id: Iebc48a068f7c6c702c2bfae10e4a91f592676455
Signed-off-by: Jiwan Kim <ji-wan.kim@samsung.com>
Dongchul Lim [Tue, 17 Mar 2015 04:45:14 +0000 (13:45 +0900)]
Code Sync up from tizen_2.4
Change-Id: I58654321b598dbebe5fdbe211aeba98205617a38
Dongchul Lim [Mon, 19 May 2014 07:18:03 +0000 (16:18 +0900)]
Header files unification
Change-Id: I116a4ee943ed8a82ea6bcff8da3e28d456ab2cdb
Wootak Jung [Thu, 3 Apr 2014 08:28:17 +0000 (17:28 +0900)]
Remove redundant message in log
Change-Id: I812ab713457fbcc112d12a10d8fb89c1ffddf0ba
Dongchul Lim [Mon, 7 Apr 2014 10:48:18 +0000 (19:48 +0900)]
Initial refactoring merge
Change-Id: I6ca834add7dfde7081365675100a185fd262a186
wootak.jung [Fri, 15 Nov 2013 10:06:15 +0000 (19:06 +0900)]
Generate Licence file
Change-Id: Ibc1593ad2c9222973c3c8896bec4360ff3cd4850
wootak.jung [Thu, 22 Aug 2013 08:22:40 +0000 (17:22 +0900)]
Remove debian files
Alexandru Cornea [Fri, 28 Jun 2013 15:55:14 +0000 (18:55 +0300)]
resetting manifest requested domain to floor
wootak.jung [Fri, 3 May 2013 05:46:33 +0000 (14:46 +0900)]
Synchronize smack between private and RSA
Junfeng Dong [Thu, 31 Jan 2013 11:26:08 +0000 (19:26 +0800)]
Fixed build on x86_64.
Change-Id: Idc3c8cc19fe82d566287c34d9a31f9c823f0e554
Jinkun Jang [Fri, 15 Mar 2013 16:18:40 +0000 (01:18 +0900)]
merge with master
Jinkun Jang [Tue, 12 Mar 2013 16:52:11 +0000 (01:52 +0900)]
Tizen 2.1 base
eunmee moon [Fri, 27 Apr 2012 12:36:15 +0000 (21:36 +0900)]
Initial empty repository