>tired of using these crap CD-ROM units, I've decided to give it a try >booting from a TFTP server, to install OpenBSD/macppc on one of the >iMacs I have here. > >I configured tftpd running on a OpenBSD/amd64 machine according to >section 6.10 of the FAQ, with the needed files. > >So, here is what I have: > >0 > boot enet:,ofwboot /bsd.rd >CLIENT: 000a27d6afae 192.168.1.32 >SERVER: 001b242e5ce6 192.168.1.7 >Transfer FILE ofwboot \ >TFTP-actual=fe88 TFTP-adler32=2e938515 load-size=fe88 adler32=2e938515 > >Loading ELF >>> OpenBSD/macppc BOOT 1.2 >open(/pci@f4000000/ethernet:/etc/boot.conf): Unknown error: code 60 >boot> > >After this, the same error repeats trying /bsd.rd, /bsd, etc. > >Anyone has any clues on this? I really don't want to ever touch an >optical driver again.
In almost all cases where we print an "error" number, it is an errno from /sys/sys/errno.h. We'd print it by the prober name for the error, but there is no room on the bootblocks for that table. Here's the error: #define ETIMEDOUT 60 /* Operation timed out */ Likely this means that you have not setup some service that the bootloader needs for filesystem access. Different bootloaders have different network file system requirements -- check diskless(8) for more information.