componentize "ntoskrnl.exe"

  • Thread starter Thread starter twicave
  • Start date Start date
T

twicave

For change boot screen appearance, I modified "ntoskrnl.exe".
But when i compose component for the modify. I got problem:
the target image always include the original file, not the modified
"ntoskrnl.exe".

which one can help me solve it? thanks a lot
 
Instead of modifing the kernel binary, you could use the boot.ini option
/bootlogo /noguiboot with a boot.bmp (640x480 4BPP -16colors) file saved in
the c:\Windows folder.

[boot loader]
timeout=0
default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS
[operating systems]

multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Embedded"
/fastdetect /bootlogo /noguiboot


Regards,

Sean Liming
www.sjjmicro.com / www.seanliming.com
XP Embedded Book Author - XP Embedded Advanced, XP Embedded Supplemental
Toolkit.
 
Don't wrtie the original "ntoskrnl.exe", simply use another name

multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Embedded
(Boot-Logo)" /fastdetect /KERNEL=NTOSBOOT.EXE

and call "NTOSBOOT.EXE" to the modified kernel

Remember to write this component in the last FBA Phase
 
Back
Top