Re: Unknown error: code 60 installing OpenBSD/macppc in iMac G3

2012-03-12 Thread Martin Pieuchot
On 11/03/12(Sun) 20:27, Daniel Bolgheroni wrote:
 Hi misc@,
 
 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.

You'll need a nfs server for booting a macppc.

 
 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@f400/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.

You should have a look at INSTALL.macppc [0], it says:

boot enet:,ofwboot /bsd.rd
(netboot from a pre-configured dhcp/tftp/nfs
server; ofwboot will be obtained from the tftp server,
while bsd.rd will be obtained from the NFS server,
as specified by the next-server and root-path dhcp
options)


Martin

[0] ftp://ftp.openbsd.org/pub/OpenBSD/snapshots/macppc/INSTALL.macppc



Unknown error: code 60 installing OpenBSD/macppc in iMac G3

2012-03-11 Thread Daniel Bolgheroni
Hi misc@,

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@f400/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.

Thank you.



Re: Unknown error: code 60 installing OpenBSD/macppc in iMac G3

2012-03-11 Thread Theo de Raadt
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@f400/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.