From owner-freebsd-arm@freebsd.org Wed Jan 18 18:08:58 2017 Return-Path: Delivered-To: freebsd-arm@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 470C6CB6853 for ; Wed, 18 Jan 2017 18:08:58 +0000 (UTC) (envelope-from rj@obsigna.com) Received: from mo6-p00-ob.smtp.rzone.de (mo6-p00-ob.smtp.rzone.de [IPv6:2a01:238:20a:202:5300::7]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.smtp.rzone.de", Issuer "TeleSec ServerPass DE-2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DA11B1D3B for ; Wed, 18 Jan 2017 18:08:57 +0000 (UTC) (envelope-from rj@obsigna.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; t=1484762933; l=991; s=domk; d=obsigna.com; h=To:References:Content-Transfer-Encoding:Cc:Date:In-Reply-To:From: Subject:Mime-Version:Content-Type; bh=WUQ8quLfTH2w5Rzao3aWx/NsXIRzHlO7d2emUiFFxic=; b=b9aeQTFHD8O7nokZpq0QyFVwfCJhzx3BzJCinuxlcwJPzrwS6I2uaxpZGlKARRUW1Q BQQDeoh1XrrGkjGff1JxOnJeX0al9YBVC5mVwxt9TDDwwLcaxZ0F7y8QfUP8QCFHCden 5tl9RpEJGJLdUM47MDifuz+2zgCszN/7ZzBcM= X-RZG-AUTH: :O2kGeEG7b/pS1EK7WHa0hxqKZr4lnx6UhT0M0o35iAdWtoM07Gt3wQHFGh0i99HgKKA= X-RZG-CLASS-ID: mo00 Received: from mail.obsigna.com (bb02b584.virtua.com.br [187.2.181.132]) by smtp.strato.de (RZmta 39.11 DYNA|AUTH) with ESMTPSA id L08dd8t0II8f1jo (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (curve secp521r1 with 521 ECDH bits, eq. 15360 bits RSA)) (Client did not present a certificate); Wed, 18 Jan 2017 19:08:41 +0100 (CET) Received: from rolf.projectworld.net (rolf.projectworld.net [192.168.222.25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.obsigna.com (Postfix) with ESMTPSA id 9DC2B7506D97; Wed, 18 Jan 2017 16:08:38 -0200 (BRST) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 10.2 \(3259\)) Subject: Re: fstab: /etc/fstab:10: Inappropriate file type or format on RPI2 From: "Dr. Rolf Jansen" In-Reply-To: <20170118172653.GA28052@www.zefox.net> Date: Wed, 18 Jan 2017 16:08:36 -0200 Content-Transfer-Encoding: 7bit Message-Id: <235668CB-0F07-4391-9B2B-E5F8498D4D2D@obsigna.com> References: <20170118172653.GA28052@www.zefox.net> To: freebsd-arm@freebsd.org X-Mailer: Apple Mail (2.3259) X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jan 2017 18:08:58 -0000 > Am 18.01.2017 um 15:26 schrieb bob prohaska : > > Recently an RPI2 running > FreeBSD 12.0-CURRENT #10 r312361: Wed Jan 18 00:06:38 PST 2017 > bob@www.zefox.com:/usr/obj/usr/src/sys/RPI2 arm > has started to report > > fstab: /etc/fstab:10: Inappropriate file type or format > > /etc/fstab contains > > /dev/mmcsd0s1 /boot/msdos msdosfs rw,noatime 0 0 > /dev/mmcsd0s2a / ufs rw,noatime 1 1 > #md /tmp mfs rw,noatime,-s50m 0 0 > #md /var/log mfs rw,noatime,-s15m 0 0 > #md /var/tmp mfs rw,noatime,-s5m 0 0 > /dev/da0p4 /tmp ufs rw,noatime 0 3 > /dev/da0p3 /usr ufs rw,noatime 1 2 > /dev/da0p2 none swap sw 0 0 > /dev/da0p1 /var ufs rw,noatime 0 4 > proc /procfs rw 0 0 > > where the offending line is the last one above. > > I can't see what's wrong, could somebody please point it out? > > Thanks for reading, > > bob prohaska The last line is missing the file system type, try: ... proc /procfs procfs rw 0 0 Best regards Rolf