From patchwork Fri May 17 09:32:02 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bornet Romain X-Patchwork-Id: 244587 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id E8B8D2C007E for ; Fri, 17 May 2013 19:37:17 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id B9C4731D55; Fri, 17 May 2013 09:37:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gLNlYN5ekXI3; Fri, 17 May 2013 09:37:15 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 66A1F31D49; Fri, 17 May 2013 09:37:15 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id AEC508F74B for ; Fri, 17 May 2013 09:37:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 800468E831 for ; Fri, 17 May 2013 09:37:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id IullJst9IAPN for ; Fri, 17 May 2013 09:37:09 +0000 (UTC) X-Greylist: delayed 00:05:02 by SQLgrey-1.7.6 Received: from heig-vd.ch (mailcl0.heig-vd.ch [193.134.216.181]) by whitealder.osuosl.org (Postfix) with ESMTP id 505E98EA50 for ; Fri, 17 May 2013 09:37:09 +0000 (UTC) Received: from [10.192.41.24] (helo=EINTFE02.einet.ad.eivd.ch) by heig-vd.ch stage1 with esmtp (Exim MailCleaner) id 1UdH1A-0003fT-19 from ; Fri, 17 May 2013 11:32:04 +0200 Received: from EINTMBX01.einet.ad.eivd.ch ([fe80::b4f2:6cde:174e:52b]) by EINTFE02.einet.ad.eivd.ch ([10.192.41.24]) with mapi id 14.03.0123.003; Fri, 17 May 2013 11:32:03 +0200 X-MailCleaner-SPF: softfail From: Bornet Romain To: 'Spenser Gilliland' , "buildroot@busybox.net" Thread-Topic: [Buildroot] [PATCH 3/3] zedboard: add Avnet Zedboard support. Thread-Index: AQHOUcG956RAR8sZCk6YGhwK1eOmu5kJHsbg Date: Fri, 17 May 2013 09:32:02 +0000 Message-ID: References: <1368659524-21154-1-git-send-email-spenser@gillilanding.com> <1368659524-21154-3-git-send-email-spenser@gillilanding.com> In-Reply-To: <1368659524-21154-3-git-send-email-spenser@gillilanding.com> Accept-Language: en-US, fr-CH Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.192.52.103] MIME-Version: 1.0 Subject: Re: [Buildroot] [PATCH 3/3] zedboard: add Avnet Zedboard support. X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Hi, Rather new in buildroot but already fond of it. As a Zedboard user I would really appreciate to have this patch merged in BR mainline. Good job! -----Original Message----- From: buildroot-bounces@busybox.net [mailto:buildroot-bounces@busybox.net] On Behalf Of Spenser Gilliland Sent: jeudi 16 mai 2013 01:12 To: buildroot@busybox.net Subject: [Buildroot] [PATCH 3/3] zedboard: add Avnet Zedboard support. add defconfig and board dir for Avnet Zedboard Signed-off-by: Spenser Gilliland --- board/avnet/zedboard/readme.txt | 13 +++++++++++++ configs/zedboard_defconfig | 21 +++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 board/avnet/zedboard/readme.txt create mode 100644 configs/zedboard_defconfig diff --git a/board/avnet/zedboard/readme.txt b/board/avnet/zedboard/readme.txt new file mode 100644 index 0000000..eaa2cb8 --- /dev/null +++ b/board/avnet/zedboard/readme.txt @@ -0,0 +1,13 @@ +This is the buildroot board support for the Avnet Zedboard. The Zedboard is +a development board based on the Xilinx Zynq-7000 based All-Programmable +System-On-Chip. + +Zedboard information including schematics, reference designs, and manuals are +available from http://www.zedboard.org . + +To boot the Zedboard using a buildroot generated image copy the following files +to the sdcard: + zynq-zed.dtb -> devicetree.dtb + rootfs.cpio.gz.uboot -> uramdisk.image.gz + uImage -> uImage + diff --git a/configs/zedboard_defconfig b/configs/zedboard_defconfig new file mode 100644 index 0000000..0dfc581 --- /dev/null +++ b/configs/zedboard_defconfig @@ -0,0 +1,21 @@ +BR2_arm=y +BR2_cortex_a9=y +BR2_ARM_ENABLE_NEON=y +BR2_TARGET_GENERIC_GETTY_PORT="ttyPS0" +BR2_TARGET_ROOTFS_CPIO=y +BR2_TARGET_ROOTFS_CPIO_UIMAGE=y +BR2_TARGET_ROOTFS_CPIO_GZIP=y +BR2_TARGET_UBOOT=y +BR2_TARGET_UBOOT_BOARDNAME="zynq_zed" +BR2_TARGET_UBOOT_CUSTOM_GIT=y +BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL="git://github.com/Xilinx/u-boot-xlnx.git" +BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION="xilinx-v14.5" +BR2_TARGET_UBOOT_FORMAT_ELF=y +BR2_LINUX_KERNEL=y +BR2_LINUX_KERNEL_CUSTOM_GIT=y +BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL="git://github.com/Xilinx/linux-xlnx.git" +BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION="xilinx-v14.5" +BR2_LINUX_KERNEL_DEFCONFIG="xilinx_zynq" +BR2_LINUX_KERNEL_UIMAGE_LOADADDR="0x8000" +BR2_LINUX_KERNEL_DTS_SUPPORT=y +BR2_LINUX_KERNEL_INTREE_DTS_NAME="zynq-zed"