Hi,

When I build a XIP image of WinCE 4.2, although it is successfull, the
following warning messages are shown.
Why is f4b51000 shown in those messages ?
I do not write "f4b51000" address in my config.bib.
What's that ?
How to fix these warning messages ?


Thanks.

Yu.


Warning Messages:
----------------------------------------------------------------------------
--------------------------------------------
.....
Writing C:\WINCE420\PUBLIC\CoreOS\RelDir\SAMSUN~1\NK.bin
Failed calling bin2xip.exe
C:\WINCE420\PUBLIC\CoreOS\RelDir\SAMSUN~1\chain.bin
C:\WINCE420\PUBLIC\CoreOS\RelDir\SAMSUN~1\privkey.dat
Warning: Record starting at f4b51000 is outside of rom range, skipping...
Warning: Record starting at f4b51040 is outside of rom range, skipping...
Warning: Record starting at f4b52000 is outside of rom range, skipping...
Warning: Record starting at f4bf5e38 is outside of rom range, skipping...
Warning: Record starting at f4c0d000 is outside of rom range, skipping...
Warning: Record starting at f4c1b000 is outside of rom range, skipping...
Warning: Record starting at f4c24000 is outside of rom range, skipping...
Warning: Record starting at f4c2d000 is outside of rom range, skipping...
.....
----------------------------------------------------------------------------
--------------------------------------------



My config.bib is shown in the following:
--------------------------------------------------------------------------
----------------------------------------------

#define XIPKernelStart 8c200000
#define XIPKernelLEN 00150000

#define RAMSTART 8C351000
#define RAMLEN 03CAF000

#define XIPCHAIN_LEN 00001000
#define XIPLOC_PHYSICAL 8C350000

#define EDBGSTART 8c010000
#define EDBGLEN 00038000




COREKERNEL $(XIPKernelStart ) $(XIPKernelLEN ) RAMIMAGE
NK 80D51000 01700000
NANDIMAGE
RESERVE $(XIPLOC_PHYSICAL) $(XIPCHAIN_LEN)
RAM $(RAMSTART) $(RAMLEN)
RAM
EDBG $(EDBGSTART) $(EDBGLEN)
RESERVED
pdwXIPLoc 00000000 $(XIPLOC_PHYSICAL)
FIXUPVAR


#define PAGINGPOOLSIZE 00200000


; Common RAM areas
AUD_DMA 8c002000 00002000 RESERVED
DRV_GLB 8c010000 00010000 RESERVED
DBGSER_DMA 8c022000 00002000 RESERVED
SER_DMA 8c024000 00002000 RESERVED
IR_DMA 8c026000 00002000 RESERVED
SD_DMA 8c028000 00008000 RESERVED
EDBG 8c030000 00020000 RESERVED
CPXIPCHAIN 8c050000 00008000 RESERVED
SLEEP_BUFF 8c058000 00004000 RESERVED
DISPLAY 8c100000 00100000 RESERVED


CONFIG


COMPRESSION=ON
KERNELFIXUPS=ON
AUTOSIZE=ON
ROM_AUTOSIZE=OFF
RAM_AUTOSIZE=OFF
DLLADDR_AUTOSIZE=ON
XIPSCHAIN=$(XIPLOC_PHYSICAL)


IF IMGPROFILER
PROFILE=ON
ENDIF
IF IMGPROFILER !
PROFILE=OFF
ENDIF


ROMFLAGS=0

ROMSTART=$(XIPKernelStart )
ROMWIDTH=32
ROMSIZE=01700000

RE: Failed calling bin2xip.exe .... ?? by Umesh

Umesh
Tue Dec 14 02:37:02 CST 2004

hi ,
This a problem of incorrect or overlapping memory assignment in config.bib.
could u send us ur memorymap file too..it will be more clear.
thank you
regards
Umesh Jagga

"Yu" wrote:

> Hi,
>
> When I build a XIP image of WinCE 4.2, although it is successfull, the
> following warning messages are shown.
> Why is f4b51000 shown in those messages ?
> I do not write "f4b51000" address in my config.bib.
> What's that ?
> How to fix these warning messages ?
>
>
> Thanks.
>
> Yu.
>
>
> Warning Messages:
> ----------------------------------------------------------------------------
> --------------------------------------------
> ......
> Writing C:\WINCE420\PUBLIC\CoreOS\RelDir\SAMSUN~1\NK.bin
> Failed calling bin2xip.exe
> C:\WINCE420\PUBLIC\CoreOS\RelDir\SAMSUN~1\chain.bin
> C:\WINCE420\PUBLIC\CoreOS\RelDir\SAMSUN~1\privkey.dat
> Warning: Record starting at f4b51000 is outside of rom range, skipping...
> Warning: Record starting at f4b51040 is outside of rom range, skipping...
> Warning: Record starting at f4b52000 is outside of rom range, skipping...
> Warning: Record starting at f4bf5e38 is outside of rom range, skipping...
> Warning: Record starting at f4c0d000 is outside of rom range, skipping...
> Warning: Record starting at f4c1b000 is outside of rom range, skipping...
> Warning: Record starting at f4c24000 is outside of rom range, skipping...
> Warning: Record starting at f4c2d000 is outside of rom range, skipping...
> ......
> ----------------------------------------------------------------------------
> --------------------------------------------
>
>
>
> My config.bib is shown in the following:
> --------------------------------------------------------------------------
> ----------------------------------------------
>
> #define XIPKernelStart 8c200000
> #define XIPKernelLEN 00150000
>
> #define RAMSTART 8C351000
> #define RAMLEN 03CAF000
>
> #define XIPCHAIN_LEN 00001000
> #define XIPLOC_PHYSICAL 8C350000
>
> #define EDBGSTART 8c010000
> #define EDBGLEN 00038000
>
>
>
>
> COREKERNEL $(XIPKernelStart ) $(XIPKernelLEN ) RAMIMAGE
> NK 80D51000 01700000
> NANDIMAGE
> RESERVE $(XIPLOC_PHYSICAL) $(XIPCHAIN_LEN)
> RAM $(RAMSTART) $(RAMLEN)
> RAM
> EDBG $(EDBGSTART) $(EDBGLEN)
> RESERVED
> pdwXIPLoc 00000000 $(XIPLOC_PHYSICAL)
> FIXUPVAR
>
>
> #define PAGINGPOOLSIZE 00200000
>
>
> ; Common RAM areas
> AUD_DMA 8c002000 00002000 RESERVED
> DRV_GLB 8c010000 00010000 RESERVED
> DBGSER_DMA 8c022000 00002000 RESERVED
> SER_DMA 8c024000 00002000 RESERVED
> IR_DMA 8c026000 00002000 RESERVED
> SD_DMA 8c028000 00008000 RESERVED
> EDBG 8c030000 00020000 RESERVED
> CPXIPCHAIN 8c050000 00008000 RESERVED
> SLEEP_BUFF 8c058000 00004000 RESERVED
> DISPLAY 8c100000 00100000 RESERVED
>
>
> CONFIG
>
>
> COMPRESSION=ON
> KERNELFIXUPS=ON
> AUTOSIZE=ON
> ROM_AUTOSIZE=OFF
> RAM_AUTOSIZE=OFF
> DLLADDR_AUTOSIZE=ON
> XIPSCHAIN=$(XIPLOC_PHYSICAL)
>
>
> IF IMGPROFILER
> PROFILE=ON
> ENDIF
> IF IMGPROFILER !
> PROFILE=OFF
> ENDIF
>
>
> ROMFLAGS=0
>
> ROMSTART=$(XIPKernelStart )
> ROMWIDTH=32
> ROMSIZE=01700000
>
>
>

Re: Failed calling bin2xip.exe .... ?? by Yu

Yu
Tue Dec 14 05:42:53 CST 2004

Hi,

My config.bib is shown in the following:


Yu.
--------------------------------------------------------------------------

#define XIPKernelStart 8c200000
#define XIPKernelLEN 00150000

#define RAMSTART 8C351000
#define RAMLEN 03CAF000

#define XIPCHAIN_LEN 00001000
#define XIPLOC_PHYSICAL 8C350000

#define EDBGSTART 8c010000
#define EDBGLEN 00038000




COREKERNEL $(XIPKernelStart ) $(XIPKernelLEN ) RAMIMAGE
NK 80D51000 01700000
NANDIMAGE
RESERVE $(XIPLOC_PHYSICAL) $(XIPCHAIN_LEN)
RAM $(RAMSTART) $(RAMLEN)
RAM
EDBG $(EDBGSTART) $(EDBGLEN)
RESERVED
pdwXIPLoc 00000000 $(XIPLOC_PHYSICAL)
FIXUPVAR


#define PAGINGPOOLSIZE 00200000


; Common RAM areas
AUD_DMA 8c002000 00002000 RESERVED
DRV_GLB 8c010000 00010000 RESERVED
DBGSER_DMA 8c022000 00002000 RESERVED
SER_DMA 8c024000 00002000 RESERVED
IR_DMA 8c026000 00002000 RESERVED
SD_DMA 8c028000 00008000 RESERVED
EDBG 8c030000 00020000 RESERVED
CPXIPCHAIN 8c050000 00008000 RESERVED
SLEEP_BUFF 8c058000 00004000 RESERVED
DISPLAY 8c100000 00100000 RESERVED


CONFIG


COMPRESSION=ON
KERNELFIXUPS=ON
AUTOSIZE=ON
ROM_AUTOSIZE=OFF
RAM_AUTOSIZE=OFF
DLLADDR_AUTOSIZE=ON
XIPSCHAIN=$(XIPLOC_PHYSICAL)


IF IMGPROFILER
PROFILE=ON
ENDIF
IF IMGPROFILER !
PROFILE=OFF
ENDIF


ROMFLAGS=0

ROMSTART=$(XIPKernelStart )
ROMWIDTH=32
ROMSIZE=01700000