From owner-freebsd-arm@freebsd.org Sat Feb 27 16:15:18 2016 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 E9ECAAB6FCA for ; Sat, 27 Feb 2016 16:15:18 +0000 (UTC) (envelope-from martin@waschbuesch.de) Received: from relay.waschbuesch.it (relay.waschbuesch.it [IPv6:2a00:cba0:0:100::3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.waschbuesch.it", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B0F2B118B for ; Sat, 27 Feb 2016 16:15:18 +0000 (UTC) (envelope-from martin@waschbuesch.de) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=waschbuesch.de; s=dkim; h=Mime-Version:To:Date:Message-Id:Subject: Content-Transfer-Encoding:Content-Type:From; bh=wSvDdwnY85pHaRmt8x20fsKRYaBu0bnIcEhgTYGimYI=; b=aqdWax+u7Bl/sjsbJ3pJuO4Vzr XpWPbUCvVvZVrVtic9mSe8wS6iyx7fTgFpqezFGa4QmO5ne9C2m90WAFyT7TbQmCjXa7x283cn1Lw 6hq3h2xRivsS5OpiPLyiHssHaShVvcUnt5sxS5cSAupzi1iBmvSe+MDiWVw6Uazm5YVk=; Received: by relay.waschbuesch.it with esmtpsa (TLSv1:ECDHE-RSA-AES256-SHA:256) (Exim) (envelope-from ) id 1aZhWU-000MLb-I4 for freebsd-arm@freebsd.org; Sat, 27 Feb 2016 16:15:14 +0000 From: =?utf-8?Q?Martin_Waschb=C3=BCsch?= Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: FreeBSD on Utilite (revisited) Message-Id: <8262C265-A9F6-4336-9A33-4A97BE7451F6@waschbuesch.de> Date: Sat, 27 Feb 2016 17:15:14 +0100 To: freebsd-arm@freebsd.org Mime-Version: 1.0 (Mac OS X Mail 9.2 \(3112\)) X-Mailer: Apple Mail (2.3112) 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: Sat, 27 Feb 2016 16:15:19 -0000 Hi there, I just submitted a new port u-boot-utilite (waiting for commit - in case = anyone with that bit set reads this *g*) that creates u-boot for utilite = and utilite pro with the ubldr required options set: #define CONFIG_API #define CONFIG_CMD_ELF #define CONFIG_SYS_MMC_MAX_DEVICE 1 With this, I can finally get my utilite to load ubldr using: ** snip ** CM-FX6 # fatload mmc 2 $loadaddr ubldr reading ubldr 252282 bytes read in 30 ms (8 MiB/s) CM-FX6 # bootelf ** snip ** ubldr starts up, but then all I get is errors: ** snip ** ## Starting application at 0x10800054 ... Consoles: U-Boot console =20 Compatible U-Boot API signature found @8f5587b0 FreeBSD/armv6 U-Boot loader, Revision 1.2 (root@crochet.waschbuesch.it, Sat Feb 27 17:25:09 CET 2016) DRAM: 2048MB Card did not respond to voltage select! Card did not respond to voltage select! MMC Device 3 not found Card did not respond to voltage select! Card did not respond to voltage select! Card did not respond to voltage select! MMC Device 3 not found Card did not respond to voltage select! Card did not respond to voltage select! MMC Device 3 not found Card did not respond to voltage select! Card did not respond to voltage select! MMC Device 3 not found Card did not respond to voltage select! Card did not respond to voltage select! MMC Device 3 not found Card did not respond to voltage select! Card did not respond to voltage select! MMC Device 3 not found Number of U-Boot devices: 2 U-Boot env: loaderdev not set, will probe all devices. Found U-Boot device: disk Probing all disk devices... Checking unit=3D0 slice=3D partition=3D...Card did not = respond to voltage select! Card did not respond to voltage select! MMC Device 3 not found disk0: read failed, error=3D1 Checking unit=3D1 slice=3D partition=3D... Checking unit=3D2 slice=3D partition=3D... Checking unit=3D3 slice=3D partition=3D... Checking unit=3D4 slice=3D partition=3D... Checking unit=3D5 slice=3D partition=3D... Found U-Boot device: net ** snip ** What I do know: The device has both, mmc and mSATA. Which does disk0 = refer to? Also, I tried playing around with u-boot env $loaderdev, but to no = avail. Any and all help is appreciated! Martin=