platform/core/system/tlm.git
8 years agoFix wrong error handling 99/49399/2
Youmin Ha [Tue, 13 Oct 2015 04:59:44 +0000 (13:59 +0900)]
Fix wrong error handling

tlm_seat_*() functions return TRUE on success, but the error handling
routine works wrong. This commit fixes it.

Change-Id: I12d32bff7460398b73e5a1aa512188456f13a3da

8 years agoFix prevent issues 98/49398/2
Youmin Ha [Mon, 12 Oct 2015 13:04:39 +0000 (22:04 +0900)]
Fix prevent issues

This commit fixes following prevent CIDs:
 * 458876: Avoid copying string which cannot be null-terminated
 * 459717: NULL-check after memory allocation
 * 461686: NULL-check tainted scalar(string read by fgets())
 * 462630: NULL-check after memory allocation
 * 466499: NULL-check after memory allocation
 * 470326: NULL-check after memory allocation
 * 471806: NULL-check after memory allocation
 * 472387: NULL-check after memory allocation
 * 475993: NULL-check after memory allocation

Change-Id: Ie33494a2055528ae1c8b8ffb296a2111c3468e95

8 years agoFix infinite running of _process_request() 69/42269/3
Youmin Ha [Thu, 25 Jun 2015 06:31:54 +0000 (15:31 +0900)]
Fix infinite running of _process_request()

Previous code runs _process_request() continuously even when the queue
is empty. This commit fixes the bug.

A refactoring on tlm-dbus-observer module is added; The routine getting
active_request is separeated.

* Fixed a build break when DEBUG option is off.

Change-Id: If26e092f687ca2ec57f86182911c49a5ef27d227
Signed-off-by: Youmin Ha <youmin.ha@samsung.com>
8 years agoBlock switching to same user as an user occupying current seat 59/41259/7
Youmin Ha [Wed, 13 May 2015 06:54:51 +0000 (15:54 +0900)]
Block switching to same user as an user occupying current seat

Switching to same user as the current user raises a abnormal behavior,
failing on re-login process. This is due to the inconsistance between
the tlm-sessiond daemon lifecycle and the systemd-logind's logout
procedure.
The standard solution is to receive a sessionTerminated signal from the
systemd-logind and sync it to the re-login procedure of TLM, but it
will take many structure changes of tlm-sessiond.
This patch just blocks switching to same user, preventing the abnormal
case with just a small effort.

 * src/daemon/tlm-seat.c|h: tlm_seat_get_occupying_username() is added.
 * src/daemon/tlm-dbus-observer.c: _is_valid_switch_user_dbus_request()
   is added and used in _process_request().

In addition, several comments and debug logs are given.

Change-Id: I9238098771bcce2b40aa89da47e9391ff7556922

8 years agoFix invalid memory read bug 94/48694/2
Youmin Ha [Fri, 25 Sep 2015 02:31:04 +0000 (11:31 +0900)]
Fix invalid memory read bug

Fixed a bug that tries to memcpy(read) 4*4bytes(AF_INET6) even
when the ai_family is AF_INET(4bytes).

Change-Id: I7570b40396d62c3c508cf5a290c97ff8403ee396
Signed-off-by: Youmin Ha <youmin.ha@samsung.com>
9 years agotlm-client: make tlm-client utility running as normal user privilege. 04/38804/1 sandbox/scwoo/devel tizen_3.0.2015.q2_common tizen_3.0.m1_mobile tizen_3.0.m1_tv accepted/tizen/common/20150513.083747 accepted/tizen/mobile/20150513.111829 accepted/tizen/tv/20150513.105611 accepted/tizen/wearable/20150513.110513 submit/tizen/20150513.044607 submit/tizen_common/20151015.190624 submit/tizen_common/20151019.135620 tizen_3.0.m1_mobile_release tizen_3.0.m1_tv_release
Sangjung Woo [Wed, 29 Apr 2015 01:46:58 +0000 (10:46 +0900)]
tlm-client: make tlm-client utility running as normal user privilege.

This patch makes to run tlm-client utility as normal user instead of
ROOT privilege. That functionality is necessary to test for switching
users as application privilege. What if launching tlm daemon itself,
ROOT privilege is still necessary.

Change-Id: I705a7a92c090bf53106cd0d1ef1762d633884f50
Signed-off-by: Sangjung Woo <sangjung.woo@samsung.com>
9 years agoAdd common config for singleseat 06/38106/1 accepted/tizen/common/20150414.100045 accepted/tizen/mobile/20150415.015027 accepted/tizen/tv/20150415.012550 accepted/tizen/wearable/20150415.013809 submit/tizen/20150414.011614
Jiyoung Yun [Mon, 13 Apr 2015 06:18:28 +0000 (15:18 +0900)]
Add common config for singleseat

The existing common config install tlm-default.conf file and
it will link in tlm.conf file when common-config is installed.
The common-singleseat will be included in mobile, tv and wearable profile.

Signed-off-by: Jiyoung Yun <jy910.yun@samsung.com>
Change-Id: I30e02602ac1048c675d0d9097c9c5db10235ec54

9 years agoMerge "fix the closing session bug, even if next user authentication is failed."...
Jussi Laako [Fri, 10 Apr 2015 10:17:44 +0000 (03:17 -0700)]
Merge "fix the closing session bug, even if next user authentication is failed." into tizen

9 years agofix the closing session bug, even if next user authentication is failed. 86/37386/5
Sangjung Woo [Wed, 25 Mar 2015 12:27:41 +0000 (21:27 +0900)]
fix the closing session bug, even if next user authentication is failed.

When switching user by calling switchUser method, current opened session
is closed without verifying the next user authentication (i.e. username
and password). Because of this reason, there could be no remains session
in case of failure of user authentication for next user.

This patch checks the next user authentication and immediately return
FALSE when failed so that current session is not terminated. PAM service
name is specified in /etc/tlm.conf to change easily. (Default system-auth)

Change-Id: I794243faa7ebaf47f53bdf9b9368e14dbf8c509a
Signed-off-by: Sangjung Woo <sangjung.woo@samsung.com>
9 years agoMerge "Clear session pointer when creation is failed" into tizen submit/tizen_common/20150410.095812
Imran Zaman [Thu, 2 Apr 2015 10:28:55 +0000 (03:28 -0700)]
Merge "Clear session pointer when creation is failed" into tizen

9 years agoWorkaround systemd bug of user sessions 23/37523/1 accepted/tizen_3.0.2015.q1_common tizen_3.0.2015.q1_common accepted/tizen/3.0.2015.q1/common/20150331.090921 accepted/tizen/common/20150331.090941 submit/tizen_3.0.2015.q1_common/20150331.090814 submit/tizen_common/20150331.090400
José Bollo [Mon, 30 Mar 2015 11:40:00 +0000 (13:40 +0200)]
Workaround systemd bug of user sessions

Systemd (up to at least 2.19) has a bug in stopping and
restarting user sessions. This patch fix it in a such way
the session is never closed.

Change-Id: I348fae16d43f3746627d2181b4d579fe5f77bd25
Signed-off-by: José Bollo <jose.bollo@open.eurogiciel.org>
9 years agoClear session pointer when creation is failed 73/36473/1
Suchang Woo [Sat, 7 Mar 2015 04:55:47 +0000 (13:55 +0900)]
Clear session pointer when creation is failed

When a remote session creation is failed, a pointer pointed to remote session
object should be reset. A pointer pointed to destroyed object can make
segfault.

Signed-off-by: Suchang Woo <suchang.woo@samsung.com>
Change-Id: I1c8f4e015d56e4a86c252d2188455636896665c8

9 years agoMove the tlm dbus interface under org.01 86/35586/1 accepted/tizen_3.0.2014.q4_common tizen_3.0.2014.q4_common accepted/tizen/3.0.2014.q4/common/20150224.150704 accepted/tizen/common/20150219.145143 accepted/tizen/mobile/20150220.131617 accepted/tizen/tv/20150220.125522 accepted/tizen/wearable/20150220.130102 submit/tizen/20150219.115409 submit/tizen_3.0.2014.q4_common/20150224.000000
Imran Zaman [Wed, 18 Feb 2015 14:54:10 +0000 (16:54 +0200)]
Move the tlm dbus interface under org.01
tlm-launcher is used to launch session scripts

Change-Id: If8c165b3d1a3e5b08288deb532cb6905325c33c0
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agosession: fix terminal reset functionality 45/34345/2 accepted/tizen/3.0.2014.q4/common/20150224.133848 accepted/tizen/common/20150123.171218 accepted/tizen/ivi/20150126.012152 accepted/tizen/mobile/20150126.011923 accepted/tizen/tv/20150126.011316 accepted/tizen/wearable/20150126.011617 submit/tizen/20150123.160413 submit/tizen_3.0.2014.q4_common/20150224.132828
Imran Zaman [Fri, 23 Jan 2015 15:46:04 +0000 (17:46 +0200)]
session: fix terminal reset functionality
session: cleanup terminal handling code

Change-Id: I74f366af80d79219c522279ebfe67bcabece7f71
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agoGuest user home directory is cleaned up on logout 29/33929/1 accepted/tizen/3.0/ivi/20150120.232915 accepted/tizen/common/20150121.103243 accepted/tizen/mobile/20150122.012429 accepted/tizen/tv/20150121.113558 accepted/tizen/wearable/20150121.110816 submit/tizen/20150120.105625 submit/tizen_3.0_ivi/20150120.110236 tizen_3.0_ivi_release
Imran Zaman [Fri, 16 Jan 2015 15:21:53 +0000 (17:21 +0200)]
Guest user home directory is cleaned up on logout

Change-Id: I18e2d1e7117905b2e04b7644bbdbade339f2f3f5
Fixed Bug TC-2370
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agoAdded tlm-launcher 49/33849/1 tizen_3.0_ivi accepted/tizen/common/20150115.180646 accepted/tizen/ivi/20150116.003641 accepted/tizen/mobile/20150116.011404 accepted/tizen/tv/20150116.010744 accepted/tizen/wearable/20150116.010438 submit/tizen/20150115.143516
Imran Zaman [Thu, 15 Jan 2015 14:26:46 +0000 (16:26 +0200)]
Added tlm-launcher
Reverted SIGINT patch

Change-Id: Ib1a55d4fce2ac48b19bbb1514410b85a2f6ed770
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agoFixed keyboard bug 75/33775/1 accepted/tizen/common/20150114.152431 accepted/tizen/ivi/20150115.063029 accepted/tizen/mobile/20150114.232400 accepted/tizen/tv/20150115.004633 accepted/tizen/wearable/20150115.004921 submit/tizen/20150114.150356
Imran Zaman [Wed, 14 Jan 2015 14:56:32 +0000 (16:56 +0200)]
Fixed keyboard bug

keymap_layout=wkb was missing from weston-genivi*.ini

Change-Id: I57539b63b5d77c271b3a934550e35db129704d6b
Fixed Bug TC-2341
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agoCTRL-C caused the weston process to exit 74/33674/1 accepted/tizen/common/20150114.145648 accepted/tizen/mobile/20150114.232349 accepted/tizen/tv/20150115.004609 accepted/tizen/wearable/20150115.004851 submit/tizen/20150114.141353
Imran Zaman [Tue, 13 Jan 2015 15:25:26 +0000 (17:25 +0200)]
CTRL-C caused the weston process to exit

when Weston is active, any keyboard events should not go
to the console. Instead, Weston open the evdev device,
and get kbd input through that.

Change-Id: Ie82b9d9e681422956979e9446b9eb765151b6c2e
Fixed Bug TC-2318
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agoweston-genivi-modello: Do not disable VGA output 07/33507/1 accepted/tizen/common/20150113.085949 accepted/tizen/ivi/20150112.234030 accepted/tizen/mobile/20150113.105613 accepted/tizen/tv/20150113.105246 accepted/tizen/wearable/20150113.105436 submit/tizen/20150112.133227
Mikko Ylinen [Mon, 12 Jan 2015 11:31:01 +0000 (13:31 +0200)]
weston-genivi-modello: Do not disable VGA output

It's not necessary to explicitly disable VGA output. This
breaks automated pre-release tests where only VGA monitors
are being used.

This configuration is better aligned with weston-genivi.ini
too.

Change-Id: If447cedd3f4d9a91cf2948dbd3ab0becebf67937
Signed-off-by: Mikko Ylinen <mikko.ylinen@intel.com>
9 years agoKeep current-mode for configurations other than modello 41/33441/1 accepted/tizen/common/20150109.150716 accepted/tizen/ivi/20150112.124239 accepted/tizen/mobile/20150111.050733 accepted/tizen/tv/20150112.051215 accepted/tizen/wearable/20150111.050021 submit/tizen/20150109.143926 submit/tizen_ivi/20150109.654321
Imran Zaman [Fri, 9 Jan 2015 14:31:12 +0000 (16:31 +0200)]
Keep current-mode for configurations other than modello

Change-Id: I93bc908d7316a763e44d160e3474ba147fe3b30e
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agoMerge "Updated modello script and configuration for weston" into tizen accepted/tizen/common/20150109.142648 accepted/tizen/mobile/20150111.050716 accepted/tizen/tv/20150112.051143 accepted/tizen/wearable/20150111.045958 submit/tizen/20150109.135405
Amarnath Valluri [Fri, 9 Jan 2015 13:51:52 +0000 (05:51 -0800)]
Merge "Updated modello script and configuration for weston" into tizen

9 years agoUpdated modello script and configuration for weston 39/33439/1
Imran Zaman [Fri, 9 Jan 2015 13:45:39 +0000 (15:45 +0200)]
Updated modello script and configuration for weston

Change-Id: Ia0cae21028637c8cd88c343b4d557bed5adf34ac
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agoUse weekeyboard for Tizen IVI user session 93/32993/2 accepted/tizen/common/20150105.131349 accepted/tizen/ivi/20150105.001234 accepted/tizen/mobile/20150106.003334 accepted/tizen/tv/20150108.024352 accepted/tizen/wearable/20150106.002830 submit/tizen/20141231.144409 submit/tizen_tv/20150108.022804
Imran Zaman [Wed, 31 Dec 2014 14:05:15 +0000 (16:05 +0200)]
Use weekeyboard for Tizen IVI user session

Change-Id: I4cd7d958437482abf6b7ffdbef67dd087ea94bd5
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agofullscreen shell does not support virtual keyboard 46/32946/1 accepted/tizen/common/20141231.101007 accepted/tizen/ivi/20150104.010549 accepted/tizen/mobile/20150102.005000 accepted/tizen/tv/20150102.012831 accepted/tizen/tv/20150105.022357 accepted/tizen/wearable/20150102.004728 submit/tizen/20141230.133056 submit/tizen_ivi/20141231.424242 submit/tizen_tv/20150102.011436 submit/tizen_tv/20151202.000000
Imran Zaman [Tue, 30 Dec 2014 13:18:06 +0000 (15:18 +0200)]
fullscreen shell does not support virtual keyboard

Change-Id: I1b60ff89be3e3de7a9ceb208c2f204d92d426a5b
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agoFixed dependency for modello configuration 74/32874/1 submit/tizen/20141229.144613
Imran Zaman [Mon, 29 Dec 2014 14:21:41 +0000 (16:21 +0200)]
Fixed dependency for modello configuration

Change-Id: Ia53ce598ea68c1b23af6398fb9d58a0e02116503
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agoAdded config packages for modello and ico homescreen 69/32769/4 submit/tizen/20141229.125349
Imran Zaman [Tue, 23 Dec 2014 16:44:16 +0000 (18:44 +0200)]
Added config packages for modello and ico homescreen

Change-Id: I53d63f3f5b9d0592f3b88bd1729a3dc732e7602c
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agoAdded session script for ICO homescreen 20/32620/2 accepted/tizen/common/20141219.164412 accepted/tizen/mobile/20141221.093331 accepted/tizen/tv/20141222.013613 accepted/tizen/wearable/20141221.093304 submit/tizen/20141219.153442 submit/tizen_ivi/20141229.291214
Imran Zaman [Fri, 19 Dec 2014 15:28:19 +0000 (17:28 +0200)]
Added session script for ICO homescreen
Moved tlm to multi-user target

Change-Id: I9f7693cd76b460132d9dcb756ff9e22c5fab4048
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agopackaging: fix update installation 12/32112/1 accepted/tizen/common/20141216.093630 accepted/tizen/tv/20141217.013056 accepted/tizen/wearable/20141217.020652 submit/tizen/20141215.155324 submit/tizen_ivi/20141215.444555
Imran Zaman [Mon, 15 Dec 2014 15:50:56 +0000 (17:50 +0200)]
packaging: fix update installation

Change-Id: If0465177edd7e94ee98f6bbc4037e18581a3fa75
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agotizen: release 1.0.2 94/32094/1 submit/tizen/20141215.140704
Imran Zaman [Mon, 15 Dec 2014 13:40:47 +0000 (15:40 +0200)]
tizen: release 1.0.2

session script updated along with cleanup of
spec file

Change-Id: Ibece818e70a0c1273322385b29c38558c5fd50e2
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agoclean spec file for yocto compliance 03/31803/1
Ronan Le Martret [Wed, 10 Dec 2014 11:13:53 +0000 (12:13 +0100)]
clean spec file for yocto compliance

 - remove full path for tool file
 - /etc/xdg/weston is only packaging into ivi package profile.

Change-Id: I236497ab7b0faf810e3997965aa2743833bae9db
Signed-off-by: Ronan Le Martret <ronan@fridu.net>
9 years agoMerge "Enable tlm when installing tlm-config-common package" into tizen accepted/tizen/common/20141210.113520 accepted/tizen/common/20141210.150233 accepted/tizen/mobile/20141216.074522 accepted/tizen/tv/20141210.193617 accepted/tizen/wearable/20141210.195639 submit/tizen/20141210.110212 submit/tizen_common/20141209.181617 submit/tizen_common/20141210.113056 submit/tizen_ivi/20141212.121212 submit/tizen_mobile/20141216.000000
Imran Zaman [Tue, 9 Dec 2014 17:34:32 +0000 (09:34 -0800)]
Merge "Enable tlm when installing tlm-config-common package" into tizen

9 years agoEnable tlm when installing tlm-config-common package 79/31779/1
Imran Zaman [Tue, 9 Dec 2014 17:27:06 +0000 (19:27 +0200)]
Enable tlm when installing tlm-config-common package

Change-Id: I903197dd2a70d470292fcfb25f8bd9e889285924
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agoLittle fix on session script for Tizen Common 16/31716/1 submit/tizen/20141208.204451
Manuel Bachmann [Mon, 8 Dec 2014 16:45:13 +0000 (17:45 +0100)]
Little fix on session script for Tizen Common

Simplify the script.

Change-Id: I48bd5e899457eb7843a3982e7e3e753912dce7c2
Signed-off-by: Manuel Bachmann <manuel.bachmann@open.eurogiciel.org>
9 years agoEnable tlm by config package instead of main package 50/31550/1 accepted/tizen/mobile/20141209.012537 submit/tizen/20141205.150900 submit/tizen_common/20141208.164856
Imran Zaman [Fri, 5 Dec 2014 15:06:54 +0000 (17:06 +0200)]
Enable tlm by config package instead of main package

Change-Id: Ie941fc1ab289f96121ac40940a69ee7c70563a38
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agoFix session scripts and package update 24/31424/1 accepted/tizen/mobile/20141208.023616 submit/tizen/20141204.150713
Imran Zaman [Thu, 4 Dec 2014 14:32:23 +0000 (16:32 +0200)]
Fix session scripts and package update

Change-Id: Ia796872f3eec0b0e6698d9d1d5e626b75728342d
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agoUpdated config and session scripts for Tizen Common 99/30899/1 accepted/tizen/common/20141127.162651 accepted/tizen/ivi/20141201.014525 accepted/tizen/mobile/20141201.014125 submit/tizen/20141127.145216
Imran Zaman [Wed, 26 Nov 2014 16:26:08 +0000 (18:26 +0200)]
Updated config and session scripts for Tizen Common

Change-Id: Ie78149dd71cc83b3a2f8dae39856ac404ac6fc5a
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agoAdd multi-configuration for Tizen IVI and Tizen Common 33/30733/1 accepted/tizen/common/20141124.170243 accepted/tizen/mobile/20141201.022846 submit/tizen/20141124.162952
Imran Zaman [Mon, 24 Nov 2014 16:25:29 +0000 (18:25 +0200)]
Add multi-configuration for Tizen IVI and Tizen Common

Change-Id: Iabb0c6b66dc7adb083ccf29596df43fbac12c01d
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agoFixed spec file for tizen mobile 84/30384/1 accepted/tizen/common/20141117.165139 accepted/tizen/ivi/20141118.065201 submit/tizen/20141117.131930 submit/tizen_mobile/20141120.000000
Imran Zaman [Mon, 17 Nov 2014 13:12:14 +0000 (15:12 +0200)]
Fixed spec file for tizen mobile

Change-Id: Ia38166d73a3ba053d53f00c765c0f7b9fac8c6b2
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agoBuild package with profile specific configuration 81/30381/1 submit/tizen/20141117.125926
Imran Zaman [Mon, 17 Nov 2014 12:52:11 +0000 (14:52 +0200)]
Build package with profile specific configuration

Change-Id: I8906155972d17fb860d15f839fdc6a0fef63c0b4
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agopackaging: make the EFL dependency optional 95/30295/1 accepted/tizen/common/20141114.143648 accepted/tizen/ivi/20141117.071641 submit/tizen/20141114.140142
Manuel Bachmann [Fri, 14 Nov 2014 00:58:56 +0000 (01:58 +0100)]
packaging: make the EFL dependency optional

Use a macro to determine if we should build with EFL or not.

Change-Id: Ia0f6921bd46df022817f68c8d1f56ef7d2b8fbd1
Signed-off-by: Manuel Bachmann <manuel.bachmann@open.eurogiciel.org>
9 years agoBumped to version 1.0.0 37/30137/1 accepted/tizen/common/20141112.171240 accepted/tizen/ivi/20141114.070958 submit/tizen/20141111.172346
Imran Zaman [Tue, 11 Nov 2014 17:20:26 +0000 (19:20 +0200)]
Bumped to version 1.0.0
Configuration for multiseat
Bug fixes and improvements

Change-Id: I3ebc2f5e6da8bedab33a51a3ea1e1831f6783651
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years ago[Bug Fix] TC-2000 - Tlm default login doesn't work 25/30125/1 submit/accepted/tizen_common/20141111.133313
Amarnath [Tue, 11 Nov 2014 12:40:13 +0000 (14:40 +0200)]
[Bug Fix] TC-2000 - Tlm default login doesn't work

This fix provides the right tlm configuration for Tizen.

Change-Id: Icf0d132c547029f67d74bea6e98b3b3894dc4843
Signed-off-by: Amarnath Valluri <amarnath.valluri@linux.intel.com>
9 years agoinotify support 86/29686/1 accepted/tizen/common/20141103.141031 accepted/tizen/ivi/20141107.011224 submit/tizen/20141031.152429
Imran Zaman [Fri, 31 Oct 2014 14:49:53 +0000 (16:49 +0200)]
inotify support
Support for fake seats
Bug fixes and improvements

Change-Id: Id890173c4593c760e82d36687cc2f153eae3c0ee
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agotizen: release 0.0.6 41/29341/1 accepted/tizen/common/20141024.122017 accepted/tizen/ivi/20141031.085442 submit/tizen/20141024.120858
Imran Zaman [Fri, 24 Oct 2014 12:01:54 +0000 (15:01 +0300)]
tizen: release 0.0.6

Change-Id: I15bec8cb68c053b62a642b5acdc668fbf1c5a932
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agotizen: release 0.0.5-1 31/27531/1 accepted/tizen_3.0.2014.q3_common accepted/tizen_3.0.m14.3_ivi tizen_3.0.2014.q3_common tizen_3.0.m14.3_ivi accepted/tizen/common/20140916.140224 accepted/tizen/ivi/20140919.152827 submit/tizen/20140915.121936 tizen_3.0.2014.q3_common_release tizen_3.0.m14.3_ivi_release
Imran Zaman [Mon, 15 Sep 2014 12:15:16 +0000 (15:15 +0300)]
tizen: release 0.0.5-1

Change-Id: I67aa537ee0206dba59a3c9168f96a84dc48226ff
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agotizen: release 0.0.4 72/27172/1 accepted/tizen/common/20140905.155238 accepted/tizen/ivi/20140908.110649 submit/tizen/20140905.125821
Imran Zaman [Fri, 5 Sep 2014 12:46:19 +0000 (15:46 +0300)]
tizen: release 0.0.4

Change-Id: Ica303d78e7c40dcb8da10bf11e8e7a0d9ba447d3
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agoUpdated pam configuration file and fixed bug related to dbus arguments 93/25393/1 accepted/tizen/common/20140804.141734 accepted/tizen/ivi/20140813.180009 submit/tizen/20140804.134115
Imran Zaman [Mon, 4 Aug 2014 13:19:13 +0000 (16:19 +0300)]
Updated pam configuration file and fixed bug related to dbus arguments

Change-Id: I402fbaed678c7b615fe579e850d506c40f24a056
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agoFix for the case when environment is empty 98/25298/1 accepted/tizen/common/20140801.173421 submit/tizen/20140801.123902
Imran Zaman [Fri, 1 Aug 2014 12:37:19 +0000 (15:37 +0300)]
Fix for the case when environment is empty

Change-Id: Id3b6564cc50963127c3a7436c179359f74af803f
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agoRelease 0.0.3 90/25290/1 submit/tizen/20140801.113059
Imran Zaman [Fri, 1 Aug 2014 11:28:05 +0000 (14:28 +0300)]
Release 0.0.3

Change-Id: Ib83f9f4355ffab4ba079e58331accf89923ca9b3
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
9 years agoFix manifest handling in the spec file 42/23542/1 tizen_3.0.m14.2_ivi accepted/tizen/common/20140627.163535 accepted/tizen/ivi/20140702.150852 submit/tizen/20140627.100102 submit/tizen_ivi/20140630.140424 submit/tizen_ivi/20140702.043220 submit/tizen_ivi/20140702.060425 submit/tizen_ivi/20140702.141657 tizen_3.0.m14.2_ivi_release
Jussi Laako [Fri, 27 Jun 2014 09:10:58 +0000 (12:10 +0300)]
Fix manifest handling in the spec file

Change-Id: Ide53aae8c7d7c43e9d989dd1f6bd0102180dcdc3

9 years agomanifest: don't copy without reason 80/22780/1 accepted/tizen/common/20140626.223456 submit/tizen/20140625.131252
Jussi Laako [Wed, 11 Jun 2014 13:59:05 +0000 (16:59 +0300)]
manifest: don't copy without reason

Change-Id: I197d77580372478786f8720ee6c2c8b464395450

9 years agoAdd package dependency to gumd 79/22779/1 accepted/tizen/common/20140626.223848 accepted/tizen/ivi/20140619.123537 submit/tizen/20140611.135148 submit/tizen_common/20140626.223802
Jussi Laako [Wed, 11 Jun 2014 13:37:02 +0000 (16:37 +0300)]
Add package dependency to gumd

Change-Id: I2a752e78be30f4fc4339eb9b89d905ba58247ec1

9 years agoauth: fix PAM password chatter and add PAM config file 64/20364/1 accepted/tizen/common/20140506.144235 accepted/tizen/ivi/20140519.094445 submit/tizen/20140505.140643
Jussi Laako [Mon, 5 May 2014 13:48:31 +0000 (16:48 +0300)]
auth: fix PAM password chatter and add PAM config file

Change-Id: I7238a4db2c32448eb40a76fbc5c79b5486f04f28

10 years agoFix default configuration and empty terminal handling 82/20282/2 accepted/tizen/common/20140506.123125 accepted/tizen/ivi/20140430.143925 submit/tizen/20140430.130050
Jussi Laako [Wed, 30 Apr 2014 12:51:38 +0000 (15:51 +0300)]
Fix default configuration and empty terminal handling

Change-Id: If23a8b756cfe6e958fe7696ac2c3b87f90c242c3

10 years agoRelease 0.0.2 93/17993/1 accepted/tizen_generic accepted/tizen_ivi_panda accepted/tizen_ivi_release tizen_ivi_release accepted/tizen/generic/20140313.155406 accepted/tizen/ivi/20140313.165618 accepted/tizen/ivi/panda/20140318.013816 accepted/tizen/ivi/release/20140315.013354 submit/tizen/20140313.152223 submit/tizen_ivi_release/20140315.013604
Jussi Laako [Thu, 13 Mar 2014 14:44:21 +0000 (16:44 +0200)]
Release 0.0.2

Change-Id: I0fc4a5bac7e99554853d5bce0f2a77c9b4147ad3

10 years agoFirst tlm release 46/16346/1 accepted/tizen/generic accepted/tizen/ivi accepted/tizen/generic/20140213.152952 accepted/tizen/generic/20140312.095158 accepted/tizen/ivi/20140213.201533 accepted/tizen/ivi/panda/20140312.111601 accepted/tizen/ivi/release/20140312.124224 accepted/tizen/mobile/20140227.070821 submit/tizen/20140213.151926 submit/tizen/20140312.070707 submit/tizen_ivi_release/20140312.071144
Imran Zaman [Thu, 13 Feb 2014 15:03:28 +0000 (17:03 +0200)]
First tlm release

Change-Id: I52768307131a49596e114fd2e3371c3075ffffd8
Signed-off-by: Imran Zaman <imran.zaman@intel.com>
10 years agoCreated project
Tracy Graydon [Fri, 22 Nov 2013 00:53:14 +0000 (16:53 -0800)]
Created project

20 years agoDisable screen lock for IVI 45/33145/2 accepted/tizen/ivi/20150107.233442 submit/tizen_ivi/20150107.194217
Wu dawei [Sun, 5 Oct 2003 03:27:14 +0000 (11:27 +0800)]
Disable screen lock for IVI

Change-Id: Icf70c9fadf9685ffa93954b9950ca96921c58064
Signed-off-by: Wu dawei <daweix.wu@intel.com>