From owner-freebsd-mips@FreeBSD.ORG Tue Feb 4 22:24:59 2014 Return-Path: Delivered-To: freebsd-mips@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 601D2593 for ; Tue, 4 Feb 2014 22:24:59 +0000 (UTC) Received: from mail-ob0-x22f.google.com (mail-ob0-x22f.google.com [IPv6:2607:f8b0:4003:c01::22f]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2838D13D1 for ; Tue, 4 Feb 2014 22:24:59 +0000 (UTC) Received: by mail-ob0-f175.google.com with SMTP id wn1so10242990obc.34 for ; Tue, 04 Feb 2014 14:24:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=XylcHCq+1tYOAMWyn8pCavUXWNEMasyJBWMCWk2ICl4=; b=QlR64Yr3wOLdjoOMKLXgrXQMUKzNeKVATBUeFsgK8wBvJZ7B98WEohx1q2vc1z1X0L R2pM4dbcLGZI6/J35Mj+iKIMdRmzrT3ohUeJ9LtsgSt0dVj+VYRoAWC6ziqpL0c6Ah0t W6g5CalUMeML4bd2taCbszIReyAeS5TjDnvlxw7UzH9OlBiYUB6lFNFwGBTyFF4iGyB1 sdlLrUxEnB5vWCo7rrsOJD5UFQHNCid6/bUrNW2jdJmBYufje7VcGP8DEmqTQutOzM1b hFSjKiU8LqD37zk+ICDF8RHrosh8gP9XJoq+bmLqqhGQ6Hu9YBCdYKD8RSQMkRZMiLl+ krAQ== MIME-Version: 1.0 X-Received: by 10.182.88.69 with SMTP id be5mr4789304obb.55.1391552698319; Tue, 04 Feb 2014 14:24:58 -0800 (PST) Sender: ndorfman@gmail.com Received: by 10.60.74.101 with HTTP; Tue, 4 Feb 2014 14:24:58 -0800 (PST) In-Reply-To: <52EE7183.1070806@pix.net> References: <20140125210308.GA6936@rtfm.net> <52EE7183.1070806@pix.net> Date: Tue, 4 Feb 2014 17:24:58 -0500 X-Google-Sender-Auth: bG5Gss57S_fSKHWsgOfhT7zUpMI Message-ID: Subject: Re: FreeBSD 10.0 image and build script for EdgeRouter Lite From: Nathan Dorfman To: Kurt Lidl Content-Type: text/plain; charset=UTF-8 Cc: freebsd-mips@freebsd.org X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Feb 2014 22:24:59 -0000 On Sun, Feb 2, 2014 at 11:25 AM, Kurt Lidl wrote: > In booting this up, I see the warning: > > warning: no time-of-day clock registered, system time will not be set > accurately > > I don't see anything in the kernel config file for a realtime clock > or time-of-day chip on these boards. Does anybody know anything about > what TOD/RTC these boards have on them. I've got a secondhand report > that the clock on these keeps very good time when running the UBNT > supplied linux system. > > Looking at the '/var/log/dmesg' from one of these running the linux > system, I didn't see anything related to a RTC/TOD clock, but I might > have just missed it in my quick scan of the devices. Hi Kurt, I don't think there is a hardware clock on the device, though I could be wrong. I bet the vendor firmware has NTP on by default, though. You can enable it on FreeBSD by placing these lines in your /etc/rc.conf: ntpd_enable="YES" ntpd_sync_on_start="YES" Then either 'service ntpd start' or just reboot. -nd.