Boot picture with letters

Cabrito
I know that we have two pictures, the first can be changed with supervivi
and the second with PlatFormBuilder and the StartLogo file.
But I want to "create" a start like Linux, with a console, not a static
picture. 
Can I do this?
Thanks

domodom
I don't know if it fills your need, but you can have debug data sent to the
serial port if you want :
http://www.domodom.fr/spip/Activer-les-traces-de-Debug-sur-la.html
Domodom

Cabrito
If you open the "CodeWarrior project file" in the DVD (in the location
uCos2\uCos2) and then load the .bin file created in the program, and with
the "dnw" you activate the option D "Download & Run", you could see that
there are 2 places where you could write like MS-DOS.
The functions that write on uCos2 are:
void Lcd_PutASCII(unsigned int x,unsigned int y,unsigned char ch,unsigned
int c,unsigned int bk_c,unsigned int st)
void Lcd_PutHZ(unsigned int x,unsigned int y,unsigned short int QW,unsigned
int c,unsigned int bk_c,unsigned int st)
void Lcd_printf(unsigned int x,unsigned int y,unsigned int c,unsigned int
bk_c,unsigned int st,char *fmt,...)
void PutPixel(U32 x,U32 y, U16 c )

I would like to know if I can use this functions, or implement, in my
"WinCE6.0" nboot. At the moment, we can paint pixels, (we modify the
function putpixel), but we don't achieve to write characters.

Sorry for my english and thanks

Errol
nboot doesn't contain a font. Adding a font will probably push the binary
over the 2KB file size complicating the loading as the cpu only loads the
first 2KB during booting...

Cabrito
Where can I watch that the cpu only loads the first 2kb during booting?
And how can I do for increase my boot memory?
Thanks a lot