sdk/emulator/qemu.git
11 years agoMerge remote-tracking branch 'remotes/private-qm/develop' into develop
sungmin ha [Fri, 10 Aug 2012 12:14:04 +0000 (21:14 +0900)]
Merge remote-tracking branch 'remotes/private-qm/develop' into develop

11 years agoMerge branch 'develop' of public:sdk/emulator/qemu into develop
syeon.hwang [Fri, 10 Aug 2012 09:19:38 +0000 (18:19 +0900)]
Merge branch 'develop' of public:sdk/emulator/qemu into develop

11 years agoMerge branch 'develop' of public:sdk/emulator/qemu into develop
syeon.hwang [Fri, 10 Aug 2012 09:17:00 +0000 (18:17 +0900)]
Merge branch 'develop' of public:sdk/emulator/qemu into develop

11 years agoMerge branch 'develop' of gerrithost:sdk/emulator/qemu into develop
syeon.hwang [Fri, 10 Aug 2012 09:16:09 +0000 (18:16 +0900)]
Merge branch 'develop' of gerrithost:sdk/emulator/qemu into develop

11 years ago[Title]fix pkginfo.manifest library dependency
munkyu.im [Fri, 10 Aug 2012 06:39:02 +0000 (15:39 +0900)]
[Title]fix pkginfo.manifest library dependency
[Type]
[Module]
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title]change libcurl4 to libcurl-4
munkyu.im [Fri, 10 Aug 2012 06:02:26 +0000 (15:02 +0900)]
[Title]change libcurl4 to libcurl-4
[Type]
[Module]
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years agohw/ac97: Mask out the EAPD bit on Powerdown Ctrl/Stat writes
Hans de Goede [Mon, 7 May 2012 07:24:38 +0000 (09:24 +0200)]
hw/ac97: Mask out the EAPD bit on Powerdown Ctrl/Stat writes

The Linux AC97 driver tests this bit to decide wether or not to show
an External amplifier toggle control.

This patch was also tested with a Windows XP guest without any issues.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: malc <av1474@comtv.ru>
11 years agohw/ac97: Mask out unused bits of volume controls
Hans de Goede [Mon, 7 May 2012 07:24:37 +0000 (09:24 +0200)]
hw/ac97: Mask out unused bits of volume controls

The Linux ac97 drivers does a number of register read/write tests to
see how much resolution a volume control actually has.

This patch takes this into account by masking out any bits written to
a volume control reg which should not be there according to the spec.

After this the Linux ac97 driver correctly uses a range of 0 - 0x1f for
the PCM out volume, as stated in the spec, and we can fix the FIXME
in update_combined_volume_out().

This patch was also tested with a Windows XP guest without any issues.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: malc <av1474@comtv.ru>
11 years agohw/ac97: Use AC97_Record_Gain_Mute not AC97_Line_In_Volume_Mute
Hans de Goede [Mon, 7 May 2012 07:24:36 +0000 (09:24 +0200)]
hw/ac97: Use AC97_Record_Gain_Mute not AC97_Line_In_Volume_Mute

After commit 19677a380a70348134ed7650b294522617eb03fc:
"hw/ac97: add support for volume control"

We are (correctly) using AC97_Record_Gain_Mute and not AC97_Line_In_Volume_Mute
for recording volume, but various places in hw/ac97 were still assumimg that
we are using AC97_Line_In_Volume_Mute for record volume control, this patch
fixes this.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: malc <av1474@comtv.ru>
11 years agohw/ac97: Make a bunch of mixer registers read only
Hans de Goede [Mon, 7 May 2012 07:24:35 +0000 (09:24 +0200)]
hw/ac97: Make a bunch of mixer registers read only

The Linux ac97 driver tries to see if optional things like video input
volume control are available in 2 ways:
1) See if the mute bit is set after reset, if it is no further tests are done
2) If the mute bit is not set it does a write/read test of the mute bit

This patch changes our ac97 to conform to what the Linux driver expects, it
initializes registers for things which we don't emulate to 0 (so the mute bit
is not set) and makes them read only.

This causes Linux to now longer show the following (functionless)
controls in alsamixer:

Master Mono vol + mute
3d Control toggle
PCM out pre / post 3d select
Surround toggle
CD vol + mute
Mic vol + mute
Mic boost toggle
Mic mic1 / mic2 select
Video vol + mute
Phone vol + mute
Beep mono vol + mute
Aux vol + mute
Mono "output mic" / "mix" select
Sigmatel 4 speaker stereo toggle
Sigmatel ADC 6Db att toggle
Sigmatel DAC 6Db att toggle

This patch was also tested with a Windows XP guest and there it also makes
a number of functionless mixer controls go away.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: malc <av1474@comtv.ru>
11 years agohw/ac97: Fix log message in mixer_load
Hans de Goede [Mon, 7 May 2012 07:24:34 +0000 (09:24 +0200)]
hw/ac97: Fix log message in mixer_load

Fix a small copy and paste error in logging.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: malc <av1474@comtv.ru>
11 years agohw/ac97: add support for volume control
Marc-André Lureau [Tue, 17 Apr 2012 12:32:39 +0000 (14:32 +0200)]
hw/ac97: add support for volume control

Combine output volume with Master and PCM registers values.
Use default values in mixer_reset ().
Set volume on post-load to update backend values.

v4,v5:
- fix some code style

Signed-off-by: Marc-Andr? Lureau <marcandre.lureau@redhat.com>
Signed-off-by: malc <av1474@comtv.ru>
11 years agohw/ac97: the volume mask is not only 0x1f
Marc-André Lureau [Tue, 17 Apr 2012 12:32:38 +0000 (14:32 +0200)]
hw/ac97: the volume mask is not only 0x1f

It's a case by case (see Table 66. AC ?97 Baseline Audio Register Map)

Signed-off-by: Marc-Andr? Lureau <marcandre.lureau@redhat.com>
Signed-off-by: malc <av1474@comtv.ru>
11 years agohw/ac97: remove USE_MIXER code
Marc-André Lureau [Tue, 17 Apr 2012 12:32:37 +0000 (14:32 +0200)]
hw/ac97: remove USE_MIXER code

That code doesn't compile. The interesting bits for volume control are
going to be rewritten in the following patch.

Signed-off-by: Marc-Andr? Lureau <marcandre.lureau@redhat.com>
Signed-off-by: malc <av1474@comtv.ru>
11 years agoMerge "[Title] fix a bug in getter function & add some trace log [Type] BugFix [Modul...
yeongkyoon lee [Fri, 10 Aug 2012 02:54:12 +0000 (11:54 +0900)]
Merge "[Title] fix a bug in getter function & add some trace log [Type] BugFix [Module] Emulator / Overlay [Priority] Major [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

11 years agoMerge "[Title] modified interrupt routine using QEMU bottom half. and fix a bug that...
yeongkyoon lee [Fri, 10 Aug 2012 02:54:02 +0000 (11:54 +0900)]
Merge "[Title] modified interrupt routine using QEMU bottom half. and fix a bug that intterrupt mismatch [Type] BugFix & Enhancement [Module] Emulator / Camera(QEMU) [Priority] Major [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

11 years ago[Title] fix a bug in getter function & add some trace log
jinhyung.jo [Fri, 10 Aug 2012 02:47:51 +0000 (11:47 +0900)]
[Title] fix a bug in getter function & add some trace log
[Type] BugFix
[Module] Emulator / Overlay
[Priority] Major
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] modified interrupt routine using QEMU bottom half. and fix a bug that intterr...
jinhyung.jo [Fri, 10 Aug 2012 02:46:54 +0000 (11:46 +0900)]
[Title] modified interrupt routine using QEMU bottom half. and fix a bug that intterrupt mismatch
[Type] BugFix & Enhancement
[Module] Emulator / Camera(QEMU)
[Priority] Major
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title]Support auto proxy
munkyu.im [Fri, 10 Aug 2012 02:44:41 +0000 (11:44 +0900)]
[Title]Support auto proxy
[Type]Enhancement
[Module]
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] second parameter of pstrcpy which is for string length value was wrong.
Kitae Kim [Mon, 6 Aug 2012 09:18:06 +0000 (18:18 +0900)]
[Title] second parameter of pstrcpy which is for string length value was wrong.
[Type] bug fix
[Module] emulator
[Priority] Major
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years agoMerge "[Title] source clean-up for qemu coding style. [Type] [Module] emulator [Prior...
yeongkyoon lee [Thu, 9 Aug 2012 04:52:44 +0000 (13:52 +0900)]
Merge "[Title] source clean-up for qemu coding style. [Type] [Module] emulator [Priority] [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

11 years ago[Title] source clean-up for qemu coding style.
Kitae Kim [Thu, 9 Aug 2012 04:11:20 +0000 (13:11 +0900)]
[Title] source clean-up for qemu coding style.
[Type]
[Module] emulator
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] added boilerplate
giwoong.kim [Wed, 8 Aug 2012 12:32:09 +0000 (21:32 +0900)]
[Title] added boilerplate
[Type] release
[Module] Emulator / skin
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] added null check code
giwoong.kim [Wed, 8 Aug 2012 12:29:35 +0000 (21:29 +0900)]
[Title] added null check code
[Type] feature
[Module] Emulator / skin
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years agoMerge "[Title] modified touch range in lcd [Type] feature [Module] Emulator / touch...
yeongkyoon lee [Wed, 8 Aug 2012 07:18:49 +0000 (16:18 +0900)]
Merge "[Title] modified touch range in lcd [Type] feature [Module] Emulator / touch [Priority] major [Jira#] [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

11 years ago[Title] modified touch range in lcd
giwoong.kim [Wed, 8 Aug 2012 07:16:55 +0000 (16:16 +0900)]
[Title] modified touch range in lcd
[Type] feature
[Module] Emulator / touch
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] add getting java path routine (for 64bit windows)
jihye kim [Wed, 8 Aug 2012 07:15:34 +0000 (16:15 +0900)]
[Title] add getting java path routine (for 64bit windows)
[Type] work
[Module] emulator manager
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years agoMerge "[Title] Upgrade codec module as async i/o and modify source according to codin...
yeongkyoon lee [Wed, 8 Aug 2012 03:08:32 +0000 (12:08 +0900)]
Merge "[Title] Upgrade codec module as async i/o and modify source according to coding convention. [Type] enhancement [Module] emulator / codec [Priority] major [CQ#] [Redmine#] Interal Issue. [Problem] While testing HTML5 VideoTag, emulator could be locked up. [Cause] sychronous i/o and use fixed offset for mapped memory. [Solution] async i/o and flexible offset. [TestCase]" into develop

11 years ago[Title] Upgrade codec module as async i/o and modify source according to coding conve...
Kitae Kim [Wed, 8 Aug 2012 02:21:33 +0000 (11:21 +0900)]
[Title] Upgrade codec module as async i/o and modify source according to coding convention.
[Type] enhancement
[Module] emulator / codec
[Priority] major
[CQ#]
[Redmine#] Interal Issue.
[Problem] While testing HTML5 VideoTag, emulator could be locked up.
[Cause] sychronous i/o and use fixed offset for mapped memory.
[Solution] async i/o and flexible offset.
[TestCase]

11 years ago[Title] optimize a maru_rotozoom
giwoong.kim [Tue, 7 Aug 2012 12:21:53 +0000 (21:21 +0900)]
[Title] optimize a maru_rotozoom
[Type] feature
[Module] Emulator / skin
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] sdl_rotozoom was replaced by maru_rotozoom
giwoong.kim [Tue, 7 Aug 2012 07:47:31 +0000 (16:47 +0900)]
[Title] sdl_rotozoom was replaced by maru_rotozoom
[Type] feature
[Module] Emulator / skin
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause] anti-aliasing
[Solution]
[TestCase]

11 years ago[Title] modified zoom filter mask in maru_rotozoom
giwoong.kim [Mon, 6 Aug 2012 08:45:37 +0000 (17:45 +0900)]
[Title] modified zoom filter mask in maru_rotozoom
[Type] feauture
[Module] Emulator / skin
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution] c00 c01 c10 c11
[TestCase]

11 years ago[Title] convert asyncExec to syncExec
giwoong.kim [Mon, 6 Aug 2012 06:23:02 +0000 (15:23 +0900)]
[Title] convert asyncExec to syncExec
[Type] bugfix
[Module] Emulator / skin
[Priority] major
[Jira#] N_SE-6421
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] support multi-touch up to 6
giwoong.kim [Mon, 6 Aug 2012 03:21:20 +0000 (12:21 +0900)]
[Title] support multi-touch up to 6
[Type] feature
[Module] Emulator / touch
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution] 3 -> 6
[TestCase]

11 years ago[Title] added maru_rotozomm function
giwoong.kim [Fri, 3 Aug 2012 12:30:09 +0000 (21:30 +0900)]
[Title] added maru_rotozomm function
[Type] feature
[Module] Emulator / skin
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause] anti-aliasing
[Solution]
[TestCase] RockPaperScissors

11 years ago[Title] deleted unnecessary files
giwoong.kim [Fri, 3 Aug 2012 08:24:49 +0000 (17:24 +0900)]
[Title] deleted unnecessary files
[Type] enhancement
[Module] Emulator / skin
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] update package version
jihye kim [Wed, 1 Aug 2012 11:01:55 +0000 (20:01 +0900)]
[Title] update package version
[Type] work
[Module] emulaotr
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] disable popup menu when dragging in skin
giwoong.kim [Wed, 1 Aug 2012 09:36:09 +0000 (18:36 +0900)]
[Title] disable popup menu when dragging in skin
[Type] feature
[Module] Emulator
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] disable popup menu when dragging in lcd
giwoong.kim [Wed, 1 Aug 2012 09:09:52 +0000 (18:09 +0900)]
[Title] disable popup menu when dragging in lcd
[Type] feature
[Module] Emulator / skin
[Priority] major
[Jira#] N_SE-5572
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] Fix grammar error on build.xml
giwoong.kim [Wed, 1 Aug 2012 07:55:33 +0000 (16:55 +0900)]
[Title] Fix grammar error on build.xml
[Type]
[Module]
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

Change-ID: Icf25fd2525e9fc0e6f186f70b20e838c006c8278

Conflicts:

tizen/src/skin/client/build.xml

11 years ago[Title] update package version and check compile errors while running dibs.
Kitae Kim [Tue, 31 Jul 2012 11:23:54 +0000 (20:23 +0900)]
[Title] update package version and check compile errors while running dibs.
[Type] enhancement
[Module] emulator / dibs
[Priority] major
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] support windows-64 and update package version.
Kitae Kim [Fri, 27 Jul 2012 06:31:06 +0000 (15:31 +0900)]
[Title] support windows-64 and update package version.
[Type]
[Module] emulator / dibs
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] gl capability check bug fix.
Sangjin Kim [Tue, 31 Jul 2012 09:41:05 +0000 (18:41 +0900)]
[Title] gl capability check bug fix.
[Type] bug fix
[Module] opengl
[Priority]
[CQ#]
[Redmine#]
[Problem] glo_init() return value was not checked.
[Cause] If glo_init() failed, emulator crashed.
[Solution] glo_init() return value check.
[TestCase]

11 years ago[Title] update package version to test all of os packages.
Kitae Kim [Fri, 27 Jul 2012 15:00:59 +0000 (00:00 +0900)]
[Title] update package version to test all of os packages.
[Type]
[Module] emulator / dibs
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] Fix keyboard build issue on Mac
Jun Tian [Thu, 19 Jul 2012 08:30:12 +0000 (16:30 +0800)]
[Title] Fix keyboard build issue on Mac
[Type]
[Module]
[Priority]
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] Add configuration of building ffmpeg on Mac OSX
Jun Tian [Thu, 19 Jul 2012 08:22:02 +0000 (16:22 +0800)]
[Title] Add configuration of building ffmpeg on Mac OSX
[Type]
[Module] Codec
[Priority]
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution] FFmpeg need to be compiled by clang on Mac OSX 10.7
[TestCase]

11 years ago[Title] Fixed a problem that first frames of preview are distorted.
jinhyung.jo [Fri, 27 Jul 2012 08:50:03 +0000 (17:50 +0900)]
[Title] Fixed a problem that first frames of preview are distorted.
[Type] Enhancement
[Module] Emulator / camera
[Priority] Major
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] changed name of jni header & etc
giwoong.kim [Fri, 27 Jul 2012 08:46:42 +0000 (17:46 +0900)]
[Title] changed name of jni header & etc
[Type] feature
[Module] Emulator / jni
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause] support mac
[Solution]
[TestCase]

11 years ago[Title] Apply temporary patch to acpi(PM) for x86_64 host
syeon.hwang [Fri, 27 Jul 2012 07:15:35 +0000 (16:15 +0900)]
[Title] Apply temporary patch to acpi(PM) for x86_64 host
[Type]
[Module]
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title]fix checking multi instance on windows
munkyu.im [Fri, 27 Jul 2012 07:07:45 +0000 (16:07 +0900)]
[Title]fix checking multi instance on windows
[Type]Bugfix
[Module]
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years agoRevert "[Title]fix multi instance problem on windows"
munkyu.im [Fri, 27 Jul 2012 03:44:44 +0000 (12:44 +0900)]
Revert "[Title]fix multi instance problem on windows"

This reverts commit 38b9a35ce7bdb3b8ea14b8db24090519a66e5332.

11 years ago[Title]fix multi instance problem on windows
munkyu.im [Fri, 27 Jul 2012 03:16:48 +0000 (12:16 +0900)]
[Title]fix multi instance problem on windows
[Type]
[Module]
[Priority]
[CQ#] N_SE-5564
[Redmine#]
[Problem]when do double click twice quickly, 2 emulator instances are started.
[Cause]
[Solution]
[TestCase]

11 years ago[Title] added java lib path option to exe cmd of swt
giwoong.kim [Fri, 27 Jul 2012 03:06:54 +0000 (12:06 +0900)]
[Title] added java lib path option to exe cmd of swt
[Type] feature
[Module] Emulator / skin
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause] support mac
[Solution]
[TestCase]

11 years ago[Title] update package version to upload the lastest binary into package server.
Kitae Kim [Fri, 27 Jul 2012 02:56:48 +0000 (11:56 +0900)]
[Title] update package version to upload the lastest binary into package server.
[Type]
[Module] emulator / dibs
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] added loadLibrary
giwoong.kim [Thu, 26 Jul 2012 13:46:14 +0000 (22:46 +0900)]
[Title] added loadLibrary
[Type] feature
[Module] Emulator / skin
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause] support mac
[Solution]
[TestCase]

11 years ago[Title] using java reflection in setTopMost()
giwoong.kim [Thu, 26 Jul 2012 09:11:09 +0000 (18:11 +0900)]
[Title] using java reflection in setTopMost()
[Type] feature
[Module] Emulator / skin
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause] support mac
[Solution]
[TestCase]

11 years ago[Title] modified define
giwoong.kim [Thu, 26 Jul 2012 08:49:07 +0000 (17:49 +0900)]
[Title] modified define
[Type] enhancement
[Module] Emulator
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] using java reflection in getWindowHandleId()
giwoong.kim [Thu, 26 Jul 2012 05:37:26 +0000 (14:37 +0900)]
[Title] using java reflection in getWindowHandleId()
[Type] feature
[Module] Emulator / skin
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause] support mac
[Solution]
[TestCase]

11 years ago[Title] added CONFIG_MARU define
giwoong.kim [Thu, 26 Jul 2012 03:13:49 +0000 (12:13 +0900)]
[Title] added CONFIG_MARU define
[Type]
[Module] Emulator
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] add dibs build script for MAC
Kitae Kim [Thu, 26 Jul 2012 02:34:56 +0000 (11:34 +0900)]
[Title] add dibs build script for MAC
[Type]
[Module] emulator / dibs
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] Do not make ".so" on mac
syeon.hwang [Thu, 26 Jul 2012 02:34:17 +0000 (11:34 +0900)]
[Title] Do not make ".so" on mac
[Type]
[Module]
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] modified arch define & etc
giwoong.kim [Wed, 25 Jul 2012 11:32:37 +0000 (20:32 +0900)]
[Title] modified arch define & etc
[Type] feature
[Module] Emulator
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] added jni files
giwoong.kim [Mon, 23 Jul 2012 02:54:27 +0000 (11:54 +0900)]
[Title] added jni files
[Type] feature
[Module] Emulator / skin
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] Fix grammar error on build.xml
syeon.hwang [Wed, 1 Aug 2012 07:12:59 +0000 (16:12 +0900)]
[Title] Fix grammar error on build.xml
[Type]
[Module]
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] Modify env variable name to find jni.h
syeon.hwang [Wed, 1 Aug 2012 07:00:38 +0000 (16:00 +0900)]
[Title] Modify env variable name to find jni.h
[Type]
[Module]
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] update package version and check compile errors while running dibs.
Kitae Kim [Tue, 31 Jul 2012 11:23:54 +0000 (20:23 +0900)]
[Title] update package version and check compile errors while running dibs.
[Type] enhancement
[Module] emulator / dibs
[Priority] major
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] support windows-64 and update package version.
Kitae Kim [Fri, 27 Jul 2012 06:31:06 +0000 (15:31 +0900)]
[Title] support windows-64 and update package version.
[Type]
[Module] emulator / dibs
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

11 years ago[Title] gl capability check bug fix.
Sangjin Kim [Tue, 31 Jul 2012 09:41:05 +0000 (18:41 +0900)]
[Title] gl capability check bug fix.
[Type] bug fix
[Module] opengl
[Priority]
[CQ#]
[Redmine#]
[Problem] glo_init() return value was not checked.
[Cause] If glo_init() failed, emulator crashed.
[Solution] glo_init() return value check.
[TestCase]

12 years agoMerge "[Title] Fixed a problem that first frames of preview are distorted. [Type...
yeongkyoon lee [Sat, 28 Jul 2012 02:21:18 +0000 (11:21 +0900)]
Merge "[Title] Fixed a problem that first frames of preview are distorted. [Type] Enhancement [Module] Emulator / camera [Priority] Major [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

12 years ago[Title] update package version to test all of os packages.
Kitae Kim [Fri, 27 Jul 2012 15:00:59 +0000 (00:00 +0900)]
[Title] update package version to test all of os packages.
[Type]
[Module] emulator / dibs
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

12 years ago[Title] Fix keyboard build issue on Mac
Jun Tian [Thu, 19 Jul 2012 08:30:12 +0000 (16:30 +0800)]
[Title] Fix keyboard build issue on Mac
[Type]
[Module]
[Priority]
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

12 years ago[Title] Add configuration of building ffmpeg on Mac OSX
Jun Tian [Thu, 19 Jul 2012 08:22:02 +0000 (16:22 +0800)]
[Title] Add configuration of building ffmpeg on Mac OSX
[Type]
[Module] Codec
[Priority]
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution] FFmpeg need to be compiled by clang on Mac OSX 10.7
[TestCase]

12 years ago[Title] Fixed a problem that first frames of preview are distorted.
jinhyung.jo [Fri, 27 Jul 2012 08:50:03 +0000 (17:50 +0900)]
[Title] Fixed a problem that first frames of preview are distorted.
[Type] Enhancement
[Module] Emulator / camera
[Priority] Major
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

12 years ago[Title] changed name of jni header & etc
giwoong.kim [Fri, 27 Jul 2012 08:46:42 +0000 (17:46 +0900)]
[Title] changed name of jni header & etc
[Type] feature
[Module] Emulator / jni
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause] support mac
[Solution]
[TestCase]

12 years agoMerge "[Title] Apply temporary patch to acpi(PM) for x86_64 host [Type] [Module]...
syeon.hwang [Fri, 27 Jul 2012 07:37:04 +0000 (16:37 +0900)]
Merge "[Title] Apply temporary patch to acpi(PM) for x86_64 host [Type] [Module] [Priority] [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

12 years ago[Title] Apply temporary patch to acpi(PM) for x86_64 host
syeon.hwang [Fri, 27 Jul 2012 07:15:35 +0000 (16:15 +0900)]
[Title] Apply temporary patch to acpi(PM) for x86_64 host
[Type]
[Module]
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

12 years ago[Title]fix checking multi instance on windows
munkyu.im [Fri, 27 Jul 2012 07:07:45 +0000 (16:07 +0900)]
[Title]fix checking multi instance on windows
[Type]Bugfix
[Module]
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

12 years agoRevert "[Title]fix multi instance problem on windows"
munkyu.im [Fri, 27 Jul 2012 03:44:44 +0000 (12:44 +0900)]
Revert "[Title]fix multi instance problem on windows"

This reverts commit 38b9a35ce7bdb3b8ea14b8db24090519a66e5332.

12 years agoMerge "[Title]fix multi instance problem on windows [Type] [Module] [Priority] [CQ...
yeongkyoon lee [Fri, 27 Jul 2012 03:25:03 +0000 (12:25 +0900)]
Merge "[Title]fix multi instance problem on windows [Type] [Module] [Priority] [CQ#] N_SE-5564 [Redmine#] [Problem]when do double click twice quickly, 2 emulator instances are started. [Cause] [Solution] [TestCase]" into develop

12 years ago[Title]fix multi instance problem on windows
munkyu.im [Fri, 27 Jul 2012 03:16:48 +0000 (12:16 +0900)]
[Title]fix multi instance problem on windows
[Type]
[Module]
[Priority]
[CQ#] N_SE-5564
[Redmine#]
[Problem]when do double click twice quickly, 2 emulator instances are started.
[Cause]
[Solution]
[TestCase]

12 years ago[Title] added java lib path option to exe cmd of swt
giwoong.kim [Fri, 27 Jul 2012 03:06:54 +0000 (12:06 +0900)]
[Title] added java lib path option to exe cmd of swt
[Type] feature
[Module] Emulator / skin
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause] support mac
[Solution]
[TestCase]

12 years ago[Title] update package version to upload the lastest binary into package server.
Kitae Kim [Fri, 27 Jul 2012 02:56:48 +0000 (11:56 +0900)]
[Title] update package version to upload the lastest binary into package server.
[Type]
[Module] emulator / dibs
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

12 years ago[Title] added loadLibrary
giwoong.kim [Thu, 26 Jul 2012 13:46:14 +0000 (22:46 +0900)]
[Title] added loadLibrary
[Type] feature
[Module] Emulator / skin
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause] support mac
[Solution]
[TestCase]

12 years ago[Title] using java reflection in setTopMost()
giwoong.kim [Thu, 26 Jul 2012 09:11:09 +0000 (18:11 +0900)]
[Title] using java reflection in setTopMost()
[Type] feature
[Module] Emulator / skin
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause] support mac
[Solution]
[TestCase]

12 years ago[Title] modified define
giwoong.kim [Thu, 26 Jul 2012 08:49:07 +0000 (17:49 +0900)]
[Title] modified define
[Type] enhancement
[Module] Emulator
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

12 years agoMerge "[Title] using java reflection in getWindowHandleId() [Type] feature [Module...
yeongkyoon lee [Thu, 26 Jul 2012 08:25:23 +0000 (17:25 +0900)]
Merge "[Title] using java reflection in getWindowHandleId() [Type] feature [Module] Emulator / skin [Priority] major [Jira#] [Redmine#] [Problem] [Cause] support mac [Solution] [TestCase]" into develop

12 years agoMerge "[Title] added CONFIG_MARU define [Type] [Module] Emulator [Priority] major...
yeongkyoon lee [Thu, 26 Jul 2012 07:45:12 +0000 (16:45 +0900)]
Merge "[Title] added CONFIG_MARU define [Type] [Module] Emulator [Priority] major [Jira#] [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

12 years agoMerge "[Title] add dibs build script for MAC [Type] [Module] emulator / dibs [Priorit...
yeongkyoon lee [Thu, 26 Jul 2012 07:44:27 +0000 (16:44 +0900)]
Merge "[Title] add dibs build script for MAC [Type] [Module] emulator / dibs [Priority] [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

12 years agoMerge "[Title] Do not make ".so" on mac [Type] [Module] [Priority] [CQ#] [Redmine...
yeongkyoon lee [Thu, 26 Jul 2012 07:44:13 +0000 (16:44 +0900)]
Merge "[Title] Do not make ".so" on mac [Type] [Module] [Priority] [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

12 years ago[Title] using java reflection in getWindowHandleId()
giwoong.kim [Thu, 26 Jul 2012 05:37:26 +0000 (14:37 +0900)]
[Title] using java reflection in getWindowHandleId()
[Type] feature
[Module] Emulator / skin
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause] support mac
[Solution]
[TestCase]

12 years ago[Title] added CONFIG_MARU define
giwoong.kim [Thu, 26 Jul 2012 03:13:49 +0000 (12:13 +0900)]
[Title] added CONFIG_MARU define
[Type]
[Module] Emulator
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

12 years ago[Title] add dibs build script for MAC
Kitae Kim [Thu, 26 Jul 2012 02:34:56 +0000 (11:34 +0900)]
[Title] add dibs build script for MAC
[Type]
[Module] emulator / dibs
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

12 years ago[Title] Do not make ".so" on mac
syeon.hwang [Thu, 26 Jul 2012 02:34:17 +0000 (11:34 +0900)]
[Title] Do not make ".so" on mac
[Type]
[Module]
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

12 years ago[Title] modified arch define & etc
giwoong.kim [Wed, 25 Jul 2012 11:32:37 +0000 (20:32 +0900)]
[Title] modified arch define & etc
[Type] feature
[Module] Emulator
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

12 years agoSquashed commit of the following:
jihye kim [Wed, 25 Jul 2012 10:42:07 +0000 (19:42 +0900)]
Squashed commit of the following:

commit 133a7eef3e6b40aa990f4f348cfb98913e0d2fd3
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Wed Jul 25 17:45:35 2012 +0900

    [Title] include "config-host.h"
    [Type] bugfix
    [Module] Emulator
    [Priority] major
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 295862ff9f77c22403fedfa6207dc0cec51de498
Author: kt <kt@ubuntu.(none)>
Date:   Wed Jul 25 01:20:10 2012 -0700

    [Title] modify dibs build script and configure for x86_64
    [Type] enhancement
    [Module] emulator / dibs
    [Priority] normal
    [CQ#]
    [Redmine#]
    [Problem] JAVA_HOME env variable has to be set before building package.
    [Cause]
    [Solution]
    [TestCase]

commit 8ddd8eff7de63c67a0c3ef34b35047cb05231109
Merge: cc2823e 0599c4f
Author: yeongkyoon lee <yeongkyoon.lee@samsung.com>
Date:   Wed Jul 25 16:55:49 2012 +0900

    Merge "[Title]  Modify build.xml to use JAVA_HOME env [Type] [Module] [Priority] [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

commit 0599c4faae22bb4542b604497eade77197e56585
Author: syeon.hwang <syeon.hwang@samsung.com>
Date:   Wed Jul 25 16:51:36 2012 +0900

    [Title]  Modify build.xml to use JAVA_HOME env
    [Type]
    [Module]
    [Priority]
    [CQ#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit cc2823e3d63e2c14c2f2d11a9c15dde464e64411
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Wed Jul 25 16:28:11 2012 +0900

    [Title] changed the file permissions
    [Type]
    [Module] Emulator
    [Priority] minor
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution] chmod -x
    [TestCase]

commit 25c782c438963092045955f4ee06ada712a9e67d
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Wed Jul 25 16:21:39 2012 +0900

    [Title] disable multitouch in qemu side when USE_SHM & etc
    [Type] feature
    [Module] Emulator
    [Priority] major
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause] supprot mac
    [Solution]
    [TestCase]

commit 3f52a3ec9e07f21c4eaaa2dd6c1a1c8b1e5f5157
Merge: a5988e8 bc04a66
Author: yeongkyoon lee <yeongkyoon.lee@samsung.com>
Date:   Wed Jul 25 16:15:17 2012 +0900

    Merge "[Title] Add JNI compilation roution to ant script [Type] [Module] [Priority] [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

commit bc04a66d928766cc4d98b9310a499cd8280172c6
Author: syeon.hwang <syeon.hwang@samsung.com>
Date:   Wed Jul 25 16:06:05 2012 +0900

    [Title] Add JNI compilation roution to ant script
    [Type]
    [Module]
    [Priority]
    [CQ#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit a5988e8bee8997072bd70da3b90bf7477a76a2a3
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Wed Jul 25 14:26:35 2012 +0900

    [Title] added mac configuration & etc
    [Type] feature
    [Module] Emualtor
    [Priority] major
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause] support mac
    [Solution]
    [TestCase]

commit c797da84a5b4671e8bbecc619b34f24eeff0e6b3
Author: jinhyung.jo <jinhyung.jo@samsung.com>
Date:   Wed Jul 25 11:58:30 2012 +0900

    [Title] fixed a bug does not open the camera device on Windows XP
    [Type] Bug Fix
    [Module] Emulator / Camera
    [Priority] Minor
    [CQ#] N_SE-4727
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit d35892e9e4bcbd0d4b0240e7d2916739471455ab
Author: munkyu.im <munkyu.im@samsung.com>
Date:   Tue Jul 24 16:38:04 2012 +0900

    [Title] fix proxy server setting
    [Type]  Bugfix
    [Module] Emulator / network
    [Priority]
    [Jira#]
    [Redmine#]
    [Problem]when try to set the same proxy to every proxy server on windows
    [Cause]
    [Solution]
    [TestCase]

commit 972a600be9fbccd8ca29e958e22e0eb5931d99fc
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Tue Jul 24 15:30:33 2012 +0900

    [Title] added EmulatorSdlSkin & EmulatorShmSkin
    [Type] feature
    [Module] Emulator / skin
    [Priority] major
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause] supprot mac
    [Solution]
    [TestCase]

commit a13d9bd51bd2437ef092d24d4079d426b2d62885
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Tue Jul 24 15:28:37 2012 +0900

    [Title] define USE_SHM for shared memory
    [Type] feature
    [Module] Emulator / vga
    [Priority] major
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause] support mac
    [Solution]
    [TestCase]

commit 1afeecd45eb3d518ea411a8fd08bf52f827bfd22
Author: munkyu.im <munkyu.im@samsung.com>
Date:   Mon Jul 23 21:01:20 2012 +0900

    [Title]apply ftp, socket and  https proxy server on windows and ubuntu
    [Type]Enhancement
    [Module]
    [Priority]
    [CQ#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit a400d7711047399f2a7f834265ed02ded963e5d5
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Mon Jul 23 20:03:05 2012 +0900

    [Title] disintegration of maruskin_display_init()
    [Type] feature
    [Module] Emulator / skin
    [Priority] major
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 4a167aa9cea3c78b2f407c1a1ce1247dd7eb11fc
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Mon Jul 23 15:38:59 2012 +0900

    [Title] define DT_MARU for display type
    [Type]
    [Module] Emulator / display
    [Priority] major
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 69ba32e0f78ba1ae9880c23bd4e82d1638c48bad
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Mon Jul 23 11:54:27 2012 +0900

    [Title] added jni files
    [Type] feature
    [Module] Emulator / skin
    [Priority] major
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 1ecbeba4ff932af0607b3e9c835c16954db2247d
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Mon Jul 23 11:29:29 2012 +0900

    [Title] extract some codes which platform comparing
    [Type] feature
    [Module] Emulator / skin
    [Priority] minor
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 2f65d6464f3024b0708dc09526c7de7341313023
Author: jihye kim <jihye1128.kim@samsung.com>
Date:   Mon Jul 23 11:32:21 2012 +0900

    [Title] change 'CreateFile' to 'qemu-open' for windows path error
    [Type] work
    [Module] qemu(emulator-x86)
    [Priority] major
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 97268175bec845d2c63f7fb10be07af8237df17e
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Sat Jul 21 13:31:34 2012 +0900

    [Title] modified log
    [Type]
    [Module] Emulator
    [Priority] minor
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit ad310a6fcd39ca65e1962c11a6608ce3436bf034
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Sat Jul 21 10:15:21 2012 +0900

    [Title] host gl screen off
    [Type]
    [Module] Emulator / skin
    [Priority]
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit d7249dcc88aecb2a6e6b5d34d91462e8dc6204c1
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Fri Jul 20 21:26:39 2012 +0900

    [Title] Fix several build issues on Mac
    [Type]
    [Module] Emulator
    [Priority]
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit ed7bac1606f36fc0cb0f5ea9400869297f8623e6
Author: Jun Tian <jun.j.tian@intel.com>
Date:   Thu Jun 14 14:42:58 2012 +0800

    [Title] Fix conflicting types for uint16 on Mac
    [Type]
    [Module] Emulator
    [Priority] normal
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution] It's an upstream bug on Mac. It resolved by defining _UINT16, then int16_t will be defined in other header file.
    [TestCase]

commit dc2f79a381a913144a9c8a48a46b02db3a13f6e6
Author: Jun Tian <jun.j.tian@intel.com>
Date:   Thu Jun 14 11:16:06 2012 +0800

        [Type] Fix AT_EMPTY_PATH undefined issue on Ubuntu 12.04
        [Module] Emulator
        [Priority]
        [Jira#]
        [Redmine#]
        [Problem]
        [Cause]
        [Solution] It's bug on Ubuntu 12.04, this patch is picked from Ubuntu qemu
        [TestCase]

commit 68e744bd906e286fb65ecc4e10acb80230b913df
Author: jihye kim <jihye1128.kim@samsung.com>
Date:   Fri Jul 20 20:12:11 2012 +0900

    [Title] copy <GL/wglext.h> to "GL/wglext.h" (file does not exist to the mingw)
    [Type] work
    [Module] emulator
    [Priority] major
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 7c3fe49109d074f6860c08210aac04b16d6a9f60
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Fri Jul 20 18:08:58 2012 +0900

    [Title] delete ffmpeg binary when make distclean
    [Type] enhancement
    [Module] Emulator / build
    [Priority] minor
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 6dc34b00bacf67a51b373acfc3c4e51fa16cddf1
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Fri Jul 20 16:44:11 2012 +0900

    [Title] version up
    [Type] release
    [Module] Emulator
    [Priority]
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution] 1.3.4
    [TestCase]

commit 59bb7888db135bd2931d36773cd45223b1e7f68f
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Fri Jul 20 16:41:11 2012 +0900

    [Title] renamed skin folder
    [Type] feature
    [Module] Emulator / skin
    [Priority] major
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 2972b3d19bcdca5493d1468bfe9b7483e5d5cb06
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Fri Jul 20 15:51:53 2012 +0900

    [Title] version up
    [Type] release
    [Module] Emulator
    [Priority]
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution] 1.3.3
    [TestCase]

commit 851c8ebafe9340dc4f015b23741dd7925cb8f9a9
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Fri Jul 20 15:48:51 2012 +0900

    [Title] deleted skin files of 3key & added dbi version
    [Type] feature
    [Module] Emulator / skin
    [Priority] major
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit e6fe1d80d029a9d77d6ff586dc58cea684f85c5f
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Fri Jul 20 14:55:36 2012 +0900

    [Title] redefine arch macro in some line
    [Type]
    [Module] Emulator
    [Priority] minor
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 1954f00deb2415486b0193cafd7a8c32c9f5913d
Author: syeon.hwang <syeon.hwang@samsung.com>
Date:   Fri Jul 20 13:04:11 2012 +0900

    [Title] Align indentation in dibs script
    [Type]
    [Module]
    [Priority]
    [CQ#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 84f5cad8c96e5160b88931318891f6a2c421a081
Author: syeon.hwang <syeon.hwang@samsung.com>
Date:   Fri Jul 20 13:01:44 2012 +0900

    [Title] Fix some path related bugs, fix mis-cleaning in build.xml
    [Type]
    [Module]
    [Priority]
    [CQ#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 02de445e8e5b6668699ee9664082570712c15954
Merge: 5dd3fae 9cd6edf
Author: yeongkyoon lee <yeongkyoon.lee@samsung.com>
Date:   Thu Jul 19 21:48:06 2012 +0900

    Merge "[Title]fixed mistake code [Type]Bugfix [Module]qemu [Priority]Major [Jira#] // Jira Issue Number [Redmine#]  // Redmine Isuue Number [Problem]  // Problem Description [Cause]  // Cause Description [Solution] // Solution Description [TestCase]  // Executed the test-target (How to)" into develop

commit 9cd6edf763985737ba7fc9ec41959826316fef5e
Author: sungmin ha <sungmin82.ha@samsung.com>
Date:   Thu Jul 19 21:42:46 2012 +0900

    [Title]fixed mistake code
    [Type]Bugfix
    [Module]qemu
    [Priority]Major
    [Jira#] // Jira Issue Number
    [Redmine#]  // Redmine Isuue Number
    [Problem]  // Problem Description
    [Cause]  // Cause Description
    [Solution] // Solution Description
    [TestCase]  // Executed the test-target (How to)

commit 5dd3fae199d3b8da460bf7be379c11e1b83b064d
Merge: 05cc176 0b76d7a
Author: yeongkyoon lee <yeongkyoon.lee@samsung.com>
Date:   Thu Jul 19 21:28:11 2012 +0900

    Merge "[Title] remove redundant configure. [Type] [Module] emulator / dibs [Priority] [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

commit 0b76d7ad0a047e8b0cef872a22bf1ca86d8f3f97
Author: Kitae Kim <kt920.kim@samsung.com>
Date:   Thu Jul 19 21:25:43 2012 +0900

    [Title] remove redundant configure.
    [Type]
    [Module] emulator / dibs
    [Priority]
    [CQ#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 05cc176a0ca0432d956b28c55c2c68306884ed8a
Merge: 2fd2271 7c919e5
Author: yeongkyoon lee <yeongkyoon.lee@samsung.com>
Date:   Thu Jul 19 21:24:47 2012 +0900

    Merge "[Title] modify build scripts. [Type] [Module] emulator / build [Priority] [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

commit 2fd227161f3a9b260b503c52529946ca8848bc34
Merge: 2ffa841 4589dc3
Author: yeongkyoon lee <yeongkyoon.lee@samsung.com>
Date:   Thu Jul 19 21:24:38 2012 +0900

    Merge "[Title] bounds checking when multi-touch B [Type] bugfix [Module] Emulator / touch [Priority] minor [Jira#] [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

commit 7c919e5c8187e38d6231edbf8df06a2ab6096e6f
Author: Kitae Kim <kt920.kim@samsung.com>
Date:   Thu Jul 19 21:22:28 2012 +0900

    [Title] modify build scripts.
    [Type]
    [Module] emulator / build
    [Priority]
    [CQ#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 4589dc30bfcc4010535192651cb289d3b2ac54bc
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Thu Jul 19 21:22:02 2012 +0900

    [Title] bounds checking when multi-touch B
    [Type] bugfix
    [Module] Emulator / touch
    [Priority] minor
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 2ffa841fd47ea6052b2c8fe6ec35a22d11dc8038
Author: sungmin ha <sungmin82.ha@samsung.com>
Date:   Thu Jul 19 21:12:42 2012 +0900

    [Title]modified for changed sdcard path
    [Type]Enhancement
    [Module]qemu
    [Priority]Major
    [Jira#] // Jira Issue Number
    [Redmine#]  // Redmine Isuue Number
    [Problem]  // Problem Description
    [Cause]  // Cause Description
    [Solution] // Solution Description
    [TestCase]  // Executed the test-target (How to)

commit 89fdc97eeab3b9fd3482b3ba27d8b71c189366f4
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Thu Jul 19 17:35:16 2012 +0900

    [Title] emulator host lcd screen surface support gl
    [Type] feature
    [Module] Emulator / skin
    [Priority] major
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 5cc7a15dbf1593821dda40426fc3855fa99fb024
Author: Kitae Kim <kt920.kim@samsung.com>
Date:   Thu Jul 19 15:50:31 2012 +0900

    [Title] Modify OS name for dibs script beause the rules have been changed.
    [Type]
    [Module] emulator / dibs
    [Priority]
    [CQ#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit db29dda25c27a48c1cf0a24f107533aeaab6f37a
Author: syeon.hwang <syeon.hwang@samsung.com>
Date:   Thu Jul 19 13:32:35 2012 +0900

    [Title] Modify build.xml, Makefiles, dibs build scripts to remove swt.jar
    [Type]
    [Module]
    [Priority]
    [CQ#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 3102370c83830531bae85e45857e50ebeade7c65
Author: syeon.hwang <syeon.hwang@samsung.com>
Date:   Thu Jul 19 12:48:41 2012 +0900

    [Title] Modify classpath for eclispe development support
    [Type]
    [Module]
    [Priority]
    [CQ#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 36fa20eab7c21b1bc09a2974a64e55f6930c6ae3
Author: syeon.hwang <syeon.hwang@samsung.com>
Date:   Thu Jul 19 12:46:50 2012 +0900

    [Title] Remove swt.jar from git
    [Type]
    [Module]
    [Priority]
    [CQ#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 912f064d6626cd920e6d3293f2d35acdc63f8652
Author: Kitae Kim <kt920.kim@samsung.com>
Date:   Thu Jul 19 12:10:01 2012 +0900

    [Title] modify dibs script because dibs rules have been changed.
    [Type]
    [Module] emulator / dibs
    [Priority]
    [CQ#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit dc13b0be7bd221051f4509f808ddbe0a1491267d
Merge: 4c97ac2 f38b03d
Author: yeongkyoon lee <yeongkyoon.lee@samsung.com>
Date:   Thu Jul 19 00:07:42 2012 +0900

    Merge "[Title] modify build script for dibs to support new sdk dirs. [Type] [Module] emulator / dibs [Priority] normal [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

commit f38b03d35254e21314716187d028aa5c7d768170
Author: Kitae Kim <kt920.kim@samsung.com>
Date:   Wed Jul 18 23:09:36 2012 +0900

    [Title] modify build script for dibs to support new sdk dirs.
    [Type]
    [Module] emulator / dibs
    [Priority] normal
    [CQ#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 4c97ac2e6168715621671e203315e819b7ed09b0
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Wed Jul 18 23:41:34 2012 +0900

    [Title] rollback skinPath
    [Type] feature
    [Module] Emulator / skin
    [Priority] major
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit d85392c624366c538a273e42202dec02f3fd650a
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Wed Jul 18 22:38:03 2012 +0900

    [Title] modified getSdbPath() for mac
    [Type] bugfix
    [Module] Emulator / menu
    [Priority] major
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit c865090b62eb6cf59367d057fe23d959985d1767
Merge: e54cf7a 11a85df
Author: yeongkyoon lee <yeongkyoon.lee@samsung.com>
Date:   Wed Jul 18 22:29:49 2012 +0900

    Merge "[Title] off OpenGl screen [Type] bugfix [Module] Emulator / lcd [Priority] [Jira#] [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

commit e54cf7a10d6124f674d9442f96d396aac345148b
Merge: 71786a0 89d5f2c
Author: yeongkyoon lee <yeongkyoon.lee@samsung.com>
Date:   Wed Jul 18 22:28:32 2012 +0900

    Merge "[Title] Add i386 and x86_64 to .gitignore [Type] [Module] [Priority] [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

commit 11a85df6478b74c856ccffed6b6e7cb48bf8df22
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Wed Jul 18 22:20:52 2012 +0900

    [Title] off OpenGl screen
    [Type] bugfix
    [Module] Emulator / lcd
    [Priority]
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 89d5f2c86fedd958e5d531c43d9d2ba30ae1bd5f
Author: syeon.hwang <syeon.hwang@samsung.com>
Date:   Wed Jul 18 22:12:33 2012 +0900

    [Title] Add i386 and x86_64 to .gitignore
    [Type]
    [Module]
    [Priority]
    [CQ#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 71786a0ff374d4a0dbea12550f14d002b96f7125
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Wed Jul 18 21:56:47 2012 +0900

    [Title] modified default skin path
    [Type] feature
    [Module] Emulator / skin
    [Priority] major
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution] tizen-sdk/platforms/tizen1.0/emulator-resources/skins
    [TestCase]

commit edb4347e67e23232d02b552b790d847d686530e7
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Wed Jul 18 21:27:16 2012 +0900

    [Title] modified pakage script
    [Type] release
    [Module] Emulator
    [Priority] major
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit a79de7e34e52ec4f4a3d3a988812579bac806926
Merge: bcf8248 7f1e276
Author: yeongkyoon lee <yeongkyoon.lee@samsung.com>
Date:   Wed Jul 18 22:02:40 2012 +0900

    Merge "[Title] Modify build related files for SDK refactoring [Type] [Module] [Priority] [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

commit 7f1e276bd3b403aabff5b70c8e2bb6c92f342835
Author: syeon.hwang <syeon.hwang@samsung.com>
Date:   Wed Jul 18 21:58:40 2012 +0900

    [Title] Modify build related files for SDK refactoring
    [Type]
    [Module]
    [Priority]
    [CQ#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit bcf8248538791cf46e7c90edf0bed19c025277ac
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Wed Jul 18 20:52:16 2012 +0900

    [Title] changed sdb path
    [Type] feature
    [Module] Emulator / menu
    [Priority] major
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution] tizen-sdk/tools/sdb
    [TestCase]

commit 93aa708edb0939cda65fab3b8ed44238c2c5f1e4
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Wed Jul 18 20:45:37 2012 +0900

    [Title] set initial value to touchscreen buf
    [Type] bugfix
    [Module] Emultor / touch
    [Priority] major
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit b1175bcc82a2f800f831dc47359e1a881f9eb7a9
Author: Kitae Kim <kt920.kim@samsung.com>
Date:   Wed Jul 18 17:55:04 2012 +0900

    [Title] remove FFmpeg binaries and change FFmpeg configure for static linking on Windows.
    [Type]
    [Module] emulator / codec
    [Priority] normal
    [CQ#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 364904a80c4666210b2b2a7845ca9d43612836af
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Tue Jul 17 22:40:19 2012 +0900

    [Title] added doxgen to code of touchscreen device
    [Type]
    [Module] Emulator / touch
    [Priority] minor
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 648695cb95ef0f030118b474f3389c4b72cdf491
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Mon Jul 16 20:35:47 2012 +0900

    [Title] check the capability of gl before lcd drawing
    [Type] enhancement
    [Module] Emulator / skin
    [Priority]
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause] support
    [Solution]
    [TestCase]

commit 2652af870093e901653cc6776016d61125d8efd8
Author: jihye kim <jihye1128.kim@samsung.com>
Date:   Mon Jul 16 16:03:18 2012 +0900

    [Title] add open gl for windows
    [Type] enhancement
    [Module] emulator
    [Priority] major
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit af2acacf591776c142d9d09f2fcfbaf909ab3568
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Mon Jul 16 14:50:18 2012 +0900

    [Title] removed dependency on sdl in HW key event handling
    [Type]
    [Module] Emulator
    [Priority]
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution] using mloop
    [TestCase]

commit d16036035bab100fb7f19821f0f327a8f8d725c5
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Fri Jul 13 21:24:43 2012 +0900

    [Title] clear multi-touch when sdl init
    [Type] enhancement
    [Module] Emulator / touch
    [Priority] major
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 011e4976f7d8fcd0020ccdac430fb6be45894d66
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Fri Jul 13 20:58:20 2012 +0900

    [Title] changed padding size of multi-touch point region as proportionally emulator window scale
    [Type] enhancement
    [Module] Emulator / touch
    [Priority] major
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause] usability
    [Solution]
    [TestCase]

commit f7961be82371a98b7e2c1a787094c1c4706d5dd1
Author: Kitae Kim <kt920.kim@samsung.com>
Date:   Fri Jul 13 17:49:04 2012 +0900

    [Title] source clean up for codec module and add error pop-up routine when host sharing path was missing.
    [Type] bug fix
    [Module] emulator / codec,error handle
    [Priority] normal
    [CQ#]
    [Redmine#]
    [Problem] emulator is not launched. It seem that emulator-manager has a problem to run emulator.
    [Cause] when host sharing path you selected is missing, emulator is terminated during booting without any pop-up message.
    [Solution] An error messsage will be popped up.
    [TestCase]

commit 55497975935ee2d7892c7f0ae8fc49bd0a902ee6
Merge: 61484bd 7669fc9
Author: yeongkyoon lee <yeongkyoon.lee@samsung.com>
Date:   Fri Jul 13 15:08:36 2012 +0900

    Merge "[Title] version update to 1.2.107 [Type] [Module] [Priority] [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

commit 7669fc9cbf9ce2632fd14a373b0f89146a07fc42
Author: Sooyoung Ha <yoosah.ha@samsung.com>
Date:   Fri Jul 13 14:54:06 2012 +0900

    [Title] version update to 1.2.107
    [Type]
    [Module]
    [Priority]
    [CQ#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 61484bde2aa4e874ea6a2b4eb46a267c3658360f
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Fri Jul 13 14:41:33 2012 +0900

    [Title] convert sdl surface to opengl surface
    [Type] enhancement
    [Module] Emulator / skin
    [Priority] major
    [Jira#] BOT-821, N_SE-1482, S1-4376
    [Redmine#]
    [Problem]
    [Cause] anti-aliasing
    [Solution] using OpenGL
    [TestCase]

commit 3c6f8aaa4b7b15afe130ca2dd6a6e52c29b899a8
Merge: 7ea7033 d159f17
Author: yeongkyoon lee <yeongkyoon.lee@samsung.com>
Date:   Thu Jul 12 20:31:57 2012 +0900

    Merge "[Title] Add DNS support for host has local DNS cache/DNS server [Type] [Module] [Priority] [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

commit d159f17042a3fffb4a753f84fd6fce235f40a8a0
Author: syeon.hwang <syeon.hwang@samsung.com>
Date:   Thu Jul 12 20:28:09 2012 +0900

    [Title] Add DNS support for host has local DNS cache/DNS server
    [Type]
    [Module]
    [Priority]
    [CQ#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 7ea7033398f63a5da47ff3c6fee881be67198dcc
Merge: 05d8d07 dced2b3
Author: yeongkyoon lee <yeongkyoon.lee@samsung.com>
Date:   Thu Jul 12 20:18:29 2012 +0900

    Merge "[Title] Fix build failure on some new ubuntu host [Type] [Module] [Priority] [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

commit 05d8d07c8a61e393b4fbda68a24729b3fbec969c
Merge: f91792a 957874b
Author: yeongkyoon lee <yeongkyoon.lee@samsung.com>
Date:   Thu Jul 12 20:17:52 2012 +0900

    Merge "[Title] Fixed some bugs for camera on Windows. [Type] Bug Fix [Module] Emulatorj / Multimedia / Camera [Priority] Major [CQ#] N_SE-3228, N_SE-1664 [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

commit dced2b31122a0d0809acb7f4529af5a3c9d82fac
Author: syeon.hwang <syeon.hwang@samsung.com>
Date:   Thu Jul 12 20:12:23 2012 +0900

    [Title] Fix build failure on some new ubuntu host
    [Type]
    [Module]
    [Priority]
    [CQ#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 957874bf4f6e782d0ae08d21cb0833b0d9b35206
Author: jinhyung.jo <jinhyung.jo@samsung.com>
Date:   Thu Jul 12 20:06:37 2012 +0900

    [Title] Fixed some bugs for camera on Windows.
    [Type] Bug Fix
    [Module] Emulatorj / Multimedia / Camera
    [Priority] Major
    [CQ#] N_SE-3228, N_SE-1664
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit f91792a428670beb389fc336b7504fa6461095b8
Author: syeon.hwang <syeon.hwang@samsung.com>
Date:   Thu Jul 12 20:03:35 2012 +0900

    [Title] Apply SSE2 instruction patch from QEMU 1.1
    [Type]
    [Module]
    [Priority]
    [CQ#]
    [Redmine#]
    [Problem]
    [Cause]
    [Solution]
    [TestCase]

commit 4b7ace653cdb65bf05e52d8be31b1d7b01c9c02f
Author: giwoong.kim <giwoong.kim@samsung.com>
Date:   Thu Jul 12 10:49:38 2012 +0900

    [Title] sdl init refactoring
    [Type] enhancement
    [Module] Emulator / sdl
    [Priority] minor
    [Jira#]
    [Redmine#]
    [Problem]
    [Cause] prepare to OpenGL conditions
    [Solution]
    [TestCase]

12 years ago[Title] include "config-host.h"
giwoong.kim [Wed, 25 Jul 2012 08:45:35 +0000 (17:45 +0900)]
[Title] include "config-host.h"
[Type] bugfix
[Module] Emulator
[Priority] major
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

12 years ago[Title] modify dibs build script and configure for x86_64
kt [Wed, 25 Jul 2012 08:20:10 +0000 (01:20 -0700)]
[Title] modify dibs build script and configure for x86_64
[Type] enhancement
[Module] emulator / dibs
[Priority] normal
[CQ#]
[Redmine#]
[Problem] JAVA_HOME env variable has to be set before building package.
[Cause]
[Solution]
[TestCase]

12 years agoMerge "[Title] Modify build.xml to use JAVA_HOME env [Type] [Module] [Priority]...
yeongkyoon lee [Wed, 25 Jul 2012 07:55:49 +0000 (16:55 +0900)]
Merge "[Title]  Modify build.xml to use JAVA_HOME env [Type] [Module] [Priority] [CQ#] [Redmine#] [Problem] [Cause] [Solution] [TestCase]" into develop

12 years ago[Title] Modify build.xml to use JAVA_HOME env
syeon.hwang [Wed, 25 Jul 2012 07:51:36 +0000 (16:51 +0900)]
[Title]  Modify build.xml to use JAVA_HOME env
[Type]
[Module]
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

12 years ago[Title] changed the file permissions
giwoong.kim [Wed, 25 Jul 2012 07:28:11 +0000 (16:28 +0900)]
[Title] changed the file permissions
[Type]
[Module] Emulator
[Priority] minor
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution] chmod -x
[TestCase]