From owner-freebsd-arm@freebsd.org Wed Feb 15 16:21:10 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 637C0CE054A for ; Wed, 15 Feb 2017 16:21:10 +0000 (UTC) (envelope-from hps@selasky.org) Received: from mail.turbocat.net (turbocat.net [IPv6:2a01:4f8:c17:6c4b::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2E0327DF; Wed, 15 Feb 2017 16:21:10 +0000 (UTC) (envelope-from hps@selasky.org) Received: from hps2016.home.selasky.org (unknown [62.141.129.119]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.turbocat.net (Postfix) with ESMTPSA id BCFF41FE025; Wed, 15 Feb 2017 17:20:45 +0100 (CET) Subject: Re: usb trouble cubox bsd 11 - FreeBSD 11.0-STABLE #0 r310359: Wed Dec 21 18:19:11 UTC 2016 To: LE TUTOUR Jean , Ian Lepore , Warner Losh References: <1486748072.10020.253.camel@freebsd.org> Cc: "freebsd-arm@freebsd.org" From: Hans Petter Selasky Message-ID: <9a04c038-8f2a-66e9-5c9e-e74bcc2b74b8@selasky.org> Date: Wed, 15 Feb 2017 17:20:16 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit 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, 15 Feb 2017 16:21:10 -0000 On 02/15/17 17:14, LE TUTOUR Jean wrote: > root@imx6:/home/freebsd # cd /media > root@imx6:/media # ls > root@imx6:/media # mount /dev/da0s1 /media > mount: /dev/da0s1: Invalid argument > root@imx6:/media # mount /dev/da0 /media > mount: /dev/da0: Invalid argument > root@imx6:/media # cd .. > root@imx6:/ # mount /dev/da0 /media > mount: /dev/da0: Invalid argument > > > do you have an idea about that: > why I don’t manage to mount my USB Key , / in FAT With FreeBSD mount you need to specify msdosfs: mount -t msdosfs /dev/da0s1 /media --HPS