From owner-freebsd-questions@FreeBSD.ORG Thu Feb 7 19:00:11 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7E9C816A56E for ; Thu, 7 Feb 2008 19:00:11 +0000 (UTC) (envelope-from rekjed@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.176]) by mx1.freebsd.org (Postfix) with ESMTP id 763A413C44B for ; Thu, 7 Feb 2008 19:00:04 +0000 (UTC) (envelope-from rekjed@gmail.com) Received: by wa-out-1112.google.com with SMTP id k17so7301waf.3 for ; Thu, 07 Feb 2008 11:00:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:user-agent:mime-version:to:subject:content-type:content-transfer-encoding; bh=oqpEJiEOpNsaVuAehWv+XWMoqui0pvVv8t9DWbl+76Y=; b=n9hEY1AdXFqQY6MuPjUAgYMR4pzkuZyfxKkB3uq7mCt6IukH/mPQSEwl4TJ3ir68xql+s7GyzpAVO1E6ZUnqk5FxO4O+LElsrT7Pf5srGDm1zHazoG315skJgDCHvfcEYn4XuG7erb4BVx5KSuaPA5G12NBEzTNSnn7MXAOP7CM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:content-type:content-transfer-encoding; b=c3S5qGEpqAKtJDCOrqNC6tX1Fyfo9MYSSVRHDjAz80LV76BP5lrinPmnLwmTx37v5c5C7X+EjgTKvQN+D5llyuFJd4vA0y6LL4gqWupQCwGdmShcle7KC4uQoQXGHXBhvDVriXJGcSQASaNbyrwXTWmkKZrH9M62+LCVXN4k1PI= Received: by 10.114.12.9 with SMTP id 9mr6265010wal.23.1202409235782; Thu, 07 Feb 2008 10:33:55 -0800 (PST) Received: from mig.darq.net ( [87.194.127.168]) by mx.google.com with ESMTPS id i4sm583034nfh.26.2008.02.07.10.33.53 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 07 Feb 2008 10:33:53 -0800 (PST) Message-ID: <47AB4F00.1080307@gmail.com> Date: Thu, 07 Feb 2008 18:33:36 +0000 From: Rek Jed User-Agent: Thunderbird 2.0.0.9 (X11/20071231) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: pxeboot, TFTP only, NFS MOUNT RPC error: 60, timeout X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Feb 2008 19:00:11 -0000 Hey, I've been building FreeBSD jumpstart infrastructure and it mostly works. I'm using tftp to boot off the network in to scripted sysinstall. I compiled the boot loader with tftp support but every time I boot it will first try nfs, then timeout after around two minutes (it cannot find nfs) and finally boot from tftp. Is there any way that I can make it boot from tftp straight away rather than wait for nfs to timeout? This is how I build the boot loader: cd /usr/src/sys/boot sudo make clean sudo make LOADER_TFTP_SUPPORT=YES sudo cp i386/pxeldr/pxeboot /jumpstart/tftpd/boot/pxeboot.0 sudo cp i386/boot0/boot0 /jumpstart/tftpd/boot/ sudo cp i386/boot2/boot1 /jumpstart/tftpd/boot/ sudo cp i386/boot2/boot2 /jumpstart/tftpd/boot/ sudo cp i386/mbr/mbr /jumpstart/tftpd/boot/ This is my loader.conf: # loader.conf init_path="/stand/sysinstall" rootfs_load="YES" rootfs_name="/boot/mfsroot" rootfs_type="mfs_root" vfs.root.mountfrom="ufs:/dev/md0c" autoboot_delay=0 And loader.rc: #loader.rc echo hopping the kernel... include /boot/loader.4th start Many thanks, Jedrek