From 4e5d35db8a03eed001d526be639acb28f39a32b9 Mon Sep 17 00:00:00 2001 From: Kazumasa Mitsunari Date: Thu, 22 Sep 2016 17:03:20 +0900 Subject: Bug fix:Fail to remove db-journal file * Bug fix In AGL distribution, there are no db-journal file for pkgmgr_* and app_info in /usr/dbspace because sqlite3 maybe delete them. If journal files doesn't exist, creating DB fails and desktop files are not created. So, this commit change not to remove db-journal file if the files doesn't exist. * Refactoring Some recipe was refactored to enable patch from other layer. * Remove unnecessary file * Modify README Add how to set up to enable global user to create surfaces. Change-Id: Id73e9a840cf59e48641a0c53fbaa6d292d576ae2 Signed-off-by: Kazumasa Mitsunari --- README | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'README') diff --git a/README b/README index 13c0d12..1cfc2a3 100644 --- a/README +++ b/README @@ -17,9 +17,7 @@ Release note ToDo ------------------ * Register first setting(vconf etc.) as systemd service -* Change global user name to aglglobaluser * Documentation -* Separate the dependencies of capi-* * Dynamicaly enable to install applications * Support multiple runtime engine - remove efl dependencies @@ -118,6 +116,7 @@ You can build an image for porter using the following steps: 3. Modify conf/bblayers 3.1 Remove the meta-agl-bsp line in conf/bblayers.conf + remove ${METADIR}/meta-agl/meta-agl-bsp \ 3.2 Add following environment variables in conf/bblayers.conf @@ -131,6 +130,7 @@ You can build an image for porter using the following steps: Nothing 5. bitbake the image + $ bitbake agl-demo-platform-plus-application-manager @@ -152,21 +152,22 @@ can be searched from database. 2. Setting # vconftool set -t string db/menu_widget/language "en-us" # useradd aglglobalapp - if required to define password, please set the password you like. + if required to define password, please set the password you like # loginctl enable-linger aglglobalapp + # chmod g+w /usr/share/applications + # chown aglglobalapp:root /usr/dbspace + # chown aglglobalapp:root /run/user/0 /run/user/0/wayland-0 3. Launch sample application from user # login aglglobalapp - $ launch_app org.tizen.amhelloworld - launch sample appli will fail. - $ pkg_createdb_user $ pkg_initdb_user + $ ail_initdb_user $ launch_app org.tizen.amhelloworld successfull to launch 4. How to start native application $ pkgcmd -l // to list all applications available. $ pkginfo --listpkg is also available - $ app_launcher -s + $ app_launcher -s For more information, please access the following URL https://wiki.tizen.org/wiki/IVI/Tizen-IVI_3.0 -- cgit 1.2.3-korg