View Full Version : [OS][WM6.5.5] Latest Releases (23563), Porting, Tutorials, Tools, VM, etc.
Da_G
5th August 2009, 02:26 AM
Post 2 (http://forum.xda-developers.com/showpost.php?p=4268137&postcount=2): Virtual Memory and Windows Mobile 6.5
Post 3 (http://forum.xda-developers.com/showpost.php?p=4268137&postcount=3): Registry tips for Windows Mobile 6.5
Post 4 (http://forum.xda-developers.com/showpost.php?p=4268137&postcount=4): Tutorial on language porting with Visual Kitchen
(new!) Post 5 (http://forum.xda-developers.com/showpost.php?p=4268166&postcount=5): Description of all packages found in Rollup
(new!) Post 6 (http://forum.xda-developers.com/showpost.php?p=5857555&postcount=6): Description of the different branches of WM development.
ace10134's Post (http://forum.xda-developers.com/showpost.php?p=4215191&postcount=10): Tutorial on porting a new build to "old style" kitchen
+ Que PPC's Post (http://forum.xda-developers.com/showthread.php?t=533423): Tutorial on porting a new build to Ervius Visual Kitchen
indagroove's Post (http://www.everythingdiamond.info/showpost.php?p=2879&postcount=2): Tutorial on porting xip.bin for Ervius Visual Kitchen
rgb-rgb's .pdf (http://forum.xda-developers.com/attachment.php?attachmentid=214099&d=1249757530): Tutorial on porting XIP/SYS to Da_G's Raphael Kitchen
CRACING's (http://forum.xda-developers.com/showpost.php?p=5156078&postcount=9681): Placing an Custom Image in the About Dialog/Window
WM 6.5.5 Build 23563 - All Langs, All DPI, All Resolutions (http://hotfile.com/dl/38737001/3bfd145/WM6550-23563-Rollup-All-Pkgs.rar.html)
Edit: If this download link is dead, then search this thread or the stickied build thread for the build number and mirror.
Language Localization Packages
0401 SAU Arabic المملكة العربية السعودية
0403 ESP Catalan España
0404 CHT Chinese Traditional 台灣
0405 CSY Czech Česká republika
0406 DAN Danish Danmark
0407 DEU German Deutschland
0408 ELL Greek Ellas
0409 USA English United States
040B FIN Finnish Suomen tasavalta
040C FRA French République française
040D HEB Hebrew מְדִינַת יִשְׂרָאֵל
0410 ITA Italian Repubblica Italiana
0411 JPN Japanese 日本
0412 KOR Korean 한국
0413 NLD Dutch Nederland
0414 NOR Norwegian Bokmål
0415 PLK Polish Polska
0416 PTB Portuguese Brasil
0419 RUS Russian Россия
041D SVD Swedish Sverige
0804 CHS Chinese Simplified 中华人民共和国
0816 PTG Portugese Portugal
0c0a ESN Spanish España
images taken down to comply with DMCA notice
This thread is dedicated to porting past/current devices to WM 6.5/Windows Phone and future versions, The latest release of XIP/SYS, issues that might come up when porting it to pre-WM6.5 devices, compatibility with "OEM" Packages, etc.
This is intended as a followup to the thread Here (http://forum.xda-developers.com/showthread.php?t=474406), which contains a mountain of useful info, attachments (http://forum.xda-developers.com/misc.php?do=showattachments&t=474406), etc, but is getting very long in the tooth and is device-specific, whereas this thread will be used for all devices. (that one was anyway!)
The Native Kernel Partition (XIP)
This is generally Partition 2 in the Partition table (following ULDR, and preceeding OS). It is split up into 2 Major ROM Packages, and several possible Minor ROM Packages. OEMXIPKernel makes up the device-specific part of NK, and MSXIPKernel makes up the device-agnostic part of NK. When porting from your current WM version to 6.5, you want to keep OEMXIPKernel as is, and only change the MSXIPKernel files and modules. An important module to consider in OEMXIPKernel is nk.exe - this module is the Native Kernel for the device and handles Virtual Memory, which has changed for WM 6.5, and is discussed in the following post.
You can check to see if you have a 6.5 Native Kernel by dumping xip.bin, and opening nk.exe/s000 in a hex editor. Search for the ASCII string "platform" - near this string should be the build number this nk.exe was compiled against. WM 6.5 builds began around 21100, and nk.exe compiled against them can take advantage of the new memory model discussed below. WM 6.1 and previous builds will be <=21058. nk.exe compiled against these builds will not be able to use the new memory model.
The Operating System Partition (imgfs.bin)
In your kitchen, you want to use the new /SYS from the same build that matches the MSXIPKernel if possible. Occasionally the builds do not match up, this is normal. The /OEM folder generally does not change, but when coming from WM 6.1, you will need to update your initflashfiles.dat with the new shortcuts and folders introduced in WM 6.5.
Da_G
5th August 2009, 02:27 AM
Virtual Memory in Windows Mobile 6.5 and how it differs from 6.1 and 6.0, important when porting to a device that does not have a WM 6.5 Native Kernel
What is Virtual Memory? (http://en.wikipedia.org/wiki/Virtual_memory)
Virtual Memory as it applies to the Windows CE 5.2 Kernel
There's a 32 bit address space available - a total of 4GB potential memory on WM. This total 4gb address space is split in half - 2gb to the Kernel, 2gb to the User. Kernel address space is only accessible by processes/threads with kernel level access, whereas user address space is accessible by all processes/threads. The user address space is from 0x00000000 to 0x7FFFFFFF, and the kernel address space is from 0x80000000 to 0xFFFFFFFF.
The user address space is split into 64 slots of 32mb a piece. (64x32=2048, or 2gb) - The first 33 slots (slot 0 and 1-32) are used for processes, and the remaining slots for object store, memory mapped files, and resources.
Each slot is easy to visualize in hex, you just increment a digit. Slot 0: 0x00000000 to 0x01FFFFFF, Slot 1: 0x02000000 to 0x03FFFFFF, Slot 2: 0x04000000 to 0x05FFFFFF, and so on. Each process gets assigned it's own slot, there are 33 total, minus the kernel process which is always running, so that's where you get the 32 process limit (which is always lower in practice, since there are always processes running in windows mobile to support the OS) - this is also the reason for a 32mb limit per process - you can see that's all the address space available in one slot.
How does that all apply to our situation with modules? When you create a module, you are telling Windows Mobile that you want that module to be memory-mapped, so that each time it loads, it's loading to the same, known area of ram - saving space in slot 0 - this is done on the computer-side, during 'cooking' and is the job of wmreloc, g'reloc, bepe's Platform Rebuilder, etc. Virtual allocations are aligned to a 64KB border, so if you memory map a .dll that's only 3Kb large, it's still going to eat up 64KB of memory space.
There are also pages that can be allocated to these slots, that are aligned to a 4KB boundry, and process/general allocations that take place during normal operation. The way the system handles this is that modules allocated on rom build-time (modules we allocate with g'reloc et. al.) are allocated from top-down (for slot 1 for example, starting at 0x03FFFFFF for the first module, taking up space to the nearest 64kb boundry, then the next module, in a line down to the 0x02000000 address, which is the beginning of the slot) - General allocations that take place during normal system operations are allocated in the remaining space, from the bottom-up (so again with slot 1 as an example, starting at 0x02000000 and ending at 0x03FFFFFF) - As you fill up these slots more and more with modules, that leaves less space for windows to dynamically allocate other, general allocations, which can, and does result in out of memory errors (even when the device has plenty of physical memory left, it cannot address this memory when virtual memory is full)
Here's where the kicker comes in for the difference between 6.0/6.1/6.5 - There are a total of 4 slots that can be used for module allocation, slot 0, 1, 60, and 61. 63 is also available to modules that contain no code (resource only modules, like .mui's)
WinMo 6 could allocate slot 0, 1 - (in order of 1 first, 0 last) for a total of 64mb of vm space for modules/files (and the running process is always mapped to slot 0, so once you encroach on this memory space, you are removing available memory to each application running) - you can see how tight this is.
WinMo 6.1 improved on this by opening up slot 60 and 61 (now the allocation order is 61, 60, 1, 0) - but modules could not be allocated here, only files. So for our relocation tools, this was essentially no change. (still only slot 1, 0 for modules) WM 6.1 also introduces the process initvmmap.exe in the MSXIPKernel, NK partition (xip.bin). This process draws a map of all virtual memory, and uses the following registry key from the boot hive (boot.hv):
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo]
[HKEY_LOCAL_MACHINE\System\Loader\ModuleInfo\dllnam e.dll]
"filename.exe"=dword:1
"filename2.exe"=dword:1
This tells the system that the module dllname.dll is only required when filename.exe is running, or filename2.exe is running - and whenever these processes are not running, the virtual memory space is available, and can be dynamically allocated to by the system.
WinMo 6.5 improves on this by opening up Slots 60 and 61 to Modules - yielding an extra 64mb of potential Virtual Memory space. (the allocation order is now 1, 61, 60, 0 for modules, 60, 61, 0 for files) - In order for the Kernel to recognize these new Slots as being mappable for Modules, it must be updated to the 6.5 codebase. This is where the 6.5 nk.exe comes in, and why it's so important.
Profiling Virtual Memory is an important job for an OEM - the less available in Slot 0, the sooner a device will kick back out of memory errors (even if it's not truly out of memory) - and the worse the user experience will be. Some ROM's I have seen have less than 20MB available in slot 0 (and the user experience is as bad as you might imagine) - There are many more intricacies to the whole process - like balancing the load between services.exe and device.exe to best utilize the 32mb VM space available to each, and storing all resource-only dlls as modules so they can be allocated to Slot 63, etc.
This is also why it's important that the re-alloc tools be updated to support the new slots - g'reloc will not ever try to allocate modules to slot 60/61 because as far as it's aware, this is not possible. For the moment I know of 2 tools that will realloc to slot 60/61, wmreloc 2.0, and bepe's Platform Rebuilder (used by ervius vk)
What's the take-home message about VM?
Keep Slot 0 as free as possible. WM 6.5 NK allows you to use more modules without taking up SLOT 0 space, so allows more flexibility to use modules (which are faster to load)
Da_G
5th August 2009, 02:27 AM
Registry tips for WM 6.5
* Start menu icons
Sizes (for png icons):
240x240 96 DPI 45x45
240x320 96 DPI 45x45
240x400 96 DPI 45x45
320x320 128 DPI 60x60
480x480 192 DPI 90x90
480x640 192 DPI 90x90
480x800 192 DPI 90x90
480x854 192 DPI 90x90
All icon entries go under the following key:
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start]
Create a sub-key matching the folder name or shortcut name the icon will go with, for example:
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\ Phone.lnk]
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\ Tools]
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\ Tools\QuickGPS.lnk]
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\ Google Maps.lnk]
There are 4 possible values you can set under this key:
Name REG_SZ Specifies the display name of the item. If the value is not specified, the file name will be displayed without the extension.
Group REG_DWORD Specifies whether the item is a folder. The value can be set to TRUE or FALSE. Set the value to TRUE to indicate that the item is a folder. If the value is not specified, the system will determine the Group value by verifying whether the registry key has any subkeys.
Icon REG_SZ Specifies the path and file name where the icon is located. The icon can consist of a PNG file or an embedded icon resource module. If this value is not specified, the default icon of the shell will be used.
Rank REG_DWORD Specifies the rank of the item. An item that specifies a larger value for Rank will be displayed before items that specify a lower value. If this item is not specified, the Rank will be set to 0.
To determine icon spacing, you'll need to examine the Rank value for existing icons, you can find the stock values in the following file: Base_Lang_xxxx\mxipinit_startmenu_001.provxml, where xxxx matches your Language ID code. A higher number = higher up in the chain, a lower number = lower down the chain. Any icons without a rank will be displayed at the bottom.
* Restore hidden settings items
Remove the "Redirect" value under the following keys:
[HKEY_LOCAL_MACHINE\ControlPanel\Owner]
[HKEY_LOCAL_MACHINE\ControlPanel\Buttons]
[HKEY_LOCAL_MACHINE\ControlPanel\Input]
* Allow in call recording with the native dialer
[HKEY_LOCAL_MACHINE\System\AudioRecording]
"Enabled"=dword:00000001
[HKEY_LOCAL_MACHINE\Software\Microsoft\Voice]
"EnableCallRecordMenuItem"=dword:00000001
"AllowInCallRecording"=dword:00000001
* Disable built-in magnifier on double-tap
[HKEY_LOCAL_MACHINE\System\GWE\MAGNIFIER]
"Enable"=dword:0
* Override default Lock Screen notification launchers
[HKEY_LOCAL_MACHINE\Software\Microsoft\Shell\LockSc reen\Notifications\Email]
"Application Command Line"="\Program Files\OEMApp\OEMApp.exe"
[HKEY_LOCAL_MACHINE\Software\Microsoft\Shell\LockSc reen\Notifications\SMS]
"Application Command Line"="\Program Files\OEMApp\OEMApp.exe"
[HKEY_LOCAL_MACHINE\Software\Microsoft\Shell\LockSc reen\Notifications\Voicemail]
"Application Command Line"="\Program Files\OEMApp\OEMApp.exe"
[HKEY_LOCAL_MACHINE\Software\Microsoft\Shell\LockSc reen\Notifications\MissedCall]
"Application Command Line"="\Program Files\OEMApp\OEMApp.exe"
[HKEY_LOCAL_MACHINE\Software\Microsoft\Shell\LockSc reen\Notifications\Contacts]
"Application Command Line"="\Program Files\OEMApp\OEMApp.exe"
Da_G
5th August 2009, 02:27 AM
* Porting languages in Ervius Visual Kitchen using the posted language packs
First, a quick overview of the relevant file structure in VK:
\Erv\OEM\%DEVICENAME%\%LOCALE_ID%\OEM_Lang_%LOCALE _ID%
\Erv\ROM\%DEVICENAME%\%BUILDNUMBER%\OEMXIPKernel
\Erv\SYS\%BUILDNUMBER%\DPI_%DPI%\%LOCALE_ID%
\Erv\SYS\%BUILDNUMBER%\DPI_%DPI%_resh_%RESH%_resv_ %RESV%\%LOCALE_ID%
\Erv\SYS\%BUILDNUMBER%\SHARED\%LOCALE_ID%
Possible values for the %VARIABLES% above:
%DEVICENAME%: Name of your device (Hermes, Raphael, Diamond, etc.)
%LOCALE_ID%: The 4 digit number matching your locale (list of supported id's found in first post) - a full list can be found here. (http://msdn.microsoft.com/en-us/goglobal/bb964664.aspx) It is possible to port WM to a language that is not supported, you would have to use a PE Resource editing program to translate all the various strings found in the .mui (Multilingual User Interface) files. Note that these change periodically as the builds get updated so you would also need to update your altered .mui's.
%BUILDNUMBER%: The build version in use (23022 for example)
%DPI%: DPI of the device (92, 128, 192)
%RESH%: Horizontal resolution of the device, in pixels (portrait)
%RESV%: Vertical resolution of the device, in pixels (portrait)
* Porting \SYS
The first thing you would want to do is grab the language pack matching your language. Extract it and you'll have several folders inside. Essentially what you want to do, is grab the folders that match your target device for the variables above, and copy those into the kitchen, in their respective folders.
As an example, if you were porting to Italian, on a 96 DPI, 240 by 320 device, and you had the following folder:
Base_Lang_%LOCALE_ID%_DPI_%DPI%_RESH_%RESH%_RESV_% RESV%
Base_Lang_0410_DPI_96_RESH_240_RESV_320
and place it in:
\Erv\SYS\%BUILDNUMBER%\DPI_%DPI%_resh_%RESH%_resv_ %RESV%\%LOCALE_ID%
\Erv\SYS\23022\DPI_96_resh_240_resv_320\0410
Go through each of the folders in the language pack and match it up with a destination folder this way. Compare to the existing 0409 layout to help with the structure. Note that there will be some files you are not going to use (you won't use 96 or 128 dpi files on a 192 dpi device, for example)
Once you have completed matching up each applicable folder in the language pack to a destination in \SYS this way, you're complete with that folder.
* Porting \ROM
The relevant folder here is \Erv\ROM\%DEVICENAME%\%BUILDNUMBER%\OEMXipKernel - inside you want to edit boot.rgu. The relevant keys to edit are:
[HKEY_LOCAL_MACHINE\MUI]
"SysLang"=dword:%LOCALE_ID%
[HKEY_CURRENT_USER\MUI]
"CurLang"=dword:%LOCALE_ID%
NOTE: For anyone not using Ervius VK, you will need to compile boot.rgu to boot.hv when done. Use the HV Tools.zip attached to this thread (http://forum.xda-developers.com/misc.php?do=showattachments&t=544445) for that. For anyone using Ervius VK, this is automatically compiled into boot.hv during cooking, and no further action is required.
* Porting \OEM
The relevant folder here is \Erv\OEM\%DEVICENAME%\%LOCALE_ID%\OEM_Lang_%LOCALE _ID% - you need an initflashfiles.dat that matches your language. All the folder names inside here will need to be translated to your language. I will try and make translated initflashfiles.dat for each language available soon.
You will also need to translate any other language-specific packages in \OEM and \EXT. If you don't want to bother translating the 3rd party apps, you can simply rename their .mui files to match your %LOCALE_ID%. The programs will work, but remain in their original language. You can translate these with a PE Resource editing program if you cannot find programs in your local language.
Da_G
5th August 2009, 02:35 AM
* Package Descriptions
*note: in the case of *Modules vs. *Files, the difference is simply what area of memory these objects go to when loaded (FILES or MODULES section) - other than that, no difference. Essentially, if you're using a native 6.5 kernel, you want *Modules, otherwise not. :)
ADC - Automatic Data Configuration
AdobeFlash - Adobe Flash
AdobeFlashCodecs - Adobe Flash Video Playback Codecs
AlarmSounds - Alarm Sounds
AUTOUPDATE - Device-Side Auto Update - Not Required
Base - Required - but what is it?
BaseApps - Required - but what is it?
BaseAppsFiles - Microsoft Camera + Camera Integration Support - replaces BaseAppsModules
BaseAppsModules - Microsoft Camera + Camera Integration Support -replaces BaseAppsFiles
Bluetooth - Bluetooth Support (for microsoft BT stack, dependant on build-time switch)
bronze - Required - Components for CHome
BronzeAH - Components for CHome (Arabic language)
BronzeEA - Components for CHome (east-asia languages)
BronzeNonEA - Components for CHome (Non east-asia languages)
BROWSING - IE 5 Components
BROWSINGCORE - IE 6on6 Scripting Components (dependant on build-time switch)
browsingie - IE 6on6 UI and RenderCore (dependant on build-time switch)
BTDUN - Bluetooth dial-up networking
Bth_A2DP - Bluetooth A2DP
Bth_HID - Bluetooth HID (Human Interface Device) profile support
Bth_Watch - Support for the Sony Erricssion Wrist Watch
CHome - Titanium, the WM Pro version of Sliding Panels
CommonEA - Common settings specific to east asia builds, replaces CommonNonEA
CommonNonEA - Common settings specific to non-east asia builds, replaces CommonEA
COMPLEXSCRIPT_FONTS - System fonts for Arabic builds, replaces SYSTEM_DEFAULT_FONTS
ConfettiCore - HW Accelerated RenderCore for 6.5 Chrome
DRM - Digital Rights Management Support (dependant on build-time switch) - Required for Video playback of 3gp and mp4
Enterprise - IPSec, l2TP and Winscard support?
Entertainment - Games
FWUPDATE - ImageUpdate Support
gb18030 - East Asian Font support - Excluded from non-EA images
GPSID - GPS Intermediate Driver, facilitates multiple applications using one serial port simultaneously
INTERNETSHARING - Provides a NAT Router for WWAN <--> USB/Bluetooth communication
IPSECVPN - IPSec VPN Support
IRDA - IR Port Support
LangDB - wince.nls for your language (0404, 0411, 0412, 0804, WWE)
Livesearch - Windows Live Search/Bing Search
Lockscreen - WM6.5 Lockscreen
LockscreenEA - Lockscreen east-asia components - replaces LockscreenNonEA
LockscreenNonEA - Lockscreen Non east-asia components - replaces LockscreenEA
MediaOS - Windows Media Player - Needed for MP3 Ringtone support?
MediaOSFiles - Windows Mobile Player Decoder DMO - replaces MediaOSModules
MediaOSModules - Windows Mobile Player Decoder DMO - replaces MediaOSFiles
Metadata - Required - Registry Hives, Package Info
MODEMLINK - Old-style internet sharing support (DUN) (dependant on build-time switch)
MSIMAR - SIP support for Arabic builds - excluded from non-arabic builds
MSTag - Microsoft Tag Reader (dependant on build-time switch)
MSXIPKernel - Microsoft Native Kernel Components
MSXIPKernelLTK - Empty ImageUpdate Package - Requirement for future expansion
NetCF - Microsoft .NET Compact Framework
NonPhone - Non-Phone (PDA) Components - excluded from phone builds
OEMXIPKernel - OEM Native Kernel Components
Office - Microsoft Office 6 Mobile
OneNote - Microsoft OneNote 6 Mobile
OS - Required - Description?
OSFiles - Required - MS WMV DMO - replaces OSModules
OSModules - Required - MS WMV DMO - replaces OSFiles
Perf - Debug Performance Monitor
Perfbox - Debug Performance Monitor
Phone - Required - Phone support, not in PDA builds
PhoneRedist - Required - Phone support, not in PDA builds
ppgprov - OMA Provisioning Support, not in PDA builds
Redist - ?
RemoteDesktopMobile - Remote Desktop
Riched20 - Rich HTML Editor support - WWE builds - replaces Riched20_CS
Riched20_CS - Rich HTML Editor support - Arabic builds - replaces Riched20
RIL710MUX - CellCore Component (optional)
RingsAndAlerts - Rings and Alerts
RMGR - Roaming Manager (optional)
RUNTIMES - C Runtimes
SipAR - SIP Support for Arabic builds (excluded from non-arabic builds)
SampleMusic - Sample Music (dependant on build-time switch)
Shell - Required
SIM_TKit - SIM Tool Kit, omitted from CDMA builds
Skybox - Microsoft MyPhone, Syncs a phone's info with Microsoft (dependant on build-time switch)
Skymarket - WM MarketPlace isn't live yet - Just a link (dependant on build-time switch)
SMIME - Required - Crypto Support
SMS_Providers - Required - SMS Support
SQLCE - SQL Server for CE (dependant on build-time switch)
SQM - Systems Quality Metrics (customer experience feedback)
SqlCeMobile - Not Required - Unless you need SqlCeMobile
SYSTEM_DEFAULT_FONTS - Required - Non Complex-Script Font Support - replaces COMPLEXSCRIPT_FONTS
Themes - Extra Themes
Transcriber - Transcriber - Not available in every language
UNISCRIBE - SIP Support for select non-WWE langs - replaces Transcriber
VoiceCommand - Voice Command - (0407, 0409, 040C, 0809)
VoIP - VoIP
VoIPOS - VoIP Part 2
Webview - IE 6on6 RenderCore component for OS use, WWE - replaces Webview_CS
Webview_CS - IE 6on6 RenderCore component for OS use, arabic - replaces Webview
WelcomeCenter - The WM6.5 Welcome Center - Required for "Help"
WindowsLive - Windows Live Mobile
WindowsLiveIM - Windows Live Instant Messaging
WMLiveSearchWidget - MS Live Search Widget
WMMoneyWidget - MS Money Widget
WMWeatherWidget - MS Weather Widget
WMWidgets - MS Widgets Support (Requires IE 6on6)
WWAN - WWAN Support (not in PDA Builds)
Da_G
5th August 2009, 02:35 AM
Branches of WM Development: Here is what all these different version numbers relate to, and a summary of their features.
212xx = AKU1, all builds leading up to and including WM 6.5
213xx = MOT motorola
214xx = ???
215xx = SAM samsung
216xx = HTC htc
217xx = COM1, continuing dev of 6.5.0.1 - 6.5.0.40
218xx = COM2, continuing dev of 6.5.0.50
219xx = MD, feature test branch, pretty much dead now. (unstable features are added here, this tree is based on COM1, so older base OS code, but the UI/UX code is newer)
22xxx = SEMC sony ericsson
*230xx = COM3, continuing development
*234xx = COM4, appears to be abandoned.
*235xx = COM5, more GUI changes here. New Outlook Interface.
*236xx = LG Electronics Branch
*24xxx = Possible HTC branch
*25xxx = SEMC - Sony Ericsson
*280xx, 282xx = WMD. This is a continuation of com3 from 23090. Most of the changes appear to be with IE
235xx is the only branch that has threaded email natively
Thanks to a1d2catz (http://forum.xda-developers.com/showpost.php?p=5853315&postcount=13476)and Cotulla (http://forum.xda-developers.com/showpost.php?p=5853989&postcount=13483).
Post or PM DaveShaw (or any other mod on this thread) with updates :)
jmckeejr
5th August 2009, 02:38 AM
OK, So since I got a post on the first page I suppose I could keep some useful info here from the thread as well. Just in case someone missed it ;) With every new build comes a new issue, so post your fixes if you have them.
- Here are some helpful programs. First is an awesome ROM Sorting tool. This this is awesome for organizong SYS and it cleans up unwanted files left in module folders. Link HERE (http://forum.xda-developers.com/showthread.php?t=542081&highlight=dump+sorter)
- And second is just a plug for my FlashBack package which you can use to backup and restore(automatically) lots of personal info and program settings :D Can also set manila to load automatically if you prefer it to "Windows Default", and choice to autorestore or not within program. Saves me a lot of setup time. After a flash all I need to do is restore contacts. Check it out and offer suggestions HERE (http://forum.xda-developers.com/showthread.php?p=3841452#post3841452)
-Alter shellres.xx.dll to work with new Toolbar zoom in 23028 build. Video HERE (http://forum.xda-developers.com/showpost.php?p=4336409&postcount=1003)
-Add your own shortcuts and icons to settings items. Post HERE (http://forum.xda-developers.com/showpost.php?p=4336360&postcount=998) and HERE (http://forum.xda-developers.com/showpost.php?p=4336336&postcount=996)
-A tool to remove duplicate files from modules. Post HERE (http://forum.xda-developers.com/showpost.php?p=4339192&postcount=1061)
-Editing .tsk file for use in 23025+ builds. For adding Pivot images and Toolbar images. Post HERE (http://forum.xda-developers.com/showpost.php?p=4357820&postcount=1379)
Some more registry keys. If anyone has details on what these do please post.
[HKEY_LOCAL_MACHINE\Software\Microsoft\ConfettiPlus]
"EnableStatsCaption"=dword:00000001
"ForceUpdateOverlay"=dword:00000001
"FrameRateCap"=dword:00000100
"UseGDI"=dword:00000001
Transparent quickmenu for HTC taskmanager(for use with 2302x builds)
[HKEY_CURRENT_USER\Software\HTC\TaskManager]
"LauncherUp"=hex:\
20,00,00,00,01,00,00,00,07,00,00,00,70,00,00,00,0f ,00,00,00,0f,00,00,00,\
0f,00,00,00,0f,00,00,00,0e,00,00,00,0e,00,00,00,0e ,00,00,00,0e,00,00,00,\
0d,00,00,00,0d,00,00,00,0d,00,00,00,0d,00,00,00,0c ,00,00,00,0c,00,00,00,\
0c,00,00,00,0c,00,00,00,0b,00,00,00,0b,00,00,00,0b ,00,00,00,0b,00,00,00,\
0a,00,00,00,0a,00,00,00,0a,00,00,00,0a,00,00,00,09 ,00,00,00,09,00,00,00,\
09,00,00,00,09,00,00,00,08,00,00,00,08,00,00,00,08 ,00,00,00,08,00,00,00
"LauncherDown"=hex:\
20,00,00,00,01,00,00,00,07,00,00,00,70,00,00,00,0f ,00,00,00,0f,00,00,00,\
0f,00,00,00,0f,00,00,00,0e,00,00,00,0e,00,00,00,0e ,00,00,00,0e,00,00,00,\
0d,00,00,00,0d,00,00,00,0d,00,00,00,0d,00,00,00,0c ,00,00,00,0c,00,00,00,\
0c,00,00,00,0c,00,00,00,0b,00,00,00,0b,00,00,00,0b ,00,00,00,0b,00,00,00,\
0a,00,00,00,0a,00,00,00,0a,00,00,00,0a,00,00,00,09 ,00,00,00,09,00,00,00,\
09,00,00,00,09,00,00,00,08,00,00,00,08,00,00,00,08 ,00,00,00,08,00,00,00
bobsbbq
5th August 2009, 09:42 AM
Great work Da_G as always. I think most people will be happy with the SYS and XIP. That is all I use, and there are so many cooks which are providing ROM's that you should use your time wisely.
On another note I we all should help to contribute to this thread. I know there are others out there with resources to new ROM's, I hope they will be as giving and share as Da_G has.
Thanks again and I will bookmark this thread and follow for new releases of SYS\XIP.
d_train
5th August 2009, 10:30 AM
Anyone got the 23019 that ConFlipper mentioned - or was he just toying with us :D
DT
Z7Z
5th August 2009, 11:22 AM
Da_G can I use the Portuguese language packages from 23001 in the 23016/21935?
Da_G
5th August 2009, 11:32 AM
Oh noes! I forgot the pizza party posts o.O
@Z7Z:
This should work fine for 23016, but not for 21935. I hope to have a new version to post soon, I will try and post all langs for it :)
krazy_about_technology
5th August 2009, 01:37 PM
Da_G, my phone came with Wm 6.0. Now i am using 6.1/6.5. I have managed to insert initvmmap.exe and mencflt.dll into my xip, as these files have been added/replaced in the 6.1 and 6.5 xip. Now, i have also inserted required registry entries into boot.rgu in xip.bin, but i dont know how to add the entries in boot.hv. Is it necessary to do so? and if yes, then how?
anryl
5th August 2009, 01:48 PM
Da_G, my phone came with Wm 6.0. Now i am using 6.1/6.5. I have managed to insert initvmmap.exe and mencflt.dll into my xip, as these files have been added/replaced in the 6.1 and 6.5 xip. Now, i have also inserted required registry entries into boot.rgu in xip.bin, but i dont know how to add the entries in boot.hv. Is it necessary to do so? and if yes, then how?
it depends on kitchen
PRB kitchen creates new boot.hv
older kitchen that are using xip.bin u have to compile boot.rgu to boot.hv with HV TOOLS :D
krazy_about_technology
5th August 2009, 01:50 PM
Thanks a lot for the tools buddy :) I am using platform rebuilder based kitchen, do i need it?
anryl
5th August 2009, 01:53 PM
Thanks a lot for the tools buddy :) I am using platform rebuilder based kitchen, do i need it?
no PRB will create new :rolleyes:
Nixeus
5th August 2009, 02:58 PM
MMM
I cook with the old kitchenn, based on bepe's kitchen 'buildos.exe".
If i do some tweaks on my XIP and on my boot.rgu, if i understand, i need to compile my new boot.hv with my modded boot.rgu ?
It's right ?
Thanks a lot :)
+ Que PPC
5th August 2009, 05:49 PM
Hey Da_G now i need to unsuscribe the other and add this :D
How is the new tools IMGFSfrom and to... development? Hope GREAT!!!
Keep it up man... God bless friends.
Da_G
5th August 2009, 07:06 PM
Haven't started on the IMGFS part of it yet, still learning some bits of C++ i'll need to create that... but nd4spd has posted a modded set of IMGFS tools here which should work good until i'm done (although the free space in each partition is hardcoded for the moment): http://forum.xda-developers.com/showpost.php?p=4186647&postcount=237
I'm probably a week or so off from posting the first test version (i'll do that in another thread) of the replacement for NBSplit/NBMerge/IMGFSFromNB/IMGFSToNB. :)
@Nixeus: Yes, when using the older kitchen you need to use program "rgucomp -b" with boot.rgu in same folder, it will compile boot.rgu to boot.hv :) Then just replace boot.rgu and boot.hv in your OEMXIPKernel. In the old kitchen to do this you'll need to dump xip.bin, replace the .hv, then rebuild xip.bin. XIPPort.exe can do this fairly easily.
indagroove
5th August 2009, 08:12 PM
Registry tips for WM 6.5
To change start menu positions
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\ Tools]
I don't have the "tools" key in my registry. I could obviously create it, but what would the string or dword values be?
Under HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start, I see all my shortcurs with different ranks, so is that what you mean -- just change the rank?
Röchelhilpert
5th August 2009, 08:15 PM
Only one Question. Is the voicemailbox-tab working with 23017 ?
Or with the 23xxx tree generally ? .... I never saw a notification there ... number was configured.
Is there a reg-key to get it working ?
hilaireg
6th August 2009, 01:24 AM
In my last few 6.1 5.12 21051/20779 ROM builds - VK 1.8.1;
I've noticed that if I do not powercycle my RAPH every 20hrs or so, it would no longer ring on incoming calls.
When I look at the BUILD_LOG file, I noticed that modules where overflowing into SLOT0. After several back-and-forth chats with Da_G, I went ahead and RECMOD'ed modules until SLOT1 modules no longer overflowed into SLOT0.
I've left my device on over the 20hr mark and it's been stable - i.e. incoming calls ring as expected. I've also noticed that battery usage seems to have improved; coincidence?
Ref Link: http://forum.xda-developers.com/showthread.php?t=538099
Cheers,
jmckeejr
6th August 2009, 01:46 AM
In my last few 6.1 5.12 21051/20779 ROM builds - VK 1.8.1;
I've noticed that if I do not powercycle my RAPH every 20hrs or so, it would no longer ring on incoming calls.
When I look at the BUILD_LOG file, I noticed that modules where overflowing into SLOT0. After several back-and-forth chats with Da_G, I went ahead and RECMOD'ed modules until SLOT1 modules no longer overflowed into SLOT0.
I've left my device on over the 20hr mark and it's been stable - i.e. incoming calls ring as expected. I've also noticed that battery usage seems to have improved; coincidence?
Ref Link: http://forum.xda-developers.com/showthread.php?t=538099
Cheers,
Was this with a custom tone or the default ringtone? I have never had this issue personally, but have read about it over and over. Maybe because all of my exe and dll's are modules?
hilaireg
6th August 2009, 02:03 AM
Was this with a custom tone or the default ringtone?
Stock HTC Ringtone: Innovation.
I have never had this issue personally, but have read about it over and over. Maybe because all of my exe and dll's are modules?
Keep in mind that my situation is with WinMO 6.1. If you are using one of Da_G's 6.5 kitchen where he's bighammered SYS/OEM then SLOT0 might be clean for you.
Have a look at your BUILD_LOG on your next ROM build; if SLOT0 reports 0 MODULES then you're likely fine. If there's modules in SLOT0, you may experience anomalies ... mine was ringtone after 20hrs-24hrs of constant on, you could experience something different.
Cheers,
Da_G
6th August 2009, 02:03 AM
@indagroove:
Whoops, that's a typo, you're right, no \tools :) Fixed!
@jmckeejr:
Hilaireg is spot on with this, since you're running WM 6.5 (I assume at least) - you've got SLOT 61 and 60 available for modules - so your SLOT 0 is likely empty.
jmckeejr
6th August 2009, 02:35 AM
@indagroove:
Whoops, that's a typo, you're right, no \tools :) Fixed!
@jmckeejr:
Hilaireg is spot on with this, since you're running WM 6.5 (I assume at least) - you've got SLOT 61 and 60 available for modules - so your SLOT 0 is likely empty.
Right. Here's my slots:
SLOT 0: 0x02000000 - 0x01a60000 (END: 0x00060000, 0 MODULES)
0x02000000 - 0x01fc0000 - ROM 0
0x01f80000 - 0x01a60000 - ROM 1
SLOT 1: 0x04000000 - 0x02020000 (END: 0x02020000, 259 MODULES)
SLOT 60: 0x7a000000 - 0x79490000 (END: 0x78020000, 48 MODULES)
SLOT 61: 0x7c000000 - 0x7a025000 (END: 0x7a020000, 236 MODULES)
indagroove
6th August 2009, 03:06 AM
Stock HTC Ringtone: Innovation.
Keep in mind that my situation is with WinMO 6.1. If you are using one of Da_G's 6.5 kitchen where he's bighammered SYS/OEM then SLOT0 might be clean for you.
Have a look at your BUILD_LOG on your next ROM build; if SLOT0 reports 0 MODULES then you're likely fine. If there's modules in SLOT0, you may experience anomalies ... mine was ringtone after 20hrs-24hrs of constant on, you could experience something different.
Cheers,
So, where is this BUILD_LOG file? Does it only get created in 1.8.1 -- cause I'm still using 1.6.
hilaireg
6th August 2009, 03:19 AM
@indagroove:
Yes ... newly added to the latest VK (believe somewhere in one of the 1.7 revs).
For pre-1.7, your build rom BAT file will need to be retrofitted with MTEE & GREP. I posted one here for reference:
http://forum.xda-developers.com/showpost.php?p=4020603&postcount=28
joshkoss
6th August 2009, 05:10 AM
DA_G congrats!!!
I hear this is the thread about slots?? lol
-subscription added.
Da_G
6th August 2009, 05:15 AM
23022 is in the wind :)
ETA several hours, i'm a little busy bsing on IRC, freenet, #xda-devs at the moment :)
+ Que PPC
6th August 2009, 05:37 AM
NIdce news... lets upgrade to 1.8.1 to see my slots... i have many things in files on my OEM... thanks Da_G, will continue the Builds hunt!
krazy_about_technology
6th August 2009, 05:45 AM
Hey da_g, in my platform rebuilder based kitchen, my memory map shows up like this :
SLOT 0: 0x02000000 - 0x01a30000 (END: 0x00060000, 32 MODULES)
0x02000000 - 0x01fe0000 - ROM 0
0x01fa0000 - 0x01e00000 - ROM 1
SLOT 1: 0x04000000 - 0x02020000 (END: 0x02020000, 295 MODULES)
RAM IMAGE: 0x8c100000 - 0x8c3b7d3c
RAM: 0x8c3b8000 - 0x8c45c000 - Used for kernel modules
0x8c45c000 - 0x8fc00000 - 55 MB free
For a 64MB Ram device based of WM 6 nk.exe and xip with initvmmap.exe working, is this a good configuration? Or should i do something more to optimize it furthur? I use 8 MB page pool with this config, getting good performance with Wm 6.5 and having 20 MB free mem all the time.
I just want to know that whether there are other optimizations possible any further to my ROMs.
BTW, thanks a lot for starting this thread, i was waiting for so long for something like this. People flashing build upon build of Wm 6.5 without talking about background details was driving me crazy, with a c :D But now i can relax :)
Da_G
6th August 2009, 05:53 AM
@krazy_about_technology:
0x02000000 - 0x01a30000 (END: 0x00060000, 32 MODULES)
So some math in hex:
0x1a30000-0x60000 = 19D0000, convert that to decimal: 27066368 bytes, or 25MB :) Not too bad for such a low mem device, some OEM's cut this as low as 20. You might want to consider recmodding some modules as a trial, see how it works with nothing in SLOT 0 for a bit, if no improvement you can always go back :)
krazy_about_technology
6th August 2009, 05:58 AM
Ok thanks for the tip buddy :) Appreciate that. One more n00b question, is there any implication of recmodding modules? Will it affect performance or amount of free RAM or Battery life in any way?
+ Que PPC
6th August 2009, 06:06 AM
I had mine!
As you remember im using the native 6.5 kernel in hermes
Memory Map...
SLOT 0: 0x02000000 - 0x01d70000 (END: 0x00060000, 0 MODULES)
0x02000000 - 0x01fe0000 - ROM 0
0x01fa0000 - 0x01d70000 - ROM 1
SLOT 1: 0x04000000 - 0x02022000 (END: 0x02020000, 216 MODULES)
SLOT 60: 0x7a000000 - 0x7a000000 (END: 0x78020000, 0 MODULES)
SLOT 61: 0x7c000000 - 0x7b200000 (END: 0x7a020000, 131 MODULES)
RAM IMAGE: 0x80000000 - 0x80281f88
RAM: 0x80282000 - 0x802f8000 - Used for kernel modules
0x802f8000 - 0x83a00000 - 55 MB free
But has this shit...
in 1.6 never happends!
platformrebuilder.exe Executed successfull!!!
done!!!
Wait some seconds...
Executing: kitchen_build_rom.bat.....
ERROR! (errorlevel: 1)
ERROR executing: kitchen_build_rom.bat
ERROR!!!
Wait some seconds...
No ''SVN'' folders present...
Restored Original config.txt...
Temp config.txt Deleted!!!
I change the PP changer to osnbtools cause the implantxip cant change the PP. change as follow:
echo.
..\TOOLS\osnbtool -ap xip.bin %pp%MB -y
..\TOOLS\implantxip -xip xip.bin -payload OS.nb.payload -imgstart %imgstart% -%uldr% -%nocert%
if not "%errorlevel%"=="0" goto error
I think i need to test again the implantxip default config... :(
Edited!
Noup neither the default kitchen_build_rom.bat works... sad... so sad! Think i must to talk with ervius and see whats wrong...
Da_G
6th August 2009, 07:22 AM
WM 6.5 Build 23022 CE OS 5.2.4069 LANG 0409 DPI 193 RESH 480 RESV 640 (http://rapidshare.com/files/264249567/WM65-23022-CE-OS-5-2-4069-LANG-0409-DPI-192-RESH480-RESV640.rar) - 08/05/2009
note: link removed by rapidshare
try
6th August 2009, 07:36 AM
But has this shit...
in 1.6 never happends!
From my experience, error level 1, then you just need to delete package.txt in EXT folder and re-run the ervius kitchen again. Everything will be fine
I read on the ervius thread about it, you can always search there.
Cheers,
krazy_about_technology
6th August 2009, 08:03 AM
Da_G, Please arrange for QVGA 96dpi files also, if possible, coz i dont think older files will work with this one, there are too many changes in the UI.
Guys i am also thinking about task manager, which one will work now with this build :confused:
drkfngthdragnlrd
6th August 2009, 08:06 AM
Da_G, Please arrange for QVGA 96dpi files also, if possible, coz i dont think older files will work with this one, there are too many changes in the UI.
Guys i am also thinking about task manager, which one will work now with this build :confused:
You know, I was wondering about the Task Manager as well not to mention M2D/TF3D. The bar being bigger means the today screen is area smaller.
Da_G
6th August 2009, 08:13 AM
Resolution files are coming, just hang on, :)
You can see in my upper left screenshot, in the upper right hand corner where the time/task manager is, there's an overlap, just what you're talking about :)
krazy_about_technology
6th August 2009, 08:18 AM
Resolution files are coming, just hang on, :)
You can see in my upper left screenshot, in the upper right hand corner where the time/task manager is, there's an overlap, just what you're talking about :)
Thank God (and to you my dear friend :) )! I thought its going to be VGA only from now :eek: You rock da_g, cant wait to see the changes running on my phone. BTW, are there any changes to the start menu also, or is just like 23016?
d_train
6th August 2009, 08:39 AM
Thanks Da_G - thought you were reading C++ manuals :) - glad you found the time to update :D
Waiting for QVGA ;)
I used XVI32 to look at S000 in the nk.exe and can't find "platform" - am I doing it wrong, or is there another tool I can use?
DT
ljankok
6th August 2009, 08:48 AM
I had mine!
As you remember im using the native 6.5 kernel in hermes
But has this shit...
in 1.6 never happends!
I change the PP changer to osnbtools cause the implantxip cant change the PP. change as follow:
echo.
..\TOOLS\osnbtool -ap xip.bin %pp%MB -y
..\TOOLS\implantxip -xip xip.bin -payload OS.nb.payload -imgstart %imgstart% -%uldr% -%nocert%
if not "%errorlevel%"=="0" goto error
I think i need to test again the implantxip default config... :(
Edited!
Noup neither the default kitchen_build_rom.bat works... sad... so sad! Think i must to talk with ervius and see whats wrong...
I had this too and tried changing the bat only to see it run broken further away the path. so I made a pragmatic decision to go back to 1.7 ;)
krazy_about_technology
6th August 2009, 09:01 AM
Hey Da_g, all other localizations have all resolutions but the english one has only VGA? Is QVGA coming for USA english?
Da_G
6th August 2009, 09:05 AM
Had the link set to the wrong one initially, it's fixed now :)
Da_G
6th August 2009, 09:21 AM
All languages, dpi's have finished uploading, this is a complete set for this build, I thought the UI changes warranted it :)
ljankok
6th August 2009, 09:27 AM
All languages, dpi's have finished uploading, this is a complete set for this build, I thought the UI changes warranted it :)
Thank you man :D
I will build my kitchen from scrath now for I am not happy
with my SPB benchmark filesystem result.
drkfngthdragnlrd
6th August 2009, 09:36 AM
I can see the Lockscreen has changed. I see there's a media player control & some Ink thing. Any chance of a screen shot of it?
Da_G
6th August 2009, 09:36 AM
@Ijankok:
Good luck! I'm tired from porting, sorting, and posting, so its sleep time for me :) Enjoy the goodies!
I'll see if I can post some more screenshots in the morning (im sure someone will beat me to it)
Try double tapping for a zoom window you can drag around :)
d_train
6th August 2009, 09:40 AM
So the UI changes look like they have come from 219xx, can anyone confirm that this is the case?
DT
Edit:
Can someone help with the commandline entry for the splash screen in NBHUtil? I want to add the 01_MainSplash.nb file to the nbh during build
..\tools\nbhutil.exe -model %deviceid% -ver %versionid% -lang %langid% -chunk %chunksize% -nogui -e -i %osidvalue% ..\temp\os-new.nb -b ruu_signed.nbh
Thanks
majkeljj
6th August 2009, 09:43 AM
where are screenshots? I don't see it in any post.
dickenz
6th August 2009, 10:13 AM
where are screenshots? I don't see it in any post.
Umm first post?
Thanks to Da_G for all your hard work and generous sharing.
killer8nl
6th August 2009, 11:29 AM
Thanks for new files! Will all new files ae posted here in the future? Hope so, since this is much easier then the other chinese sites:p
Thanks again
ali3nfr3ak
6th August 2009, 11:44 AM
hi there is there a way to view what slots have what in them using ppckitchen? thanks
sherifboudy
6th August 2009, 11:46 AM
Thank you Da_G.. I have been always using your kitchens.. but now I have a problem.. I downloaded the 23022 and I did my best integrating it into the 23016\21932 kitchen in the correct way..I also tried combining the 23022 with a clean ERVIUS KITCHEN.. but finally during the CREATE ROM process I get this massage.. PLATFORMREBUILDER.EXE..THIS APPLICATION HAS REQUESTED THE RUNTIME TO TERMINATE IT IN AN UNUSUAL WAY..
Can you help me with that issue?..
Thanks
Röchelhilpert
6th August 2009, 11:56 AM
I switch back to 23017 ..... the gui changes are not complete, also oversized.
Titelbar change looks nice but overlapping with Taskmanager.
Only a build who like to play .... for me not a daily use build.
fubsle
6th August 2009, 12:16 PM
Is there a language pack to replace 0409 in \OEM\Raphael ?
benko286
6th August 2009, 01:01 PM
anybody can tel how to add nuedynamicclock into kitchen?
and add new manila ito visual kitchen
http://forum.xda-developers.com/showthread.php?t=542113
??
elMInStER
6th August 2009, 01:53 PM
files with good size of "ok" and "x" button for 96dpi (from folder Base_DPI_96)
Ryrzy
6th August 2009, 02:14 PM
nice build but to much bugs :(
wqvga omnia
http://img529.imageshack.us/img529/9458/screenshot9s.th.png (http://img529.imageshack.us/my.php?image=screenshot9s.png)http://img529.imageshack.us/img529/2843/screenshot8y.th.png (http://img529.imageshack.us/my.php?image=screenshot8y.png)http://img19.imageshack.us/img19/8089/screenshot7x.th.png (http://img19.imageshack.us/my.php?image=screenshot7x.png)http://img529.imageshack.us/img529/9348/screenshot6x.th.png (http://img529.imageshack.us/my.php?image=screenshot6x.png)http://img26.imageshack.us/img26/9546/screenshot5zzk.th.png (http://img26.imageshack.us/my.php?image=screenshot5zzk.png)http://img44.imageshack.us/img44/10/screenshot1lhr.th.png (http://img44.imageshack.us/my.php?image=screenshot1lhr.png)http://img44.imageshack.us/img44/6269/screenshot2bnd.th.png (http://img44.imageshack.us/my.php?image=screenshot2bnd.png)http://img197.imageshack.us/img197/9906/screenshot3eag.th.png (http://img197.imageshack.us/my.php?image=screenshot3eag.png)http://img44.imageshack.us/img44/7284/screenshot4i.th.png (http://img44.imageshack.us/my.php?image=screenshot4i.png)
dddrko
6th August 2009, 02:42 PM
the whole menu is moved up, how to fix this?
RebelShadow
6th August 2009, 02:58 PM
Is there a guide that someone can recommend on how to integrate this into a kitchen?
Igoran
6th August 2009, 03:12 PM
Is there a guide that someone can recommend on how to integrate this into a kitchen?
I'm join to this wish.
Maintaining the ext/oem parts of the kitchen is easy. But porting sys is not so. :)
It will be very helpful if small FAQ is posted in the 1-st post. I think its sufficiently easy to port this new builds in existing 23xxx kitchen for TP. But not all know how ;)
chalid
6th August 2009, 03:27 PM
Sry, I have to say this, but this build looks awful. The bottom bar is a mess, and I don't mean the low quality graphics, but the asymmetric sectioning is unacceptable in my eyes and messes up the tidy interface of previous builds any versions.
Don't get me wrong, I appreciate Da_G's work here and don't want to demoralize him or anybody involved in bringing the new builds to us, but I just got to say, that the UI is imho going in a wrong direction.
CRACING
6th August 2009, 03:33 PM
Sry, I have to say this, but this build looks awful. The bottom bar is a mess, and I don't mean the low quality graphics, but the asymmetric sectioning is unacceptable in my eyes and messes up the tidy interface of previous builds any versions.
Don't get me wrong, I appreciate Da_G's work here and don't want to demoralize him or anybody involved in bringing the new builds to us, but I just got to say, that the UI is imho going in a wrong direction.
Yeah, I hope same but it will be improved and may take some while. :)
This build has many bugs and I"m stressed to solve them. :(
Best Regards
dddrko
6th August 2009, 03:46 PM
Yeah, I hope same but it will be improved and may take some while. :)
This build has many bugs and I"m stressed to solve them. :(
Best Regards
There are some of us who liked it. Did you try taskbar zoomed and zoomer window that brins up when double-click somewhere? I'm just waiting for the new keyboard....
Khuanchai
6th August 2009, 04:33 PM
I got the activesync error code 80180001 with this new build on Omnia that it cannot sync outlook. Anyone saw the same or it's just me?
chriscsh
6th August 2009, 04:42 PM
the whole menu is moved up, how to fix this?
no topbar in the startmenu (at the 1st boot after flash)
but dunno why the topbar come again after softreset :confused:
dddrko
6th August 2009, 04:42 PM
I got the activesync error code 80180001 with this new build on Omnia that it cannot sync outlook. Anyone saw the same or it's just me?
works fine for me pal. did you fixed start menu?
hilaireg
6th August 2009, 04:47 PM
Mods, please make this thread sticky :D:D,
thanks
LOL ... guess Da_G hasn't figured out how to do that yet.
;) :D
Captain_Throwback
6th August 2009, 04:48 PM
Is anyone willing to upload these new builds/releases (perhaps even on an ongoing basis) to a file server OTHER than Rapidshare? This stuff always comes out while I'm at work, on a shared line, and RS always tells me my IP is already downloading. So I spend all day trying to download and don't get any work done. I'm sure my employer would appreciate it :D.
agent_47
6th August 2009, 05:02 PM
I'm join to this wish.
Maintaining the ext/oem parts of the kitchen is easy. But porting sys is not so. :)
It will be very helpful if small FAQ is posted in the 1-st post. I think its sufficiently easy to port this new builds in existing 23xxx kitchen for TP. But not all know how ;)
1.dump the 23022 folder from the rar file in ur \kitchen\sys
2.the using the XIP_PORT... bump the content of the xip.bin....
3.go inside the out folder that is created. and then from both (files & modules) folders copy the contents MSXIPKernel into a single folder with the same name (MSXIPKernel)
4.move this MSXIPKernel folder to \ROM\Shared\23022
5. rename the old ROM\Kovsky\#build ID# folder to 23022
and ur good to go
now its my turn :p
1.is there any fix for the wierd dialer issue. it was there in 21936. how do we change it back
2.also how do we reduce the size of the "extra large" softkey bar :S
3.what do we do with the task manager!!! its all wierdly.....
thnx :)
hilaireg
6th August 2009, 05:03 PM
Is anyone willing to upload these new builds/releases (perhaps even on an ongoing basis) to a file server OTHER than Rapidshare? This stuff always comes out while I'm at work, on a shared line, and RS always tells me my IP is already downloading. So I spend all day trying to download and don't get any work done. I'm sure my employer would appreciate it :D.
Well ... I have some plans for the RAPH thread as far as maintaining a new kitchen thread similar to what I did with 6.1.
On the RS issue, it's DNS related. Usually, if I flush the DNS resolver cache on my PC (or restart) the problem resolves itself. If it doesn't for you, then it's because of the DNS server cache ... which I suspect you can't go clear.
Gotta hate it when work gets in the way of play.
;)
pyrorob
6th August 2009, 06:03 PM
Is anyone willing to upload these new builds/releases (perhaps even on an ongoing basis) to a file server OTHER than Rapidshare? This stuff always comes out while I'm at work, on a shared line, and RS always tells me my IP is already downloading. So I spend all day trying to download and don't get any work done. I'm sure my employer would appreciate it :D.
here try these:
http://rsplg.com/
http://www.freerapid.com/index.html
they are premium link generators, no waiting times and download as much as you want!
fb401
6th August 2009, 06:03 PM
1.dump the 23022 folder from the rar file in ur \kitchen\sys
2.the using the XIP_PORT... bump the content of the xip.bin....
3.go inside the out folder that is created. and then from both (files & modules) folders copy the contents MSXIPKernel into a single folder with the same name (MSXIPKernel)
4.move this MSXIPKernel folder to \ROM\Shared\23022
5. rename the old ROM\Kovsky\#build ID# folder to 23022
and ur good to go
^^ this should be on one of the first post
DomSim
6th August 2009, 06:21 PM
1.dump the 23022 folder from the rar file in ur \kitchen\sys
2.the using the XIP_PORT... bump the content of the xip.bin....
3.go inside the out folder that is created. and then from both (files & modules) folders copy the contents MSXIPKernel into a single folder with the same name (MSXIPKernel)
4.move this MSXIPKernel folder to \ROM\Shared\23022
5. rename the old ROM\Kovsky\#build ID# folder to 23022
and ur good to go
can you clarify number 5 please? and how do you get OEMXipKernel?
The Jack of Clubs
6th August 2009, 06:38 PM
does 23022 now include all the oversided elements from the md1 (219xx) builds? if so i might stick with 23016 until that is polished out. i think it way too big and ugly. dunno what microsoft is thinking. you can go bigger than what it used to be, but ffs, is someone blind?
agent_47
6th August 2009, 06:44 PM
can you clarify number 5 please? and how do you get OEMXipKernel?
use that from ur device official dump...or whatever u have been using already!
DomSim
6th August 2009, 06:55 PM
use that from ur device official dump...or whatever u have been using already!
figured that out with some research lol. thanks, but what about part 5 of the instructions there? i ask because i made a rom in visual kitchen following the porting directions and it hangs on first boot before customizations.
yardi4life
6th August 2009, 07:04 PM
transcriber folder is missing from the shared\common folder in the file WM65-23022-CE-OS-5-2-4069-LANG-0409-DPI-192-RESH480-RESV640.
+ Que PPC
6th August 2009, 07:13 PM
figured that out with some research lol. thanks, but what about part 5 of the instructions there? i ask because i made a rom in visual kitchen following the porting directions and it hangs on first boot before customizations.
Port the sys is really a easy task and rename the build number is the meaning of easy... you just need the .ROM folder inside there as i can imagine you got your .vm and your wincenls form your specific device and from another build...
So for porting this you just need the Common folder you can grab your old lang and DPI AND DPI ress and you will get ported the sys!!!!!!
Defintely i will wait till next release it has so much improvements that wish to polish changing the gwes and crap like that but... as 21925... 21928 has that fixed!!! ;)
utak3r
6th August 2009, 08:06 PM
I hope they will get these new things cleared fast... as it is actually, it's unusable...
Da_G
6th August 2009, 08:15 PM
I find the UI perfectly usable and quite like it, personally, it works in all my 3rd party apps :)
I think everyone having problems are trying to use 3rd party software that makes changes to the UI...
If you intend to continue using that software, I think it's time to find a 6.5.0.x build you like, because the 6.5.1 builds will not have the same UX code, and that stuff won't work :)
By the way, I didn't sticky this thread because I think it's tacky to stick your own thread :P
Maybe another Mod will decide to do it :)
sheennick123456
6th August 2009, 09:06 PM
I find the UI perfectly usable and quite like it, personally, it works in all my 3rd party apps :)
I think everyone having problems are trying to use 3rd party software that makes changes to the UI...
If you intend to continue using that software, I think it's time to find a 6.5.0.x build you like, because the 6.5.1 builds will not have the same UX code, and that stuff won't work :)
By the way, I didn't sticky this thread because I think it's tacky to stick your own thread :P
Maybe another Mod will decide to do it :)
well even if you dont "sticky" this thread ;this will always be floating on 1st page because of the amount of posts in the thread :P
and once again thanks for the sources
"YOU ARE THE MAN !!!!!"
indagroove
6th August 2009, 09:29 PM
I find the UI perfectly usable and quite like it, personally, it works in all my 3rd party apps :)
I think everyone having problems are trying to use 3rd party software that makes changes to the UI...
If you intend to continue using that software, I think it's time to find a 6.5.0.x build you like, because the 6.5.1 builds will not have the same UX code, and that stuff won't work :)
By the way, I didn't sticky this thread because I think it's tacky to stick your own thread :P
Maybe another Mod will decide to do it :)
My only complaint is the scrollbar in the dialer -- kinda makes it a pain to use. I would guess this isn't an issue for wVGA devices, since they have the room to display the entire dialer along with the top sliding panel. Oh, and also the top row of icons in the start menu are cut off.
Igoran
6th August 2009, 09:48 PM
1.dump the 23022 folder from the rar file in ur \kitchen\sys
2.the using the XIP_PORT... bump the content of the xip.bin....
3.go inside the out folder that is created. and then from both (files & modules) folders copy the contents MSXIPKernel into a single folder with the same name (MSXIPKernel)
4.move this MSXIPKernel folder to \ROM\Shared\23022
5. rename the old ROM\Kovsky\#build ID# folder to 23022
and ur good to go
First of all, thanks to DaG for all stuff we have! :)
And also thanks to agent_47 for this small instruction for port this new stuff for our TP kitchen (and no only TP, but i test this on it).
But then i try this steps, platformrebuilder.exe give me an error and ROM is not cooked... :(
After small think, i find the key! Agent_47, your guide need some corrections:
1.dump the 23022 folder from the rar file in ur \kitchen\sys
2.the using the XIP_PORT... bump the content of the xip.bin....
3.go inside the "out" folder that is created. Both folders (files + modules) contain files for "\ROM\Shared\23022\MSXIPKernel" folder and for "\ROM\Raphael\23022\OEMXIPKernel" folder of the kitchen! You need create both folders in it places and copy only needed for this folders files. The list of needed files we can see in the previous versions of the kitchen.
4.Now move new MSXIPKernel folder to \ROM\Shared\23022 and OEMXIPKernel folder to \ROM\Raphael\23022\
5. also, i copy new xip.bin to the \ROM\Raphael folder and replace existing one.
and ur good to go
after this steps i build new 23022 rom and it boot perfectly! :)
shadowline
6th August 2009, 10:02 PM
Has anyone else noticed the added graphics in the lockscreen sys folder? It has media controls, and titanium no longer works with WMP. Is this a step towards the new WMP they will have?
And for those having start menu problems, anyone notice this?
http://www.rocknrollcoffeehouse.com/shadowline/Screen02.png
ibmxx187
6th August 2009, 10:08 PM
Thanks again Da_g, i was wondering how would i find out what modules are used by slot 0 and what arent? I noticed when switching to 23022 the modules went up from 22 to 138 in slot 0, kind of weird.
Da_G
6th August 2009, 10:27 PM
ibmxx187:
Re-read the VM post, the order of which modules are allocated is covered there. Basically you need to reduce the overall size of modules to bring down the amount of space you're using in SLOT 0. (I recommend recmodding the largest sized ones)
Remember, the number of modules in SLOT 0 is really meaningless (as the size of each module varies) - more important is how much space you are using in SLOT 0. But I can tell you that 138 modules in SLOT 0 is way too much, and you are reducing the VM space per app to such a small amount that you are probably running into all sorts of nice errors :)
d_train
6th August 2009, 11:51 PM
I have a Tools folder under the StartMenu - but I would like to assign a graphic icon to it instead of the std folder icon, can someone explain how I do this please. I would also like to add more folders, and do the same. I want to use png files as the icon.
Has someone got the commandline switches to add a splash screen using NGHUtil??
Thanks
DT
+ Que PPC
7th August 2009, 12:06 AM
there are plenty dlls that contain icons and some other things... you need to go and open all of that dlls and search for the right one.. use resshacker or pexplorer...
gonna try this at home... thanks to all. :D
BTW Da_G this is the begining of the enhancements for 6.5.1 or what da...? :) the pixel lost in bottom cant be fixed by the cpr? jeje its just an idea...
fards
7th August 2009, 12:09 AM
By the way, I didn't sticky this thread because I think it's tacky to stick your own thread :P
Maybe another Mod will decide to do it :)
Nah do it anyway..
We'll all look away while you sticky it... :D
twopumpchump
7th August 2009, 12:15 AM
I have a Tools folder under the StartMenu - but I would like to assign a graphic icon to it instead of the std folder icon, can someone explain how I do this please. I would also like to add more folders, and do the same. I want to use png files as the icon.
Has someone got the commandline switches to add a splash screen using NGHUtil??
Thanks
DT
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\ Tools]
"Group"=dword:1
"Icon"="\\Windows\\Start_Icon_Tools.png"
"Rank"=dword:35A4ECAB
d_train
7th August 2009, 12:22 AM
Thanks for that - will give it a go - what does the rank do, and what do I change it to if I have other folders that I want to do the same?
Is there a set of Rankings I can use to place icons in certain positions on the startmenu?
Thanks again
DT
Edit: And the Group, is that always 1 for the Startmenu? Can I add icons into the Settings area also?
DomSim
7th August 2009, 12:30 AM
First of all, thanks to DaG for all stuff we have! :)
And also thanks to agent_47 for this small instruction for port this new stuff for our TP kitchen (and no only TP, but i test this on it).
But then i try this steps, platformrebuilder.exe give me an error and ROM is not cooked... :(
After small think, i find the key! Agent_47, your guide need some corrections:
1.dump the 23022 folder from the rar file in ur \kitchen\sys
2.the using the XIP_PORT... bump the content of the xip.bin....
3.go inside the "out" folder that is created. Both folders (files + modules) contain files for "\ROM\Shared\23022\MSXIPKernel" folder and for "\ROM\Raphael\23022\OEMXIPKernel" folder of the kitchen! You need create both folders in it places and copy only needed for this folders files. The list of needed files we can see in the previous versions of the kitchen.
4.Now move new MSXIPKernel folder to \ROM\Shared\23022 and OEMXIPKernel folder to \ROM\Raphael\23022\
5. also, i copy new xip.bin to the \ROM\Raphael folder and replace existing one.
and ur good to go
after this steps i build new 23022 rom and it boot perfectly! :)
is there a complete walkthrough for this, or somewhere i can read more up on it. i am still not getting a bootable rom. the kitchen fails to creat the rom with an error of missing boot.rgu there is no boot.rgu in any other sys files. there is however a boot_ms.rgu and there is a boot.rgu in the out folder from xip_port. if i put this boot.rgu into the msxipkernel, it will create a rom but it isnt bootable.
Da_G
7th August 2009, 12:34 AM
@d_train:
I'll edit the registry post with more detailed info, i've got it already compiled but i just haven't gotten a chance to post it yet :)
twopumpchump
7th August 2009, 12:35 AM
Thanks for that - will give it a go - what does the rank do, and what do I change it to if I have other folders that I want to do the same?
Is there a set of Rankings I can use to place icons in certain positions on the startmenu?
Thanks again
DT
Edit: And the Group, is that always 1 for the Startmenu? Can I add icons into the Settings area also?
for start menu, try this...
--first make all of your reg entries with icons like you want them and cook your rom
--then drag the icons to the order you want them in and soft reset
--then use regedit to export the reg entries for new order and use that next time you cook :)
for settings icons, here is an example
[HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start\ Settings\System\MyCpl.cpl,4]
"Icon"="\\Windows\\HTC_power.png"
Farmer Ted
7th August 2009, 12:36 AM
Thanks for that - will give it a go - what does the rank do, and what do I change it to if I have other folders that I want to do the same?
Is there a set of Rankings I can use to place icons in certain positions on the startmenu?
Thanks again
DT
Edit: And the Group, is that always 1 for the Startmenu? Can I add icons into the Settings area also?
Yeah, I actually delete the tools icon png file out of the kitchen before cooking, because I use another one. You can either put in a new one with the same name as the stock one (as a png file), or you can cook in an icon.lnk file in the tools folder that links to a resource or icon library (that's the way I do it; I use SkizZO's icon library).
You can also change the Settings icon, or the office mobile or games.
Da_G
7th August 2009, 12:49 AM
Updated post 3 with start menu icon infos.
@+ Que PPC:
The MD branch (219xx) started off the 6.5.1 changes, this continues that :)
+ Que PPC
7th August 2009, 01:16 AM
Tasty tasty!!!!
I told you this cause the 219XX now jumps into 230XX :rolleyes:
Hehe Oh BTW, yes Da_G sticky it... or, maybe i can be a chicken! and run to a mod and ask him to do it! :p
shadowline
7th August 2009, 01:34 AM
For those of you interested, I have posted a small walkthrough of screenshots, of the features I have found in this new build on my Topaz Rom thread. Is it WVGA image heavy so I wont post it directly here.
Anyway here is the thread http://forum.xda-developers.com/showpost.php?p=4282130&postcount=424
Some interesting features there. I can't wait to see how they evolve.
+ Que PPC
7th August 2009, 01:42 AM
Nice... really nice... but does the magnifier enhancement is just outside in the os? or in third party apps too? or just in default apps?
shadowline
7th August 2009, 01:45 AM
Nice... really nice... but does the magnifier enhancement is just outside in the os? or in third party apps too? or just in default apps?
Anywhere and everywhere it seems. Kinda annoying in Opera. :P
Edit:
Here is what the new lockscreen with media controls might look like.
http://www.rocknrollcoffeehouse.com/shadowline/Roms/images/Screen6506.png
Sorry for the size.
And this is a mockup, I might make one that is actually based on what the code says to do, but this is just to see the graphics of it.
donald-c
7th August 2009, 03:21 AM
I'm really glad of this thread being made, thanks Da_G.
It was annoying waiting to see the newest builds put in ROMs, I think it's 23017 still on Diamonds lol.
the.decoy
7th August 2009, 03:52 AM
Anywhere and everywhere it seems. Kinda annoying in Opera. :P
It is an interesting UI enhancement in theory ... but trying to find a use for it on a build where everything is already ENORMOUS is a bit of a challenge :p
Another thing ... I realise this is probably a QVGA thing but is anybody else seeing these:
http://forum.xda-developers.com/attachment.php?attachmentid=213457&stc=1&d=1249609744 http://forum.xda-developers.com/attachment.php?attachmentid=213456&stc=1&d=1249609744
There is some kind of screen corruption at the top of the startmenu, and all of the landscape images on my ATContacts are warped (though oddly not the portrait images) ... anyone else seeing this?
BTW, thanks for all your efforts in the XDA community Da_G :)
shadowline
7th August 2009, 04:09 AM
It is an interesting UI enhancement in theory ... but trying to find a use for it on a build where everything is already ENORMOUS is a bit of a challenge :p
Another thing ... I realise this is probably a QVGA thing but is anybody else seeing these:
(.)(.)
There is some kind of screen corruption at the top of the startmenu, and all of the landscape images on my ATContacts are warped (though oddly not the portrait images) ... anyone else seeing this?
BTW, thanks for all your efforts in the XDA community Da_G :)
Yea the magnifier seems a bit stupid to me, but maybe its for something that isnt done yet?
Also i too have that corruption in the start menu. And I am on a WVGA device.
Da_G
7th August 2009, 04:09 AM
Re: start menu corruption, i see you have HTC Task Manager installed, i've found anything that draws graphics to the top bar now causes corruption like this, if you remove it (and any other 3rd party programs that draw to the top bar), it will go away :)
the.decoy
7th August 2009, 04:19 AM
Re: start menu corruption, i see you have HTC Task Manager installed, i've found anything that draws graphics to the top bar now causes corruption like this, if you remove it (and any other 3rd party programs that draw to the top bar), it will go away :)
Oh, cool. Thanks man :D
As for the ATContacts image scaling ... must admit I still need to compare the included Titanium CPRs that are in 23022 (against my own CPRs that I replace them with in EXT to add the layouts for ATContacts, Weather, etc). It is possible this might be related.
indagroove
7th August 2009, 04:56 AM
is there a complete walkthrough for this, or somewhere i can read more up on it. i am still not getting a bootable rom. the kitchen fails to creat the rom with an error of missing boot.rgu there is no boot.rgu in any other sys files. there is however a boot_ms.rgu and there is a boot.rgu in the out folder from xip_port. if i put this boot.rgu into the msxipkernel, it will create a rom but it isnt bootable.
You need to put the boot_ms.rgu in the msxipkernel folder. The boot.rgu would go in your device specific rom folder, but you should already have that.
indagroove
7th August 2009, 04:58 AM
There is some kind of screen corruption at the top of the startmenu
I believe the corruption is from the SIP. Try changing to the MS SIP just for fun.
blazingwolf
7th August 2009, 05:22 AM
I'm missing a lot of the control panel items. Buttons, Input and Owner info.
indagroove
7th August 2009, 05:25 AM
I'm missing a lot of the control panel items. Buttons, Input and Owner info.
To restore owner info delete the redirect key in the hklm\controlpanel\owner.
Da_G
7th August 2009, 05:27 AM
Delete the "Redirect" value under the following keys:
[HKEY_LOCAL_MACHINE\ControlPanel\Owner]
[HKEY_LOCAL_MACHINE\ControlPanel\Buttons]
[HKEY_LOCAL_MACHINE\ControlPanel\Input]
I will add this to the 3rd post :)
SOHKis
7th August 2009, 05:32 AM
Yea the magnifier seems a bit stupid to me, but maybe its for something that isnt done yet?
Also i too have that corruption in the start menu. And I am on a WVGA device.
you can disable the magnifier by changing the following reg key:
HKEY_LOCAL_MACHINE\System\GWE\MAGNIFIER:Enable
from 1 to 0
Da_G
7th August 2009, 05:32 AM
oh, nice catch :)
added to the 3rd post as well!
BesFen
7th August 2009, 05:35 AM
ha..ha..ha... yes, as my friend said it's ugly......
i think, the features are collaboration of build 219xx and 23xxxt, Goooodddddddd......:D:D:D
I hope the next release will more better, I am back to 23017 and waiting for next release.
Thank you Da_G.
kancrutt
7th August 2009, 06:00 AM
ha..ha..ha... yes, as my friend said it's ugly......
i think, the features are collaboration of build 219xx and 23xxxt, Goooodddddddd......:D:D:D
I hope the next release will more better, I am back to 23017 and waiting for next release.
Thank you Da_G.
whats up bro :D how bout Cooking Training? :D
------------------------------------------------------------
bro VM ane blon ente bls di kaskus, ane mao blajar masak nih :p
indagroove
7th August 2009, 06:03 AM
God, I just wish we could fix that crappy new scrolling dialer!
Da_G
7th August 2009, 06:26 AM
The dialer is likely to be replaced soon when COM4 picks up.
indagroove
7th August 2009, 06:32 AM
The dialer is likely to be replaced soon when COM4 picks up.
Thank god. Who thought it was a good idea to change it to the scrolling one anyway??
And now, so that this isn't a total waste of a post, here's MSXIPKernal for 23022 attached, since I haven't seen it posted yet.
AndrewSh
7th August 2009, 07:43 AM
Re: start menu corruption, i see you have HTC Task Manager installed, i've found anything that draws graphics to the top bar now causes corruption like this, if you remove it (and any other 3rd party programs that draw to the top bar), it will go away :)
I have nothing third-party on my device but the corrupted graphics in the upper bar is present. It's some issues with new shell32 - that's for sure.... Or saying "third-party" you mean any OEM from any device? :)
Da_G
7th August 2009, 07:51 AM
Well, I just know that I removed task manager from my ROM (which was the only thing I had in there that changed the top bar) and the corruption went away :)
DarkAngelFR
7th August 2009, 09:07 AM
Hello there!
First a big thanks to you Da_G for bringing us those winmo updates!
I'm noob to rom cooking and I have a small question! Thanks for the small explain of how to update the kitchen using XIP/SYS updated files...now using Da_G Raph.Kitchen, XIPPort & updated release here is ok. However I cannot find where to put the languages files correctly!
In the localized files (040C for example) there are many folders, can someone explain where to put those folders ? I've seen some "Application_lang_040C" and some "base_dpi...", but I'm pretty lost in all those folders. I've been trying this last night but got lots of wired things in my frenchy rom (not usable, just home screen working in french). I suppose I put files in the wrong place.....
Thanks and keep the good work!
DarkAngel
PS: I did search the forum but cannot find any kind of tutorial for languages cooking......
Da_G
7th August 2009, 09:09 AM
I think I can whip up a guide for that.. i'll put it in the 4th post soon.
d_train
7th August 2009, 09:18 AM
Hey Da_G - was build 23019 an actual build, or was ConFlipper playing with us on the last thread?
Thanks for your constant updates and information :)
On another note: Is it possible to brick or kill your phone with too much flashing of ROMs? I am starting to get weird lock ups and unexplained hardware resets that I wasn't getting before - I have replaced all the kitchen items, disabled AV checking for my kitchen folder, cleaned up the HDD so that the system hums along, but still get them - I get more build failures now than ever before. Just wondering if I have "over cooked" my device :)
Thanks
DT
Da_G
7th August 2009, 09:24 AM
I suggest trying a stock ROM for a short period of time, if the behavior is noticed there you have something to be suspicious of, if not, it's an ingrediant most likely :)
(it was a joke)
DefaultBR
7th August 2009, 09:24 AM
hi, very nice job, and im seeing that the build is looking better
but i have 3 problems
1) Sometimes im scrolling something down, os pressing, it show a small zoom cube, how can i remove this?????? or how it works, so can i take care =x!
Solution:
* Disable built-in magnifier on double-tap
[HKEY_LOCAL_MACHINE\System\GWE\MAGNIFIER]
"Enable"=dword:0
2) TopBar is strange o0
http://img21.imageshack.us/img21/8029/screenshot1mlw.jpg
and this too
http://img34.imageshack.us/img34/2363/screenshot2hfp.jpg
3) Last One, the blue background take much space in the screen o0
http://img32.imageshack.us/img32/6348/screenshot3els.jpg
PS: Omnia dpi96 240x400 or 400x240
Q: Can be XIP.bin? i ported my xip.bin using one "good" automated xipkitchen
cya, nice, job =)
sorry something
Da_G
7th August 2009, 09:25 AM
Answer to question 1 is found in post 3 of this thread :)
DefaultBR
7th August 2009, 09:38 AM
yes, sorry
i tried it without soft reset :(:p
now its disabled ;)!!
thanks, the others 2 do you know =x?
ace10134
7th August 2009, 09:39 AM
Is there a guide that someone can recommend on how to integrate this into a kitchen?
Detailed GUIDE in how to Port XIP and SYS (http://forum.xda-developers.com/showpost.php?p=4215191&postcount=10)
Option 2 should apply for everyone. VERY detailed guide!! Perfect for newbs. (link in first post would help people, too)
Joey0054
7th August 2009, 09:50 AM
hey i just fixed the dialer issue by replacing all of the "phone" files in the 23022 sys with the "phone" files from the 23016 sys.
the result is still somewhat buggy but is much more useable.
i can post a sceenshot if youd like.
BesFen
7th August 2009, 09:54 AM
whats up bro :D how bout Cooking Training? :D
------------------------------------------------------------
bro VM ane blon ente bls di kaskus, ane mao blajar masak nih :p
Check your PM.
LeAdReW
7th August 2009, 10:02 AM
could someone help me to cook latest russian build on o2 zinc?please ,ill give all info needed
Da_G
7th August 2009, 10:33 AM
I think the language porting tutorial in Post 4 (http://forum.xda-developers.com/showpost.php?p=4268147&postcount=4) is done now, give it a read. Anyone feel free to correct me or add anything I missed :)
CRACING
7th August 2009, 10:48 AM
I think the language porting tutorial in Post 4 (http://forum.xda-developers.com/showpost.php?p=4268147&postcount=4) is done now, give it a read. Anyone feel free to correct me or add anything I missed :)
Thanks for all the guides, tutorial and info.
BTW: the shortcuts/links on first posts aren't good. Please correct them coz all are linking to post #2. :)
Da_G
7th August 2009, 10:49 AM
oops, fixed, thanks :)
@ace10134: Any chance you can add a bit for Visual Kitchen at some point? :) Linking it!
Now I think it's time for bed! :P
stephenophof
7th August 2009, 10:58 AM
Hey all,
Thanks for these guides but I don't understand them.. :D
If somebody has got free time and joy to help me with cooking a ROM for Wizard, please contact me ;)
I'm using the video tutorial and I see a os.nb.payload file and folders OEM Base, SYS Base, XIP Base but I don't have that file and folders. Where can I find it, for cooking a ROM for Wizard with build 23022? I only have the SYS/XIP thing of 23022 I downloaded in the first post.
DarkAngelFR
7th August 2009, 11:32 AM
I think the language porting tutorial in Post 4 (http://forum.xda-developers.com/showpost.php?p=4268147&postcount=4) is done now, give it a read. Anyone feel free to correct me or add anything I missed :)
Big thanks to you Da_G!! will test the tutorial later today (@work now, almost time for lunch) and will send here feedbacks!
see ya' & good night! :p
aruppenthal
7th August 2009, 01:18 PM
God, I just wish we could fix that crappy new scrolling dialer!
Lemme tell ya i have been working overtime trying to figure out how to properly revert the dialer. It is buried so deep i dont think there is any way to do it without breaking something else. Ive come very close but each time something else stops working. Its a real shame because there have been some great builds ruined by the dialer :(
navenedrob
7th August 2009, 01:20 PM
I have a small request...
My end call button does not end calls on the call screen. Does anyone know of a registry key to fix this? What did I leave out of my ROM?
Thanks to anyone who knows, I did search the forum and it eludes me! :P
Also thank you Da_G for all your help and informative loooonnnggg posts full of knowledge, it made me a chef!
jmckeejr
7th August 2009, 01:49 PM
Thank god. Who thought it was a good idea to change it to the scrolling one anyway??
And now, so that this isn't a total waste of a post, here's MSXIPKernal for 23022 attached, since I haven't seen it posted yet.
Thanks, I tried for a while to port the xip.bin and everytime Visual Kitchen sdaid it was unsuccessfull. I did get the folders in XIP_New_ported folder and tried using those, but made ROM not bootable. I have been having issues with porting XIP.bin for a few builds now. Maybe its time to try another method or rebuild my kitchen from scratch :( Anyway, thanks a lot(although I dont think I even want to waste the time with all the issues in this build)
+ Que PPC
7th August 2009, 05:25 PM
oops, fixed, thanks :)
@ace10134: Any chance you can add a bit for Visual Kitchen at some point? :) Linking it!
Now I think it's time for bed! :P
I got it... Just change the Hermes Settings to The DEVICE NAME YOU WANT in my
Pictorial...Using and set the Visual Kitchen by Ervius (http://forum.xda-developers.com/showthread.php?t=533423)
thanks to Hilaireg and Da_G, oh of course Ervius and Bepe
ace10134
7th August 2009, 05:50 PM
@ace10134: Any chance you can add a bit for Visual Kitchen at some point? :) Linking it!
I got it... Just change the Hermes Settings to The DEVICE NAME YOU WANT in my
Pictorial...Using and set the Visual Kitchen by Ervius (http://forum.xda-developers.com/showthread.php?t=533423)
thanks to Hilaireg and Da_G, oh of course Ervius and Bepe
I think he beat me to the Visual Kitchen guide. I'll probably be adding some visual kitchen info into my guide soon, though, seeing that the all-mighty Ivanmmj is going to be making a visual kitchen for my Wing.
But my guide (http://forum.xda-developers.com/showpost.php?p=4215191&postcount=10) will still definitely help all of us old-school chefs!
indagroove
7th August 2009, 07:02 PM
Thanks, I tried for a while to port the xip.bin and everytime Visual Kitchen sdaid it was unsuccessfull. I did get the folders in XIP_New_ported folder and tried using those, but made ROM not bootable. I have been having issues with porting XIP.bin for a few builds now. Maybe its time to try another method or rebuild my kitchen from scratch :( Anyway, thanks a lot(although I dont think I even want to waste the time with all the issues in this build)
There's a tutorial I posted here for converting xip.bin to MSXIPKernal for use in the Visual Kitchen:
http://www.everythingdiamond.info/showpost.php?p=2879&postcount=2
+ Que PPC
7th August 2009, 07:45 PM
I think he beat me to the Visual Kitchen guide. I'll probably be adding some visual kitchen info into my guide soon, though, seeing that the all-mighty Ivanmmj is going to be making a visual kitchen for my Wing.
But my guide (http://forum.xda-developers.com/showpost.php?p=4215191&postcount=10) will still definitely help all of us old-school chefs!
Oh shit! this guide could even help me some time ago... well seems that the destiny is unfare about it! hehehe :o
Keep it up! the pictorial is growing.. i think i will post the Dumping and the Xip.bin decompiling later.
Nice job! i never miss the old school!
Da_G
7th August 2009, 08:11 PM
Added link to + Que PPC's tutorial on first post
BTW, you might want to change the part about .NET CF 3.5, it is now shipping with WM builds and the version is newer than any packages floating about :)
@indagroove: Who do i credit for that post? I see the OP is another person but you edited it, so i'm unsure.
+ Que PPC
7th August 2009, 08:32 PM
well... when i try to use advanced config 3.3 it ask for netCF 3.5, so ithink new realeases has 2.0 thats why i change it to 3.5, cause 3.7 has issues in some apps.
CRACING
7th August 2009, 08:34 PM
well... when i try to use advanced config 3.3 it ask for netCF 3.5, so ithink new realeases has 2.0 thats why i change it to 3.5, cause 3.7 has issues in some apps.
Nope, 23022 source has netcf 3.5 but haven't noticed on other/older builds sources.
BTW; are you sure net cf 3.7 isn't good and gives trouble on some apps? If so I will go back to 3.5.
+ Que PPC
7th August 2009, 08:40 PM
OH!!!! so thats nice!!! :rolleyes: thanks for the info CRACING!!!
Maybe this musy be noticed but... in the build info, not in the kitchen tuto.
perfect!... i will never copy this again and again! jejeje i always forgot it!!! :p
indagroove
7th August 2009, 08:44 PM
Added link to + Que PPC's tutorial on first post
BTW, you might want to change the part about .NET CF 3.5, it is now shipping with WM builds and the version is newer than any packages floating about :)
@indagroove: Who do i credit for that post? I see the OP is another person but you edited it, so i'm unsure.
You would credit me, but it's not necessary. I did a moderator edit to Longhorn's reserved post.
CRACING
7th August 2009, 08:47 PM
OH!!!! so thats nice!!! :rolleyes: thanks for the info CRACING!!!
Maybe this musy be noticed but... in the build info, not in the kitchen tuto.
perfect!... i will never copy this again and again! jejeje i always forgot it!!! :p
hahaha its nothing. You're welcome. :D
Da_g was already wrote back that new wm6.5 sources has netcf 3.5 but I guess you haven't see it.
Best Regards
Da_G
7th August 2009, 08:53 PM
Re: .NET CF 3.7, this is a beta version of 4.0
It is missing a number of things that WM6.5 still uses (notably direct3d) so I do not recommend using it. The newer build of 3.5 in this release is better for use on WM 6.5 :) (in fact it fixes a few bugs with rich rendering engine in some apps)
+ Que PPC
7th August 2009, 08:55 PM
Jeje im just wondering why in the others builds the advanced ask me for the 3.5...
I think im still a "NOVATO" thanks guys :cool:
indagroove
7th August 2009, 09:02 PM
Re: .NET CF 3.7, this is a beta version of 4.0
It is missing a number of things that WM6.5 still uses (notably direct3d) so I do not recommend using it. The newer build of 3.5 in this release is better for use on WM 6.5 :) (in fact it fixes a few bugs with rich rendering engine in some apps)
I've noticed that the .net 3.5 that is now coming in the newer sys builds has more modules than previous .net 3.5 packages which only have one module (netcfmail3_5.dll). The newer packages with more modules seem to cause some issues for me with my 6.1 kernel, so I always swap out for the older 3.5 package.
rgb-rgb
7th August 2009, 11:42 PM
Da_G,
I would like to say thank you first for all you have done. You have spoiled us all and since you are not releasing the full kitchen now, some of us have to figure out how to do things that we have never had to do before. I appreciate the time that you have put in to all of this.
Now, I had to figure out how to get the new build into the visual kitchen and have seen several guides posted but didn't know exactly which one to follow because of the different tools that are available to create ROMS.
I have been using the Kitchen that you provided in the Raphael ROM Development thread and just had to figure out how to get the new files into the kitchen. I believe this is the ervius visual kitchen version 1.6
So using bits and peices from other posts here and looking at the structure of the Kitchen, I wrote a step by step guide for updating the Visual Kitchen that you have released previously to the new build posted in this thread.
Hope it helps someone else here also. Let me know if any changes need to be made. There might be an easier way to do this, but this way did work for me and I was able to make a bootable ROM on the first try:)
Da_G
8th August 2009, 12:51 AM
Linked rgb-rgb's guide in the first post, great work :)
wmserver
8th August 2009, 01:21 AM
Da_G,
When I boot up my Fuze, it shows D 5.0.?? (I assume is the driver version).
I Xipport dump the 23022 xip.bin to MSXipKernel and OEMXipKernel and I use both.
Do I use both the dumped MSXipKernel and OEMXipKernel for my Fuze or do I use the existing OEMXipKernel ?
The version number is not important but I just want to make sure I have the 5.11 driver in my ROM.
Thanks for all you do.
torankusu
8th August 2009, 03:33 AM
Hi All,
everytime i cooked a rom i always get the old icons on the taskbar, for example the antenna icon for 6.1 devices is a little bit thicker than the one from 6.5. i think these icons are in shellres.192.dll, which are always included in the SYS but again my taskbar always rocks the old icons, i thought it was something on my OEM folder but i really do not know where to look anymore, perhaps a registry??? any suggestions?? i'm using old kitchen layout not platform builder.
BesFen
8th August 2009, 05:11 AM
Hi All,
everytime i cooked a rom i always get the old icons on the taskbar, for example the antenna icon for 6.1 devices is a little bit thicker than the one from 6.5. i think these icons are in shellres.192.dll, which are always included in the SYS but again my taskbar always rocks the old icons, i thought it was something on my OEM folder but i really do not know where to look anymore, perhaps a registry??? any suggestions?? i'm using old kitchen layout not platform builder.
Is your battery icon change to?? if yes that is the problem, find the file for that, usually is "phcanOverbmp.dll".
newdecember
8th August 2009, 05:15 AM
has anyone got the SYS files ported for QVGA yet?
can't seem to find em...
BesFen
8th August 2009, 05:22 AM
has anyone got the SYS files ported for QVGA yet?
can't seem to find em...
Every lang already content all res, just download it from first post.
torankusu
8th August 2009, 05:28 AM
Is your battery icon change to?? if yes that is the problem, find the file for that, usually is "phcanOverbmp.dll".
i use the wm default dialer so it's not that. my battery icon looks normal, i just don't get it, i think it is something with my OEM folder or oemdrivers or maybe registry related.
+ Que PPC
8th August 2009, 05:36 AM
The registry dont change icons in the taskbar
you must to have a shellres dll somewhere in your oem packages. check every folder man.
BesFen
8th August 2009, 05:38 AM
i use the wm default dialer so it's not that. my battery icon looks normal, i just don't get it, i think it is something with my OEM folder or oemdrivers or maybe registry related.
Are you sure there isn't shellres.192.dl in EXT or OEM folder?, that folder will be process after SYS, so the default shellres.192.dll will be replaced.
torankusu
8th August 2009, 05:45 AM
Are you sure there isn't shellres.192.dl in EXT or OEM folder?, that folder will be process after SYS, so the default shellres.192.dll will be replaced.
ok, here is the thing; i have a vista orb skin for wm6 folder with a shellres.192.dll.0409.mui, i'm almost sure this is the issue BUT i never check that option on buildos so why is this shellres from this folder included into my custom rom when i am not even selecting that to be cooked into the rom?
indagroove
8th August 2009, 05:49 AM
Hi All,
everytime i cooked a rom i always get the old icons on the taskbar, for example the antenna icon for 6.1 devices is a little bit thicker than the one from 6.5. i think these icons are in shellres.192.dll, which are always included in the SYS but again my taskbar always rocks the old icons, i thought it was something on my OEM folder but i really do not know where to look anymore, perhaps a registry??? any suggestions?? i'm using old kitchen layout not platform builder.
Delete CDMA_RSSI_PPC.dll from your OEMdrivers folder, and the reg entry that points to it in the .rgu of the OEMdrivers.
indagroove
8th August 2009, 05:53 AM
Da_G,
I would like to say thank you first for all you have done. You have spoiled us all and since you are not releasing the full kitchen now, some of us have to figure out how to do things that we have never had to do before. I appreciate the time that you have put in to all of this.
Now, I had to figure out how to get the new build into the visual kitchen and have seen several guides posted but didn't know exactly which one to follow because of the different tools that are available to create ROMS.
I have been using the Kitchen that you provided in the Raphael ROM Development thread and just had to figure out how to get the new files into the kitchen. I believe this is the ervius visual kitchen version 1.6
So using bits and peices from other posts here and looking at the structure of the Kitchen, I wrote a step by step guide for updating the Visual Kitchen that you have released previously to the new build posted in this thread.
Hope it helps someone else here also. Let me know if any changes need to be made. There might be an easier way to do this, but this way did work for me and I was able to make a bootable ROM on the first try:)
Nice guide. It does have a couple of unecessary steps, but will work nonetheless. I did notice that you caught my error from this post: http://www.everythingdiamond.info/showpost.php?p=2879&postcount=2 (thanks for linking btw). I did accidentally delete the names of the six modules that you noticed were excluded from my post. The post is fixed, but you may (or may not) want to edit the tutorial to eliminate any confusion as to the process.
BesFen
8th August 2009, 05:55 AM
ok, here is the thing; i have a vista orb skin for wm6 folder with a shellres.192.dll.0409.mui, i'm almost sure this is the issue BUT i never check that option on buildos so why is this shellres from this folder included into my custom rom when i am not even selecting that to be cooked into the rom?
So you still use old kitchen, buildOS will report error if you have file with same name, and if you are not encounter error during BuildOS process it mean there is only one shellres.192.dll and one shellres.192.dll.0409.mui in your kitchen. :rolleyes:
Since you don't use vista orb skin, How if you get shellres.192.dll.0409.mui out from your kitchen?? but i don't sure about it.
ace10134
8th August 2009, 05:55 AM
Hey, can someone upload their entire XIP folder for this build? (Hopefully an XIP folder fresh from the build, not modified much.)
Could someone do that? I can't get the xip.bin to dump properly, but I do know how to port the XIP folder.
BesFen
8th August 2009, 06:15 AM
Hey, can someone upload their entire XIP folder for this build? (Hopefully an XIP folder fresh from the build, not modified much.)
Could someone do that? I can't get the xip.bin to dump properly, but I do know how to port the XIP folder.
http://forum.xda-developers.com/showpost.php?p=4283250&postcount=161
indagroove
8th August 2009, 06:16 AM
Hey, can someone upload their entire XIP folder for this build? (Hopefully an XIP folder fresh from the build, not modified much.)
Could someone do that? I can't get the xip.bin to dump properly, but I do know how to port the XIP folder.
Already done, right here:
http://forum.xda-developers.com/showpost.php?p=4283250&postcount=161
ace10134
8th August 2009, 06:28 AM
http://forum.xda-developers.com/showpost.php?p=4283250&postcount=161
I knew someone would have done that! Wait, I read through this whole thread yesterday, must have glanced over that.
Whatever, that was my one free-pass token. lol. Thanks guys.
twopumpchump
8th August 2009, 07:08 AM
has anyone got the SYS files ported for QVGA yet?
can't seem to find em...
look in my kitchens folder of my sig you will find most of them there ;)
stouph52
8th August 2009, 09:22 AM
hi every body
good work DA G i love this version:):D:p
i have just a bug of graphism
when i enter the start menu the taskbar doesn't hide?
what i do for solved it?
edit
i don't have option of input and button
what i do for have it?
edit
i find for problem input button and owner
i just change in rgu of shell
remove the value "redirect" of input,button and owner
thanks in advance for your answer
sheennick123456
8th August 2009, 10:35 AM
is it possible to get native nk.exe for older devices?
hermes has got that
can it be done for artemis?
stouph52
8th August 2009, 10:38 AM
is it possible to get native nk.exe for older devices?
hermes has got that
can it be done for artemis?
it's possible show me i ported xip on asus p535:)
benko286
8th August 2009, 11:03 AM
can somebody tell me how to add .exe files into kitchhen?
stouph52
8th August 2009, 11:32 AM
can somebody tell me how to add .exe files into kitchhen?
create a folder and make in your exe and with package creator create a package:);)
krazy_about_technology
8th August 2009, 12:21 PM
it's possible show me i ported xip on asus p535:)
Wow! That will be great :) Can you do it for Gene also?? I am attaching the xip.bin for my latest rom. Its not ported fully, its from my platformrebuilder kitchen, it does the porting itself.
X1iser
8th August 2009, 12:28 PM
2) TopBar is strange o0
http://img21.imageshack.us/img21/8029/screenshot1mlw.jpg
and this too
http://img34.imageshack.us/img34/2363/screenshot2hfp.jpg
For this problem check StartMenu_Global_XXXxXXX.cpr
<Form Width="XXX" Height="XXX">
<Image ID="Background" Left="0" Top="-XX"/>
</Form>
Change "Top" 0 with XX in StartMenu_GridScene_XXXxXXX.cpr
<GridView ID="Start Menu Items List" Top="0" Left="0" Width="YYY" Height="ZZZ" Columns="3" Scrollable="TRUE" HexagonGrid="TRUE" HorizontalWrapAround="TRUE" PaginatedScrolling="TRUE">
It work for 480x800 for me :)
benko286
8th August 2009, 12:36 PM
create a folder and make in your exe and with package creator create a package:);)
and where to find package creator?
d_train
8th August 2009, 01:21 PM
is it possible to get native nk.exe for older devices?
hermes has got that
can it be done for artemis?
And for the Nike would be good.
DT
the_fish
8th August 2009, 01:33 PM
And for the Nike would be good.
DT
was about to request that on our board :P
lennysh
8th August 2009, 01:43 PM
For this problem check StartMenu_Global_XXXxXXX.cpr
<Form Width="XXX" Height="XXX">
<Image ID="Background" Left="0" Top="-XX"/>
</Form>
Change "Top" 0 with XX in StartMenu_GridScene_XXXxXXX.cpr
<GridView ID="Start Menu Items List" Top="0" Left="0" Width="YYY" Height="ZZZ" Columns="3" Scrollable="TRUE" HexagonGrid="TRUE" HorizontalWrapAround="TRUE" PaginatedScrolling="TRUE">
It work for 480x800 for me :)
So, does this fix the start menu bar bug at the top?
stouph52
8th August 2009, 01:44 PM
and where to find package creator?
attached guys
stouph52
8th August 2009, 01:44 PM
Wow! That will be great :) Can you do it for Gene also?? I am attaching the xip.bin for my latest rom. Its not ported fully, its from my platformrebuilder kitchen, it does the porting itself.
have you a xip.bin of your device
stouph52
8th August 2009, 02:25 PM
For this problem check StartMenu_Global_XXXxXXX.cpr
<Form Width="XXX" Height="XXX">
<Image ID="Background" Left="0" Top="-XX"/>
</Form>
Change "Top" 0 with XX in StartMenu_GridScene_XXXxXXX.cpr
<GridView ID="Start Menu Items List" Top="0" Left="0" Width="YYY" Height="ZZZ" Columns="3" Scrollable="TRUE" HexagonGrid="TRUE" HorizontalWrapAround="TRUE" PaginatedScrolling="TRUE">
It work for 480x800 for me :)
thanks i will try it :D
Alan-B
8th August 2009, 02:45 PM
Hi,
Problems boot !
with my BlackStone kitchen, the HTC start but remains fixed on the logo wm6.5 and does not pass further !
I n' do not be able on the page to push here, then the calibration..
Wat is the problems ?
Thanks in advance for your help..
Désolé pour mon Anglais
d_train
8th August 2009, 03:29 PM
have you a xip.bin of your device
Here is the xip.bin (zipped up) for the Nike - from original HTC stock ROM.
thanks
DT
twopumpchump
8th August 2009, 03:32 PM
it's possible show me i ported xip on asus p535:)
so you are saying you have native 6.5 nk.exe on your asus p535? just want to make sure i am understanding you right :)
newdecember
8th August 2009, 05:16 PM
Every lang already content all res, just download it from first post.
ahhhh sorry, i didn't realise lol, pardon my noobishness. just still getting used to all of this xip porting
krazy_about_technology
8th August 2009, 05:25 PM
have you a xip.bin of your device
Ok Here is the XIP.Bin from one of my working ROMs. I can also post original WM 6 XIP.bin if you need.
ace10134
8th August 2009, 06:05 PM
Hi,
Problems boot !
with my BlackStone kitchen, the HTC start but remains fixed on the logo wm6.5 and does not pass further !
I n' do not be able on the page to push here, then the calibration..
Wat is the problems ?
Thanks in advance for your help..
Désolé pour mon Anglais
You phone won't boot because you messed up porting the SYS and XIP somewhere. Idk. Could be anything.
Does anyone have any tips on porting this SYS and XIP??
BesFen
8th August 2009, 06:17 PM
have you a xip.bin of your device
Here is my XIP, Thank you very much.
http://www.4shared.com/file/123757481/40b63c80/xip_old_gene.html
+ Que PPC
8th August 2009, 06:31 PM
amazing... how much wfforts Da_G did on the other thread providing the entire kitchen.... now the problem is not the OS or the haunt... is the XIP port!! :eek: jajaja keep it up guys.
BesFen
8th August 2009, 06:46 PM
amazing... how much wfforts Da_G did on the other thread providing the entire kitchen.... now the problem is not the OS or the haunt... is the XIP port!! :eek: jajaja keep it up guys.
Yeah...native NK.exe wm 6.5 is a dreaming of every people.:D:D:D
+ Que PPC
8th August 2009, 07:01 PM
Like me! :D
I just need to dump the xip.bin with the visual kitchen checking the Real 6.5 then provide the xip.bin of the real 6.5 and perform the dump, it gives me the MSXIPKERNEL and thats all I need! ;)
Alan-B
8th August 2009, 07:13 PM
Re hello,
Nobody n' good MSxip would have for BlackStone ?
NB: But, c' is the xip or l' OS which poses problems?
With l' OS 23016 I n' do not have problems!
@+
Pyrana
ace10134
8th August 2009, 07:32 PM
Re hello,
Nobody n' good MSxip would have for BlackStone ?
NB: But, c' is the xip or l' OS which poses problems?
With l' OS 23016 I n' do not have problems!
@+
Pyrana
Talk english, please. We can't understand you, LOL.
But I couldn't get this new build to port properly either. I got 23016 to port properly because I had the ENTIRE XIP folder (LangDB, MSXIPKernel, MSXIPKernelLX, and the other folder, don't remember the names). I think I need that entire XIP folder set, again. Maybe you're having the same problem.
fubsle
8th August 2009, 07:52 PM
I can't open/read/write text or e-mail messages with 23022 :confused:
Someone noticed the same issue?
I ported the build to Da_G's last RAPH Kitchen using "rgb-rgb's .pdf"
+ Que PPC
8th August 2009, 07:57 PM
Try changing the redist lang folder
for another build
i tho 23016
Arkadash
8th August 2009, 08:36 PM
Does anyone have problems with iGo8 on bild 23022 ?
I tap on iGo8.exe and the wait cursor on screen and thats all...it runs on circle but iGo doesn't run.
SMS problem is also present...
rgb-rgb
8th August 2009, 08:59 PM
Nice guide. It does have a couple of unecessary steps, but will work nonetheless. I did notice that you caught my error from this post: http://www.everythingdiamond.info/showpost.php?p=2879&postcount=2 (thanks for linking btw). I did accidentally delete the names of the six modules that you noticed were excluded from my post. The post is fixed, but you may (or may not) want to edit the tutorial to eliminate any confusion as to the process.
Thanks, I did update the guide now but it broke the link on the first post until Da_G changes it.
Here is the link to rgb-rgb's .pdf guide for updating Visual Kitchen with new Build.
http://forum.xda-developers.com/attachment.php?attachmentid=214099&d=1249757530
sheennick123456
8th August 2009, 09:00 PM
it's possible show me i ported xip on asus p535:)
ohh that will be great :D
this is my dumped xip for artemis
Da_G
8th August 2009, 09:09 PM
Updated the link for rgb-rgb's post :)
+ Que PPC
8th August 2009, 09:14 PM
And here is mine for Hermes Real 6.5 kernel
BesFen
8th August 2009, 09:28 PM
And here is mine for Hermes Real 6.5 kernel
that's good. I am still waiting stouph52 port my xip, yeah it's 2:30AM now, I go to sleep.
utak3r
8th August 2009, 09:40 PM
For the emails and SMSes in 23017 - replace Redist packages from 23016 :)
Da_G
8th August 2009, 10:15 PM
Looks like we got a sticky :)
Alan-B
8th August 2009, 10:50 PM
Talk english, please. We can't understand you, LOL.
But I couldn't get this new build to port properly either. I got 23016 to port properly because I had the ENTIRE XIP folder (LangDB, MSXIPKernel, MSXIPKernelLX, and the other folder, don't remember the names). I think I need that entire XIP folder set, again. Maybe you're having the same problem.
re..........
Sorry but I am french!
I just try to find a solution for this problem of Msxip for BlackStone !!
I don't have these problems with the other OS, 23003, 230016 etc...
NB: I have in rom
Shared
23022
xip.bin
and folder, MSXIPKernel with all the files of the xip
for me is difficult to write in English !!
twopumpchump
8th August 2009, 10:58 PM
re..........
Sorry but I am french!
I just try to find a solution for this problem of Msxip for BlackStone !!
I don't have these problems with the other OS, 23003, 230016 etc...
dont use the oemxipkernel from the xip.bin of new build on your blackstone...you need oemxipkernel from your device and msxipkernel from new build. you can get oemxipkernel for your device by dumping official blackstone rom with ervius kitchen and taking from that.
Da_G
8th August 2009, 11:05 PM
Better than dumping a WM 6.1 OEMXIPKernel, I posted a Native WM 6.5 Blackstone OEMXIPKernel to that forum some time ago :)
Alan-B
9th August 2009, 09:51 AM
dont use the oemxipkernel from the xip.bin of new build on your blackstone...you need oemxipkernel from your device and msxipkernel from new build. you can get oemxipkernel for your device by dumping official blackstone rom with ervius kitchen and taking from that.
RE...RE
I have in ROM, folder Shared (MSXIP) and folder BlackStone (OEMxip for BlackStone) i!!
in Rom:
Folder Shared/23022/xîp.bin, packages.txt and rep. Msxipkernel
Folder BlackStone/Xip.bin, os.nb.payload, romhdr.bin, info.txt and rep. 23022/packages.txt and rep. OEMXipKernel.
My BlackStone start, but is blocked before the screen 'appuiez ici' (appuiez ici in French), and does not arrive at the calibration ??
NB: is the same oemxip as i use with other OS WM6.5 kichen, and compatible for use Real AKU WM6.5.
Alan-B
9th August 2009, 10:00 AM
Better than dumping a WM 6.1 OEMXIPKernel, I posted a Native WM 6.5 Blackstone OEMXIPKernel to that forum some time ago :)
Ok and thanks Da_G,
this is the one that I use !!! but do not work with this OS 23022 !!
Work for Os 23003, 23006..... 23016 but not with 23022 ???
ace10134
9th August 2009, 10:02 AM
Ok and thanks Da_G,
this is the one that I use !!! but do not work with this OS 23022 !!
Work for Os 23003, 23006..... 23016 but not with 23022 ???
Yea, I haven't been able to get this thing ported either :(
Idk. Maybe the next build will have some more polish to it, and it'll be worth spending more time on trying to get working.
elparra72
9th August 2009, 10:33 AM
Hi Da_G,
I think a download list of WM6.5 native nk.exe file could be a great idea too.
Regards,
Alan-B
9th August 2009, 12:16 PM
Re Hi,
Ok, replaced the oemxip and my BLACKSTONE boot..
But the page of calibration bug and dates and hour also ?? and taskbarr
miri
9th August 2009, 12:32 PM
Hi Guys,
Here is 23024 SYS & XIP to be ported to other devices.
http://rapidshare.com/files/265402751/23024_SYS_XIP.rar
d_train
9th August 2009, 01:15 PM
Hi Guys,
Here is 23024 SYS & XIP to be ported to other devices.
http://rapidshare.com/files/265402751/23024_SYS_XIP.rar
Is the interface more refined?
BesFen
9th August 2009, 01:22 PM
Hi Guys,
Here is 23024 SYS & XIP to be ported to other devices.
http://rapidshare.com/files/265402751/23024_SYS_XIP.rar
I can't download it, any mirror pls...
miri
9th August 2009, 01:49 PM
To me it looked the same, although it looks a little snapier than 23022...
Is the interface more refined?
Mr. Makk
9th August 2009, 02:57 PM
To me it looked the same, although it looks a little snapier than 23022...
i didnt tried 23022 caus of the bigger bottom. but i tried 21928 where the bottom started getting bigger.
but i assume that it conflicts the manila and overlaps some part of its bottom. right??
twopumpchump
9th August 2009, 03:20 PM
Hi Guys,
Here is 23024 SYS & XIP to be ported to other devices.
http://rapidshare.com/files/265402751/23024_SYS_XIP.rar
thanks miri :)
bobsbbq
9th August 2009, 03:44 PM
Hi Guys,
Here is 23024 SYS & XIP to be ported to other devices.
http://rapidshare.com/files/265402751/23024_SYS_XIP.rar
That exactly what I was talking about earlier. And Miri has always been one to help in sharing builds and other things.
Thanks my friend
CRACING
9th August 2009, 04:03 PM
Hi Guys,
Here is 23024 SYS & XIP to be ported to other devices.
http://rapidshare.com/files/265402751/23024_SYS_XIP.rar
Thanks for sharing, miri
Without 23024 dpi, there won't be difference in gui if we take dpi from 23022. If not I was going to ask screenshots. :p
Best Regards
killer8nl
9th August 2009, 04:40 PM
Thanks miri:)
are there wvga and dutch(0413) files available?
OneSman7
9th August 2009, 05:06 PM
From what I got by looking into files there are X, OK, pivots and pivots background for each of the themes.
Don't know if it was so in 23022, but ROM cookers may already start putting in their own graphics for each theme to make 23024 look even more pretty.
And do not forget to change taskbar buttons' graphics firstly since they are of too low resolution. ;)
Also, is the media control on lockscreen working? Again from graphics I can deduce that it must consist from several pages (there are special arrows to show switching).
bouaroudj
9th August 2009, 05:27 PM
For this problem check StartMenu_Global_XXXxXXX.cpr
<Form Width="XXX" Height="XXX">
<Image ID="Background" Left="0" Top="-XX"/>
</Form>
Change "Top" 0 with XX in StartMenu_GridScene_XXXxXXX.cpr
<GridView ID="Start Menu Items List" Top="0" Left="0" Width="YYY" Height="ZZZ" Columns="3" Scrollable="TRUE" HexagonGrid="TRUE" HorizontalWrapAround="TRUE" PaginatedScrolling="TRUE">
It work for 480x800 for me :)
Hi,
have you adapted this ROM to xperia? hox is it compared to 23009?
bouaroudj
9th August 2009, 05:28 PM
For this problem check StartMenu_Global_XXXxXXX.cpr
<Form Width="XXX" Height="XXX">
<Image ID="Background" Left="0" Top="-XX"/>
</Form>
Change "Top" 0 with XX in StartMenu_GridScene_XXXxXXX.cpr
<GridView ID="Start Menu Items List" Top="0" Left="0" Width="YYY" Height="ZZZ" Columns="3" Scrollable="TRUE" HexagonGrid="TRUE" HorizontalWrapAround="TRUE" PaginatedScrolling="TRUE">
It work for 480x800 for me :)
Hi,
have you adapted this ROM to xperia? how is it compared to 23009?
rgb-rgb
9th August 2009, 05:52 PM
Question for Da_G or someone,
In Da_G's Raphael kitchen under the SYS\[Build #]\SHARED\COMMON folder there is a .ROM folder with 2 files in it. It contains imageinfo.bin and imageinfo.txt files.
How do I create this .ROM folder from the new sys that Miri posted? Or, do I even need it?
I tried placeing that SYS folder from Miri into the Kitchen\MyTools\SYS\dump folder and running the doit.bat file but get an error about not being able to open a Skybox_Lang_0409\MyPhoneConsole.exe.0409.mui\S001 file. But, I'm not sure this is even anything I need to do.
Any help would be appreciated.
sparkienl
9th August 2009, 06:08 PM
Question for Da_G or someone,
there is a .ROM folder with 2 files in it. Or, do I even need it?
I tried placeing that SYS folder from Miri into the Kitchen\MyTools\SYS\dump folder and running the doit.bat file but get an error about not being able to open a Skybox_Lang_0409\MyPhoneConsole.exe.0409.mui\S001 file. But, I'm not sure this is even anything I need to do.
Any help would be appreciated.
1e: You don't need the .rom folder in ervius kitchen.
2th: You must make a 23024 SYS folder yourself from the miri SYS
Take the existing SYS folder as example. :)
X1iser
9th August 2009, 06:22 PM
Hi,
have you adapted this ROM to xperia? how is it compared to 23009?
Yes, some functions do not work with this latest version, like phonecanvas so I disable this.
I will certainly release this version for the flashoolic :)
rgb-rgb
9th August 2009, 06:43 PM
1e: You don't need the .rom folder in ervius kitchen.
2th: You must make a 23024 SYS folder yourself from the miri SYS
Take the existing SYS folder as example. :)
Thank you, that was exaclty what I need to know. I had created the SYS folder with the exception of the .ROM folder.
Will give it a try.
williyung
9th August 2009, 06:58 PM
Thank you, that was exaclty what I need to know. I had created the SYS folder with the exception of the .ROM folder.
Will give it a try.
How about .VM & \WinCENLS_WWE folder? Do i need it in \SYS\[build]\SHARED\COMMON ?
Sorry for noob questions, still learning on ervius kitchen..:D
Thanks
Montecristo
9th August 2009, 07:11 PM
How can I change the size of some items?
http://www.actors-studio.org/pda/25.bmp
kane159
9th August 2009, 07:27 PM
can any one help me to make one for Trinity???
please every one.....
anja31
9th August 2009, 07:41 PM
First thanks to Da_G and Miri,
looks like the 23024 is a much better build for Touch HD, phone canvas is much better now -not perfect - but you can use it.... For me 23024 looks more speedy and stable. Give it a try.
smaury
9th August 2009, 07:47 PM
Here u are the lastest build 23024!!
http://rapidshare.com/files/265402751/23024_SYS_XIP.rar
http://aa.a.5d6d.com/userdirs/e/a/xbeta/attachments/day_090809/09080922227ed99f1d1ed4310e.jpg
CRACING
9th August 2009, 07:58 PM
How about .VM & \WinCENLS_WWE folder? Do i need it in \SYS\[build]\SHARED\COMMON ?
Sorry for noob questions, still learning on ervius kitchen..:D
Thanks
Yes you can place it in \SYS\[build]\SHARED\COMMON.
indagroove
9th August 2009, 08:08 PM
How is the phone canvas working for VGA on 23024? Is it still wacky scrolling?
ljankok
9th August 2009, 08:09 PM
Here u are the lastest build 23024!!
http://rapidshare.com/files/265402751/23024_SYS_XIP.rar
http://aa.a.5d6d.com/userdirs/e/a/xbeta/attachments/day_090809/09080922227ed99f1d1ed4310e.jpg
nice smaury.
good to see that the builds are coming rapidly.
shouldn't take long for it to be fit for everyday use :)
Montecristo
9th August 2009, 08:41 PM
How can I change the size of some items?
http://www.actors-studio.org/pda/25.bmp
ANy idea please??
Mr. Makk
9th August 2009, 08:45 PM
First thanks to Da_G and Miri,
looks like the 23024 is a much better build for Touch HD, phone canvas is much better now -not perfect - but you can use it.... For me 23024 looks more speedy and stable. Give it a try.
1. am not getting those button backgrounds in the softkeybar. see my screenshot.
http://forum.xda-developers.com/attachment.php?attachmentid=214461&stc=1&d=1249843415
am on topaz and i use dpi_192_resh_480_resv_800 of 23016 build.
is that the issue?
2. also the top bar is disturbed in start menu.
3. the start menu icons are moving upwards.
any solution to all this? anyone?
Mr. Makk
9th August 2009, 08:52 PM
I personally feel build 2016 was the end of wm6.5. nearly based on this build the current devices will be provided 6.5 roms. cause new builds require htc and many other applications to rework there app resolutions to match with wm6.5.x.
now is the start of either 6.5.x or wm7. where everythig changes in wm.
lets see. i personally hate the fact that my screen space is reduced. i wish they keep the idea of this button things in softkey bar but make it small like before. what do you guys say?
ace10134
9th August 2009, 08:57 PM
I personally feel build 2016 was the end of wm6.5. nearly based on this build the current devices will be provided 6.5 roms. cause new builds require htc and many other applications to rework there app resolutions to match with wm6.5.x.
now is the start of either 6.5.x or wm7. where everythig changes in wm.
lets see. i personally hate the fact that my screen space is reduced. i wish they keep the idea of this button things in softkey bar but make it small like before. what do you guys say?
Umm...No?? 6.5 is still in development, so no.
indagroove
9th August 2009, 08:58 PM
1. am not getting those button backgrounds in the softkeybar.
any solution to all this? anyone?
Are you using an older tapres.192.dll?
ivanmmj
9th August 2009, 08:58 PM
I'm working on a script that organizes all these SYS files/languages into the hierarchy needed for ervius's kitchen and any other kitchen based on it. (It does all languages at once.) But I'm still having a few bugs with the script (it's a big script so I made a few mistakes.) When I'm done with it, I'll post it here. (Or I'll post it here in a minute if you guys can help me debug where the problem is coming from. lol) Actually... it's lunch time. Later...
Mr. Makk
9th August 2009, 09:13 PM
Are you using an older tapres.192.dll?
tapres is i guess in base folders. if yes then am using from new build only. its only the dpi_192_resh_480_resv_800 folders that i use from build 23016.
Da_G
9th August 2009, 09:18 PM
Linked http://rapidshare.com/files/265402751/23024_SYS_XIP.rar in first post
Re: "End of 6.5 Development"
To be precise, 6.5 ended at 21234. Then followed 6.5.0.1.. 6.5.0.2... so forth.. :P
Mr. Makk
9th August 2009, 09:20 PM
Umm...No?? 6.5 is still in development, so no.
but if thats the case then htc will have to revamp every single app of there. specially manila and hone canvas, as both get cut from bottom. or is M$ gonna reduce the size of softkeybar back to normal?
Linked http://rapidshare.com/files/265402751/23024_SYS_XIP.rar in first post
Re: "End of 6.5 Development"
To be precise, 6.5 ended at 21234. Then followed 6.5.0.1.. 6.5.0.2... so forth.. :P
so wm6.5 is for older devices,
6.5.1 for topaz n rhodium etc.
n wm7 for multitouch devices?
or is it that wm7 minus multitouch for topaz n rhodium type devices
n wm7 plus multitouch for advanced devices?
OneSman7
9th August 2009, 09:22 PM
1. am not getting those button backgrounds in the softkeybar. see my screenshot.
http://forum.xda-developers.com/attachment.php?attachmentid=214461&stc=1&d=1249843415
am on topaz and i use dpi_192_resh_480_resv_800 of 23016 build.
is that the issue?
2. also the top bar is disturbed in start menu.
3. the start menu icons are moving upwards.
any solution to all this? anyone?
Concerning backgrounds: are they in SYS in BASE_DPI_XXX folder?
And do you have a proper DPI for your device?
vBulletin® v3.8.7, Copyright ©2000-2012, vBulletin Solutions, Inc.