From owner-freebsd-arm@FreeBSD.ORG Mon Jun 8 22:16:05 2015 Return-Path: Delivered-To: freebsd-arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3D697BF4 for ; Mon, 8 Jun 2015 22:16:05 +0000 (UTC) (envelope-from perretcantonim@gmail.com) Received: from mail-wi0-x236.google.com (mail-wi0-x236.google.com [IPv6:2a00:1450:400c:c05::236]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CA9D71500 for ; Mon, 8 Jun 2015 22:16:04 +0000 (UTC) (envelope-from perretcantonim@gmail.com) Received: by wiwd19 with SMTP id d19so1092612wiw.0 for ; Mon, 08 Jun 2015 15:16:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=l0Z9B0gXmVZyY2Wg6k7I/xIHfH1FkGkOW3m2Bi0TU90=; b=fMlzSSDHUYVLmfsl9MPubM+VRHX3+aDKP2llyFqVLjuunrjH0p/Vbhf4mymH4eon8Z bOH7cXxB2delPiMIDsRBqZhRqKummZhqkavV0cEejNyu1mCaNPapssaAtKD4Fs8xa8VN 0PKTLNS1e5pjAaY3VlAgD/N5LHWiaXj98IWaoiusT2Ern+HOU0y7AwWS5JV6mSq2vR8Z 7irlBFsLuUCoqVWR8+cZbTiPEOZV+5PcTx4ewrVL3envIqTzAP7ea89OSs73sV7uXqoL laj+Og8+cqQZvD6WNnPcBuUvtN+fLWahVrjbFQ/IKcgo+rQHtCnbOW4vAeFBJnwcl+hx CsHQ== MIME-Version: 1.0 X-Received: by 10.180.9.7 with SMTP id v7mr26301975wia.60.1433801763383; Mon, 08 Jun 2015 15:16:03 -0700 (PDT) Received: by 10.27.179.3 with HTTP; Mon, 8 Jun 2015 15:16:03 -0700 (PDT) Date: Mon, 8 Jun 2015 19:16:03 -0300 Message-ID: Subject: Reduce 10 sec delay of loader? From: =?UTF-8?Q?Mat=C3=ADas_Perret_Cantoni?= To: freebsd-arm@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jun 2015 22:16:05 -0000 Hi! I'm trying to avoid the 10 sec wait on boot time: /boot/kernel/kernel data=0x4b3fc8+0x2c038 syms=[0x4+0x78c40+0x4+0x4b17f] Hit [Enter] to boot immediately, or any other key for command prompt. Booting [/boot/kernel/kernel] in 9 seconds ... ... I created the file /boot/loader.conf (since there wasn't one on my system) to override the loader_delay and autoboot_delay variables defined in /boot/defaults/loader.conf : # cat /boot/loader.conf loader_delay="1" autoboot_delay="1" But loader still waits 10 seconds before booting. I read the loader.conf(5) and loader(8) manuals, but I can't see what I'm doing wrong. Can you point me some directions? I'm running 10.1-RELEASE FreeBSD on the ZedBoard. Thanks in advance. Regards, Matias.-