As a not unimportant side note, the x86 platform is now much less interesting than it was back when Kyu was first developed. This is mostly because it has become all but impossible to interface to hardware. Modern desktop x86 machines no longer have parallel ports or the ISA bus and the PCI bus is all but gone. Intel has produced a handful of x86 products (The Galileo and Joule), but these miss the mark on several counts. They are expensive and poorly documented, both fatal issues when you can buy a BBB for $50 with extensive technical documentation. The Galileo sells for $75. The Joule completely misses the mark at $300 and with no wired network.
I have a bunch of Intel Pro/1000 MT network cards (e1000) laying around, so I plug one of these in. The BIOS menu now shows the choice of "IBA GE Slot 0138". "IBA" stands for Intel Boot Agent, and indeed this cryptic offering is the network card. I have no idea what "GE" is about or even "Slot 0138" for that matter. I configure this as the first and only boot choice and the machine is now trying to do a PXE boot and sending out a DHCPDISCOVER broadcast (I see this using wireshark). The screen says "No boot filename received".
dnf install dhcp-serverNow the thing to do is to edit /etc/dhcp/dhcpd.conf and start the service running.
systemctl start dhcpd.service.I can get the MAC address of the card from the screen or from wireshark.
Kyu / [email protected]