I finally succeed to load linux kernel image via etherboot............
but I encountered following error
Loading 192.168.0.1: /tftpboot/vmlinuz.epia...(ELF)..............................erhine disable
Unknown bootloader class ! type= 00000000 data= 0009882e Firmware type: LinuxBIOS
it's all I got................
I made kernel image on the host computer( p4-2.65GHz, 512ddr)
Of course, its configuration is fit for my host computer.
Thanks for any help......................
From the clumsy beginner
_________________________________________________________________ 행운의 주인공이 이번엔 나일꺼야, 진짜루... 인터넷 복권 http://www.msn.co.kr/money/interlotto/
On Sun, Jul 27, 2003 at 02:24:10PM +0000, gimyung han wrote:
Unknown bootloader class ! type= 00000000 data= 0009882e
This is from setup code of your ELF kernel, and it's not an error, just a warning.
Firmware type: LinuxBIOS it's all I got................
If you configure your kernel to have console on serial port and give the command line like "console=ttyS0,115200" to the kernel (at mkelfImage), you should see the messages from kernel in addition to the above lines.
I made kernel image on the host computer( p4-2.65GHz, 512ddr)
Of course, its configuration is fit for my host computer.
EPIA doesn't boot with kernel optimized for P4, because C3 processor doesn't have CMOV instructions. You should use a kernel compiled for C3.
-- Takeshi
did you load a kernel or an elfimage built from a kernel?
You are making good progress.
ron
On Mon, 28 Jul 2003, SONE Takeshi wrote:
On Sun, Jul 27, 2003 at 02:24:10PM +0000, gimyung han wrote:
Unknown bootloader class ! type= 00000000 data= 0009882e
This is from setup code of your ELF kernel, and it's not an error, just a warning.
Firmware type: LinuxBIOS it's all I got................
If you configure your kernel to have console on serial port and give the command line like "console=ttyS0,115200" to the kernel (at mkelfImage), you should see the messages from kernel in addition to the above lines.
Oh, right, you should do this for your very first kernel: - make it an i386, and turn off all features (mtrr, etc). - turn off vga consoles - enable console on serial port
ron