Modified sp_initdb tool 58/203758/7
authorHwankyu Jhun <h.jhun@samsung.com>
Wed, 17 Apr 2019 11:35:28 +0000 (20:35 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Wed, 17 Apr 2019 22:55:36 +0000 (07:55 +0900)
commit37f7f3c49f6dee73aef30d74a58c2c4f04428472
treecce6ffb2426720364ba699b72e5bb3de63ec60cd
parentddefce70fda6f8fd84857c55c7c3cfc7fbe17d26
Modified sp_initdb tool

After this patch is applied, sp_initdb tool supports xml parser.
If the developer adds the xml file of the syspopup on
/usr/share/syspopup/<profile>/ directory, the tool parses the data and
inserts it into syspopup db.

Change-Id: I4f4714562d3dda271e50dd438a9e3972b327a4df
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
20 files changed:
CMakeLists.txt
packaging/syspopup.spec
tool/CMakeLists.txt
tool/sp_initdb.c [deleted file]
tool/sp_initdb/CMakeLists.txt [new file with mode: 0644]
tool/sp_initdb/data/common.xml.in [new file with mode: 0644]
tool/sp_initdb/data/ivi.xml.in [new file with mode: 0644]
tool/sp_initdb/data/mobile.xml.in [new file with mode: 0644]
tool/sp_initdb/data/tv.xml.in [new file with mode: 0644]
tool/sp_initdb/data/wearable.xml.in [new file with mode: 0644]
tool/sp_initdb/inc/syspopup_parser.h [new file with mode: 0644]
tool/sp_initdb/inc/syspopup_parser_db.h [new file with mode: 0644]
tool/sp_initdb/inc/syspopup_private.h [new file with mode: 0644]
tool/sp_initdb/inc/syspopup_type.h [new file with mode: 0644]
tool/sp_initdb/manifest.xsd.in [new file with mode: 0644]
tool/sp_initdb/src/sp_initdb.c [new file with mode: 0644]
tool/sp_initdb/src/syspopup_parser.c [new file with mode: 0644]
tool/sp_initdb/src/syspopup_parser_db.c [new file with mode: 0644]
tool/sp_initdb/src/syspopup_type.c [new file with mode: 0644]
tool/sp_initdb/xml.xsd.in [new file with mode: 0644]