Hey all figure I’d give an update.
Never heard anything back from the iPXE community but pressed on and almost got it solved.
I added [COLOR=#ff0000]PCI_ROM(0x1969, 0x1062, “atl1e_62”, “Attansic L1E 0x1062”, 0),[/COLOR] drivers/net/atl1e.c and rebuilt iPXE and the laptop now fully loads iPXE! <I ran around the library when this happened>
Unfortunately I get /default.ipxe…Connection times out after a few minutes.
From the iPXE shell running dhcp<fails>, ifconf<passes> i can then chain the file.
If i leave out dhcp ifconf fails, if I run ifconf first it fails but then if I run dhcp it passes which doesn’t make any since to me.
So in a confusing summary:
dhcp(fail)>ifconf>chain - works
ifconf(fail)>dhcp>chain - works
dhcp(fail)>dhcp>chain - works
ifconf(fail)>ifconf>chain - works
Set ipxescript to the following:
[CODE]#!ipxe
ifclose
ifopen && goto bootme || goto netstart
:netstart
dhcp
ifopen || reboot
isset ${next-server} && goto netboot || goto setserv
:setserv
echo -n Please enter tftp server: && read next-server && goto bootme
:bootme
isset ${next-server} && goto netboot ||
set next-server ${proxydhcp/next-server}
isset ${next-server} && goto netboot || goto netstart
:netboot
ifopen
dhcp || ifconf
chain tftp://${next-server}/default.ipxe || shell
[/CODE]
Which then gives:
Configuring (net0 d4:be:d9:05:f4:49)…Error 0x040ee19 ([url]http://ipxe.org/040ee119[/url])
Configuring (net0 d4:be:d9:05:f4:49)…Error 0x040ee19 ([url]http://ipxe.org/040ee119[/url])
And the boot process restarts. Any suggestions?