[prev in list] [next in list] [prev in thread] [next in thread] 

List:       helix-clientapps-dev
Subject:    CN: [Clientapps-dev] CR: No longer needed to list eclipsable rom
From:       <xiaolin.lliu () nokia ! com>
Date:       2008-11-21 16:52:40
Message-ID: D9ECB8614A9A1340BC8944F8C8B3116906D4FDB7 () daebe102 ! NOE ! Nokia ! com
[Download RAW message or body]

 

-----Original Message-----
From: ext Eric Hyche [mailto:ehyche@real.com] 
Sent: Friday, November 21, 2008 10:18 AM
To: Lliu Xiaolin (Nokia-D-MSW/Dallas); clientapps-dev@helixcommunity.org
Subject: RE: [Clientapps-dev] CR: No longer needed to list eclipsable
rom files in stub sis file on S60 5.0 and onwards 

Looks good.

=======================================
Eric Hyche (ehyche@real.com)
Principal Engineer
RealNetworks, Inc.


>-----Original Message-----
>From: clientapps-dev-bounces@helixcommunity.org 
>[mailto:clientapps-dev-bounces@helixcommunity.org] On Behalf Of 
>xiaolin.lliu@nokia.com
>Sent: Wednesday, November 19, 2008 12:15 PM
>To: clientapps-dev@helixcommunity.org
>Subject: [Clientapps-dev] CR: No longer needed to list eclipsable rom 
>files in stub sis file on S60 5.0 and onwards
>
>
>
>
>
>
>"Nokia submits this code under the terms of a commercial contribution 
>agreement with RealNetworks, and I am authorized to contribute this
code under said agreement."
>
>Modified by: xiaolin.lliu@nokia.com
>
>Reviewed by:
>
>Date: 11/17/2008
>
>Project: SymbianMmf_wm
>
>ErrorId: N/A
>
>Synopsis: IAD support for 5.0
>
>Overview: It is no longer needed to list eclipsable rom files in stub 
>sis file on S60 5.0 and onwards
>
>
>Files Modified:
>/cvsroot/ribosome/build/umakecf/symbian.cf
>/cvsroot/clientapps/symbianMmf/audiocontroller/controllersis
>/cvsroot/clientapps/symbianMmf/videocontroller/MmfSis
>/cvsroot/clientapps/symbianMmf/wmvextcontroller/WmvExtMmfSis
>
>New files added:
>None.
>
>Image Size and Heap Use impact: no major impact Module Release testing
-  Yes Test case(s) Added : No.
>Platforms and Profiles Build Verified: helix-client-s60-50-mmf-mdf-dsp
>branch: hxclient_2_1_0_cayennes
>platform: symbian-91-armv5
>target(s): symbianMmf_wm
>
>Branch: hxclient_2_1_0_cayennes
>
>DIFF:
>Index: symbian.cf
>===================================================================
>RCS file: /cvsroot/ribosome/build/umakecf/symbian.cf,v
>retrieving revision 1.65
>diff -u -r1.65 symbian.cf
>--- symbian.cf  20 Oct 2008 19:16:12 -0000      1.65
>+++ symbian.cf  12 Nov 2008 19:31:56 -0000
>@@ -582,20 +582,21 @@
>             f.write("\n;Optional logofile\n")
>             # <logofile>,<mimetype>[,<targetname>]\n")
>             #
="file\mylogo.jpg","image/jpeg","\public\logos\mylogo.jpg"
>-
>+
>         # format files
>-        f.write("\n;Files to install\n")
>-        for (source, dest, args) in self.files:
>-            if args:
>-                args = ", %s" % string.join(args, ",")
>-            else:
>-                args = ""
>-
>-            if (stubsis == 1):
>-                dest = "z%s" % (dest[1:])
>-                f.write("\"\" - \"%s\"%s\n" % (dest, args))
>-            else:
>-                f.write("\"%s\" - \"%s\"%s\n" % (source, dest, args))
>+        if not project.IsDefined
('HELIX_CONFIG_GENERATE_MINIMAL_STUBSIS'):
>+               f.write("\n;Files to install\n")
>+               for (source, dest, args) in self.files:
>+                   if args:
>+                       args = ", %s" % string.join(args, ",")
>+                   else:
>+                       args = ""
>+
>+                   if (stubsis == 1):
>+                       dest = "z%s" % (dest[1:])
>+                       f.write("\"\" - \"%s\"%s\n" % (dest, args))
>+                   else:
>+                       f.write("\"%s\" - \"%s\"%s\n" % (source, dest,
>+ args))
>
>         f.close()
>
>Index: controllersis
>===================================================================
>RCS file: 
>/cvsroot/clientapps/symbianMmf/audiocontroller/controllersis,v
>retrieving revision 1.1.2.5
>diff -u -r1.1.2.5 controllersis
>--- controllersis       26 Aug 2008 16:10:32 -0000      1.1.2.5
>+++ controllersis       12 Nov 2008 19:32:18 -0000
>@@ -201,7 +201,8 @@
> ## Generate Pkg file for Upgrades
> pkg.GenerateUpgradePackage()
>
>-## Generate Pkg file for Upgrades
>+## Generate stubsis Pkg file for Upgrades
>+project.AddDefines('HELIX_CONFIG_GENERATE_MINIMAL_STUBSIS')
> pkg.GenerateStubSISPackage()
> ##
> ##  Copy file not needed for MMP builds
>
>Index: MmfSis
>===================================================================
>RCS file: /cvsroot/clientapps/symbianMmf/videocontroller/MmfSis,v
>retrieving revision 1.2.2.9
>diff -u -r1.2.2.9 MmfSis
>--- MmfSis      26 Aug 2008 16:13:11 -0000      1.2.2.9
>+++ MmfSis      12 Nov 2008 19:32:06 -0000
>@@ -210,7 +210,8 @@
> ## Generate Pkg file for Upgrades
> pkg.GenerateUpgradePackage()
>
>-## Generate Pkg file for Upgrades
>+## Generate stubsis Pkg file for Upgrades
>+project.AddDefines('HELIX_CONFIG_GENERATE_MINIMAL_STUBSIS')
> pkg.GenerateStubSISPackage()
> ##
> ##  Copy file not needed for MMP builds
>
>Index: WmvExtMmfSis
>===================================================================
>RCS file: 
>/cvsroot/clientapps/symbianMmf/wmvextcontroller/WmvExtMmfSis,v
>retrieving revision 1.1.2.6
>diff -u -r1.1.2.6 WmvExtMmfSis
>--- WmvExtMmfSis        26 Aug 2008 16:14:15 -0000      1.1.2.6
>+++ WmvExtMmfSis        12 Nov 2008 19:32:01 -0000
>@@ -233,7 +233,8 @@
> ## Generate Pkg file for Upgrades
> pkg.GenerateUpgradePackage()
>
>-## Generate Pkg file for Upgrades
>+## Generate stubsis Pkg file for Upgrades
>+project.AddDefines('HELIX_CONFIG_GENERATE_MINIMAL_STUBSIS')
> pkg.GenerateStubSISPackage()
> ##
> ##  Copy file not needed for MMP builds
>
>



_______________________________________________
Clientapps-dev mailing list
Clientapps-dev@helixcommunity.org
http://lists.helixcommunity.org/mailman/listinfo/clientapps-dev

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic