[WM Kitchen] The osKitchen v1.32 Development Thread (OBSOLETE)

Search This thread

bobsbbq

Senior Member
Jun 8, 2008
5,208
356
Cleveland, TX
The videodialer package has an invalid DSM file and there was a bug in the error message generation that caused the crash.

Ok that's good to know, So I have went through and I have to tell you this is a great move forward. I would have never guess I had this many errors in some reg file. lol

There is a issue with app.dat reporting a error on line 1 of almost every package so I assume you already are aware of this.

But fully working and building ROM's again

Thanks
 

RoryB

Inactive Recognized Developer
Sep 4, 2008
2,921
766
Lexington
I just downloaded, but going to a meeting. I'll set up and test on the old Wizard as soon as I can. Might be a few days.
 

bobsbbq

Senior Member
Jun 8, 2008
5,208
356
Cleveland, TX
Well I'm not sure what is up with the app.dat files, but all the ones showing errors are not being added in the ROM. When I open them they look ok.

What is causing the error?
 

bobsbbq

Senior Member
Jun 8, 2008
5,208
356
Cleveland, TX
Try to save your app.dat in Unicode.

That solve the (problem) for me.

Thanks will give it a try.


Also I have this error from Total Commander. It was imported from a cab file and is showing error on this line:

[HKEY_CLASSES_ROOT\ZIPArchive\Shell\Open\Command]
@=""Windows\\cecmd.exe" "%1""

What would be the correct format for this varible?
 

airxtreme

Retired Recognized Developer
Feb 19, 2008
1,119
23
Thanks will give it a try.


Also I have this error from Total Commander. It was imported from a cab file and is showing error on this line:

[HKEY_CLASSES_ROOT\ZIPArchive\Shell\Open\Command]
@=""Windows\\cecmd.exe" "%1""

What would be the correct format for this varible?

This is the correct format
Code:
[HKEY_CLASSES_ROOT\ZIPArchive\Shell\Open\Command]
@="\"Windows\\cecmd.exe\" \"%1\""
 

af974

Retired Recognized Developer / Retired Forum Mod
Jan 22, 2008
4,934
1,683
Redmi Note 8
Testing alpha5:

It seems that many problems are solved but:

_Some packages lack a dsm file inside( the dsm is still here)

_Double .RGU in MXIPKernel ( one of them is boot_ms.rgu but its been always as now)

Anyway the rom boot up and run fine without problems.

I dont remember if i changed something in my build but now it is more slim (about 7 mb) as before....could it be possible?
 

airxtreme

Retired Recognized Developer
Feb 19, 2008
1,119
23
Testing alpha5:

It seems that many problems are solved but:

_Some packages lack a dsm file inside( the dsm is still here)

_Double .RGU in MXIPKernel ( one of them is boot_ms.rgu but its been always as now)

Anyway the rom boot up and run fine without problems.

I dont remember if i changed something in my build but now it is more slim (about 7 mb) as before....could it be possible?

Unless it's a bug for now there shouldn't be any difference between the files cooked in 1.31 and 1.32.
 

bobsbbq

Senior Member
Jun 8, 2008
5,208
356
Cleveland, TX
I have a problem now with 1.31 alpha3, I had been build just fine then I was ready to make final changes to the version number etc and now I get a error when generating nbh file.

All I changed was the NBH Structure.xml to change the release date, and I have a provxml in OEMVersion that I have my version numbers in and I just changed the build number.

Now I get this crash error:
 

Attachments

  • oskitchen-nbh-error.jpg
    oskitchen-nbh-error.jpg
    82.3 KB · Views: 33
Last edited:

bobsbbq

Senior Member
Jun 8, 2008
5,208
356
Cleveland, TX
I dumped a original ROM and took the NBH Structure.xml from it and now it works.

I have the same problem with reduced size of .nbh file.

I notice I have a lot of errors stating no .dsm file exist. These are mostly in the o4o9 folders.

If there is no dsm file are these 0409 folders excluded from the build?
 

bobsbbq

Senior Member
Jun 8, 2008
5,208
356
Cleveland, TX
Ok error again generating nbh file? Has something changed in the NBH Structure .xml that is causing these errors?

With this stock NBH Structure.xml it will buil NBH:

Code:
<?xml version="1.0" encoding="utf-16"?>
<!--This document describes the contents of your NBH file. Upon building libnb will check for these files in the input folder to add them to your .NBH - Any files not found will be skipped and not included-->
<NBHFile Signed="1" ModelID="PB8110000" CID="CSL__001" Version="1.72.831.1" Language="USA" DataChunkSize="64">
  <ItemList>
    <Item ItemID="0x301" FileName="radio.nb" />
    <Item ItemID="0x380" FileName="radiocust.nb" />
    <Item ItemID="0x200" FileName="spl.nb" />
    <Item ItemID="0x600" FileName="splash.nb" />
    <Item ItemID="0x400" FileName="os.nb" />
    <Item ItemID="0x920" FileName="conf.nb" />
    <Item ItemID="0x900" FileName="extrom.nb" />
    <Item ItemID="0x610" FileName="unknownsplash1.nb" />
    <Item ItemID="0x611" FileName="unknownsplash2.nb" />
  </ItemList>
</NBHFile>


But is I change the Version number I get these errors as above.

This was my old NBH Stucture.xml file I used for a long time:

Code:
<?xml version="1.0" encoding="utf-16"?>
<!--This document describes the contents of your NBH file. The IncludedInNBH attribute can be used to include (1) or exclude (0) that item from your final NBH-->
<NBHFile Signed="1" ModelID="PB8110000" CID="Leo" Version="LIA_ROMS_04_Sept" Language="WWE" DataChunkSize="64">
  <ItemList>
    <Item IncludedInNBH="0" ItemID="0x301" FileName="radio.nb" />
    <Item IncludedInNBH="0" ItemID="0x380" FileName="radiocust.nb" />
    <Item IncludedInNBH="0" ItemID="0x200" FileName="spl.nb" />
    <Item IncludedInNBH="1" ItemID="0x600" FileName="splash.nb" />
    <Item IncludedInNBH="1" ItemID="0x400" FileName="os.nb" />
    <Item IncludedInNBH="0" ItemID="0x920" FileName="conf.nb" />
    <Item IncludedInNBH="0" ItemID="0x610" FileName="unknownsplash1.nb" />
    <Item IncludedInNBH="0" ItemID="0x611" FileName="unknownsplash2.nb" />
  </ItemList>
</NBHFile>

I even tried only changing the version number in the first one above to :
"LIA_ROMS_04_Sept" but it failed also.

Thanks for any explanation. I did not have this problem with 1.32alfa2
 

airxtreme

Retired Recognized Developer
Feb 19, 2008
1,119
23
Ok error again generating nbh file? Has something changed in the NBH Structure .xml that is causing these errors?

With this stock NBH Structure.xml it will buil NBH:

Code:
<?xml version="1.0" encoding="utf-16"?>
<!--This document describes the contents of your NBH file. Upon building libnb will check for these files in the input folder to add them to your .NBH - Any files not found will be skipped and not included-->
<NBHFile Signed="1" ModelID="PB8110000" CID="CSL__001" Version="1.72.831.1" Language="USA" DataChunkSize="64">
  <ItemList>
    <Item ItemID="0x301" FileName="radio.nb" />
    <Item ItemID="0x380" FileName="radiocust.nb" />
    <Item ItemID="0x200" FileName="spl.nb" />
    <Item ItemID="0x600" FileName="splash.nb" />
    <Item ItemID="0x400" FileName="os.nb" />
    <Item ItemID="0x920" FileName="conf.nb" />
    <Item ItemID="0x900" FileName="extrom.nb" />
    <Item ItemID="0x610" FileName="unknownsplash1.nb" />
    <Item ItemID="0x611" FileName="unknownsplash2.nb" />
  </ItemList>
</NBHFile>


But is I change the Version number I get these errors as above.

This was my old NBH Stucture.xml file I used for a long time:

Code:
<?xml version="1.0" encoding="utf-16"?>
<!--This document describes the contents of your NBH file. The IncludedInNBH attribute can be used to include (1) or exclude (0) that item from your final NBH-->
<NBHFile Signed="1" ModelID="PB8110000" CID="Leo" Version="LIA_ROMS_04_Sept" Language="WWE" DataChunkSize="64">
  <ItemList>
    <Item IncludedInNBH="0" ItemID="0x301" FileName="radio.nb" />
    <Item IncludedInNBH="0" ItemID="0x380" FileName="radiocust.nb" />
    <Item IncludedInNBH="0" ItemID="0x200" FileName="spl.nb" />
    <Item IncludedInNBH="1" ItemID="0x600" FileName="splash.nb" />
    <Item IncludedInNBH="1" ItemID="0x400" FileName="os.nb" />
    <Item IncludedInNBH="0" ItemID="0x920" FileName="conf.nb" />
    <Item IncludedInNBH="0" ItemID="0x610" FileName="unknownsplash1.nb" />
    <Item IncludedInNBH="0" ItemID="0x611" FileName="unknownsplash2.nb" />
  </ItemList>
</NBHFile>

I even tried only changing the version number in the first one above to :
"LIA_ROMS_04_Sept" but it failed also.

Thanks for any explanation. I did not have this problem with 1.32alfa2

I haven't recompiled libnb in weeks so it's probably either a malformed XML or the version number being too long (must be less than 16chr).
 

ceesheim

Retired Forum Moderator
Jun 11, 2009
3,457
2,288
No Android Fanboys Please !!!
Hi , I use the alpha 5 and I also have a lot of dsm missing but they are all there .
I read a view posts and there are more that have the same problem , my only Q is , is this a bug or is it something els ?

lol , another Q

lots of modules have a imageinfo.txt , can I remove them ?
 
Last edited:

sternas

Senior Member
Dec 28, 2008
5,267
1,292
www.pilotlogic.com
for "alpha 5" same problems as previous posts...
_Some packages lack a dsm file inside( the dsm is still here)
_Double .RGU in MXIPKernel ( one of them is boot_ms.rgu but its been always as now)


....
lots of modules have a imageinfo.txt , can I remove them ?

Yes....
Search to Build folder for "imageinfo.txt"->select all->Delete...
 
Last edited:

ausdim

Senior Member
Jan 9, 2007
882
2,591
Some packages lack a dsm file inside( the dsm is still here)

I have that problem too and i found in my packages have missing .dsm in LCID folder.

Chek you have the .dsm in 040xx folder.

When i create a new dsm the error gone. :D
 

Top Liked Posts