From patchwork Sat Dec 9 21:29:58 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Ceresoli X-Patchwork-Id: 846604 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=busybox.net (client-ip=140.211.166.138; helo=whitealder.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3yvMpj2LpGz9sR8 for ; Sun, 10 Dec 2017 08:31:09 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id CDDAD8863A; Sat, 9 Dec 2017 21:31:00 +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 BwuamXMiaxhL; Sat, 9 Dec 2017 21:30:57 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 0018E888CA; Sat, 9 Dec 2017 21:30:56 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 919E01BFF7A for ; Sat, 9 Dec 2017 21:30:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 8F11588751 for ; Sat, 9 Dec 2017 21:30:53 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7NcBmSS1k8kF for ; Sat, 9 Dec 2017 21:30:52 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from srv-hp10-72.netsons.net (srv-hp10-72.netsons.net [94.141.22.72]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 59C6C872D0 for ; Sat, 9 Dec 2017 21:30:52 +0000 (UTC) Received: from [5.157.121.22] (port=57366 helo=yard.fritz.box) by srv-hp10.netsons.net with esmtpa (Exim 4.89) (envelope-from ) id 1eNmhq-00169H-M9; Sat, 09 Dec 2017 22:30:46 +0100 From: Luca Ceresoli To: buildroot@buildroot.org Date: Sat, 9 Dec 2017 22:29:58 +0100 Message-Id: <1512855007-1834-1-git-send-email-luca@lucaceresoli.net> X-Mailer: git-send-email 2.7.4 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - srv-hp10.netsons.net X-AntiAbuse: Original Domain - buildroot.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - lucaceresoli.net X-Get-Message-Sender-Via: srv-hp10.netsons.net: authenticated_id: luca+lucaceresoli.net/only user confirmed/virtual account not confirmed X-Authenticated-Sender: srv-hp10.netsons.net: luca@lucaceresoli.net X-Source: X-Source-Args: X-Source-Dir: Subject: [Buildroot] [PATCH 0/9] zynq boards: use genimage and update kernel + u-boot X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.24 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Luca Ceresoli MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Hi, this patchest switches the zynq-based boards to using genimage and updates U-Boot and the kernel to the latest Xilinx releases. The first patch is a minor improvement to the genimage.sh script and is not strictly related to the rest of the series. Luca Luca Ceresoli (9): support/scripts/genimage.sh: show usage when invoked incorrectly zynq_zed: linux: bump to xilinx-v2017.3 (based on 4.9) zynq_zed: u-boot: bump to xilinx-v2017.3 zynq_microzed: linux: bump to xilinx-v2017.3 (based on 4.9) zynq_microzed: u-boot: bump to xilinx-v2017.3 zynq_zc706: linux: bump to xilinx-v2017.3 (based on 4.9) zynq_zc706: u-boot: bump to xilinx-v2017.3 boards/zynq: rename the DTB to be loaded by U-Boot boards/zynq: use genimage to generate a bootable SD card image board/zynq/genimage.cfg | 25 +++++++++++++++++++++++++ board/zynq/post-image.sh | 13 +++++++++++++ board/zynq/readme.txt | 14 +++++++------- configs/zynq_microzed_defconfig | 8 +++++--- configs/zynq_zc706_defconfig | 8 +++++--- configs/zynq_zed_defconfig | 8 +++++--- support/scripts/genimage.sh | 6 +++++- 7 files changed, 65 insertions(+), 17 deletions(-) create mode 100644 board/zynq/genimage.cfg create mode 100755 board/zynq/post-image.sh