From owner-svn-src-all@freebsd.org Tue Apr 26 21:11:03 2016 Return-Path: Delivered-To: svn-src-all@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 2EB99B1D43D; Tue, 26 Apr 2016 21:11:03 +0000 (UTC) (envelope-from gonzo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (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 F3C2414F4; Tue, 26 Apr 2016 21:11:02 +0000 (UTC) (envelope-from gonzo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3QLB2PJ048812; Tue, 26 Apr 2016 21:11:02 GMT (envelope-from gonzo@FreeBSD.org) Received: (from gonzo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3QLB2Sw048811; Tue, 26 Apr 2016 21:11:02 GMT (envelope-from gonzo@FreeBSD.org) Message-Id: <201604262111.u3QLB2Sw048811@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gonzo set sender to gonzo@FreeBSD.org using -f From: Oleksandr Tymoshenko Date: Tue, 26 Apr 2016 21:11:02 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r298666 - head/sys/modules/dtb/zynq X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2016 21:11:03 -0000 Author: gonzo Date: Tue Apr 26 21:11:01 2016 New Revision: 298666 URL: https://svnweb.freebsd.org/changeset/base/298666 Log: Add dtb/zynq to generate dtb files for Zynq-based boards It seems that the only way to supply dtb to loader on Zynq-based SoCs is to manually generate dtb and place it to pre-defined location on SD card or TFTP server where loader can pick it up. More modern approach is to add modules/dtb/%soc% module and let installworld target generate dtb and copy them to /boot/dtb/ where they can be loaded by ubldr Added: head/sys/modules/dtb/zynq/ head/sys/modules/dtb/zynq/Makefile (contents, props changed) Added: head/sys/modules/dtb/zynq/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sys/modules/dtb/zynq/Makefile Tue Apr 26 21:11:01 2016 (r298666) @@ -0,0 +1,7 @@ +# $FreeBSD$ +# All the dts files for Zynq systems we support. +DTS= \ + zedboard.dts \ + zybo.dts + +.include