PPCGeeks

PPCGeeks (http://forum.ppcgeeks.com/index.php)
-   CDMA Diamond Development (http://forum.ppcgeeks.com/forumdisplay.php?f=67)
-   -   Custom VGA OEM Requests ....Get them here! Updated 6/13/2009 (http://forum.ppcgeeks.com/showthread.php?t=47505)

rstoyguy 04-19-2009 05:48 PM

Re: Custom VGA OEM Requests ....Get them here! Updated 4/13/2009
 
Here is Spb Mobile Shell v3.0.0.6362

OEM_Spb_MobileShell_v3.0.0.6362 ............................... Spb Mobile Shell v3.0.0 build 6362 (OEM Notes)

OEM_SpbMobileShell_v3_0_0_6411 ............................... Spb Mobile Shell v3.0.0 build 6411 (OEM Notes)

Notes:
THIS IS NOT AN OEM YOU CAN JUST DROP IN YOUR KITCHEN!!!

Here is the sniplet from the RGU on how to set this up for your rom:
Code:

;===================================================================================================
;===================================================================================================
;===================================================================================================
; Notes:
; Included is the basic setup for my roms
;
;
; To setup up your rom:
; 1. Flash your rom
; 2. install MS via .cab
; 3. Set it up how you want
; 4. Export the key [HKEY_LOCAL_MACHINE\Software\Spb Software House 2]
; 5. Replace the remainder of this file with your exported Key
; 6. Flash and Enjoy!
;
; Don't forget the two blank lines at the end of the file!
;
;===================================================================================================
;===================================================================================================
;===================================================================================================

Edit:
When you export the key, you will most likely have a build error with the following key:
Code:

[HKEY_LOCAL_MACHINE\Software\Spb Software House 2\Spb Mobile Shell\Menu\Programs\Icons]
"\Windows\Start Menu\Programs\Games"=dword:00000068

NO PROBLEM! Change *ALL* the values in this one key to have "Double Slashes" like so:
Code:

[HKEY_LOCAL_MACHINE\Software\Spb Software House 2\Spb Mobile Shell\Menu\Programs\Icons]
"\\Windows\\Start Menu\\Programs\\Games"=dword:00000068


rstoyguy 04-20-2009 09:03 AM

Re: Custom VGA OEM Requests ....Get them here! Updated 4/13/2009
 
OEM_WeatherPanel_v2.5.1_2009a_VGA ...................... Weather Panel v2.5.1 VGA (thread link)

A great Today screen plugin for those manila-free roms!

http://i483.photobucket.com/albums/r...uy/today31.jpg

Yeah, it's the middle plugin...

mwalt2 04-20-2009 09:24 AM

Re: Custom VGA OEM Requests ....Get them here! Updated 4/20/2009
 
I have a what is probably dumb question, but how do I use a PACKAGE_Filename and a PACKAGE_Filename_0409 to make a working OEM (get the option.xml for buildOS)? I've tried adding both folders to OEMizer, but I get a "Unhandled exception has occured in your application.......Access to path C:\PathToFile is denied" error. Thanks.

rstoyguy 04-20-2009 09:29 AM

Re: Custom VGA OEM Requests ....Get them here! Updated 4/20/2009
 
Quote:

Originally Posted by mwalt2 (Post 861763)
I have a what is probably dumb question, but how do I use a PACKAGE_Filename and a PACKAGE_Filename_0409 to make a working OEM (get the option.xml for buildOS)? I've tried adding both folders to OEMizer, but I get a "Unhandled exception has occured in your application.......Access to path C:\PathToFile is denied" error. Thanks.

Create your option.xml as a text file in each directory. Copy the following code into that file and then change the following highlighted in orange. Here is what I recently did for the following package:

Quote:

<?xml version="1.0" encoding="UTF-16" standalone="yes"?>
<Items>
<Item name="PACKAGE_Topaz_Notification_Enhancement_Custom_0409" group="Apps" checked="True">
<Tip></Tip>
<Guid type="p">63814ebf-ecf7-41b6-93ab-3854c0cd8f51</Guid>
</Item>
</Items>
Where the "item name" is your directory name, and the "GUID" is the name of the DSM file.

boggsie 04-20-2009 09:45 AM

Re: Custom VGA OEM Requests ....Get them here! Updated 4/20/2009
 
After wondering aimlessly for quite a few months (I still don't like my Touch Diamond as much as I liked my Vogue, but I am holding out long enough to move to a Touch Pro 2), I am back to using PPCKitchen ... and I tried for 90 minutes last night to make an OEM of User Configuration that would work with PPCKitchen. Do you use a hex'd version of the application or do you use the registry entries to point to "Internal Storage" ?

Thanks and best regards,
-boggsie

rstoyguy 04-20-2009 09:58 AM

Re: Custom VGA OEM Requests ....Get them here! Updated 4/20/2009
 
Quote:

Originally Posted by boggsie (Post 861790)
After wondering aimlessly for quite a few months (I still don't like my Touch Diamond as much as I liked my Vogue, but I am holding out long enough to move to a Touch Pro 2), I am back to using PPCKitchen ... and I tried for 90 minutes last night to make an OEM of User Configuration that would work with PPCKitchen. Do you use a hex'd version of the application or do you use the registry entries to point to "Internal Storage" ?

Thanks and best regards,
-boggsie

Building off the stock rom, but I think the only thing in there really is the following regedit:


Quote:

<!--20080605, diamond_c issse 2170, add default saving location for PIE -->
<characteristic type="HKCU\Software\Microsoft\Internet Explorer\Main\Default storage location">
<parm name="All Files" value="\Internal Storage" datatype="string"/>
</characteristic>
In the original rom file: mxipupdate_oemoperators_103.provxml and should be in the ppckitchen's file as well...

mwalt2 04-20-2009 10:05 AM

Re: Custom VGA OEM Requests ....Get them here! Updated 4/20/2009
 
Quote:

Originally Posted by rstoyguy (Post 861770)
Create your option.xml as a text file in each directory. Copy the following code into that file and then change the following highlighted in orange. Here is what I recently did for the following package:



Where the "item name" is your directory name, and the "GUID" is the name of the DSM file.

Thanks, that is even the OEM package I'm trying to use :). Do you just put both folders (the PACKAGE_Topaz_Notification_Enhancement_Custom and PACKAGE_Topaz_Notification_Enhancement_Custom_0409 ) into the OEM folder after adding the option.xml and select both files in buildOS? Is there a way to combine them and only get 1 option in buildOS? Also, while I'm already asking fun questions...how do you translate .mui files? It's not as simple as renaming it to 0409 for WWE is it?

rstoyguy 04-20-2009 10:10 AM

Re: Custom VGA OEM Requests ....Get them here! Updated 4/20/2009
 
Quote:

Originally Posted by mwalt2 (Post 861812)
Thanks, that is even the OEM package I'm trying to use :). Do you just put both folders (the PACKAGE_Topaz_Notification_Enhancement_Custom and PACKAGE_Topaz_Notification_Enhancement_Custom_0409 ) into the OEM folder after adding the option.xml and select both files in buildOS? Is there a way to combine them and only get 1 option in buildOS? Also, while I'm already asking fun questions...how do you translate .mui files? It's not as simple as renaming it to 0409 for WWE is it?

Depends on the kitchen your using and what's in the DSM. I'd just create one for each one. You don't want to translate the mui file, find a not so older package of the same and replace the mui language files I think... According to jmztaylor, I'm not much into that kinda stuff myself.

rkmoray 04-20-2009 12:00 PM

Re: Custom VGA OEM Requests ....Get them here! Updated 4/13/2009
 
Quote:

Originally Posted by rstoyguy (Post 860288)
Here is Spb Mobile Shell v3.0.0.6362

OEM_Spb_MobileShell_v3.0.0.6362 ............................... Spb Mobile Shell v3.0.0 build 6362 (OEM Notes)

Notes:
THIS IS NOT AN OEM YOU CAN JUST DROP IN YOUR KITCHEN!!!

Here is the sniplet from the RGU on how to set this up for your rom:
Code:

;===================================================================================================
;===================================================================================================
;===================================================================================================
; Notes:
; Included is the basic setup for my roms
;
;
; To setup up your rom:
; 1. Flash your rom
; 2. install MS via .cab
; 3. Set it up how you want
; 4. Export the key [HKEY_LOCAL_MACHINE\Software\Spb Software House 2]
; 5. Replace the remainder of this file with your exported Key
; 6. Flash and Enjoy!
;
; Don't forget the two blank lines at the end of the file!
;
;===================================================================================================
;===================================================================================================
;===================================================================================================

Edit:
When you export the key, you will most likely have a build error with the following key:
Code:

[HKEY_LOCAL_MACHINE\Software\Spb Software House 2\Spb Mobile Shell\Menu\Programs\Icons]
"\Windows\Start Menu\Programs\Games"=dword:00000068

NO PROBLEM! Change *ALL* the values in this one key to have "Double Slashes" like so:
Code:

[HKEY_LOCAL_MACHINE\Software\Spb Software House 2\Spb Mobile Shell\Menu\Programs\Icons]
"\\Windows\\Start Menu\\Programs\\Games"=dword:00000068


Thanks, but there is no cab. How do I install it?

rstoyguy 04-20-2009 12:05 PM

Re: Custom VGA OEM Requests ....Get them here! Updated 4/13/2009
 
Quote:

Originally Posted by rkmoray (Post 862031)
Thanks, but there is no cab. How do I install it?

This thread is where I share ingredients for you and other chefs to make their own roms... My way of giving back to the community....
Head over to the software forum to find the cab in this thread: SPB Mobile Shell 3.0!!


All times are GMT -4. The time now is 01:46 AM.

Powered by vBulletin® ©2000 - 2025, Jelsoft Enterprises Ltd.
©2012 - PPCGeeks.com


Content Relevant URLs by vBSEO 3.6.0