From patchwork Tue Jun 5 21:13:51 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vagrant Cascadian X-Patchwork-Id: 925632 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=debian.org Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 410l1S4JKMz9s0W for ; Wed, 6 Jun 2018 07:14:36 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 2F548C21FF3; Tue, 5 Jun 2018 21:14:33 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 058D5C21F99; Tue, 5 Jun 2018 21:14:31 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 13733C21FDC; Tue, 5 Jun 2018 21:14:22 +0000 (UTC) Received: from cascadia.aikidev.net (cascadia.aikidev.net [173.255.214.101]) by lists.denx.de (Postfix) with ESMTP id C7BB0C21F99 for ; Tue, 5 Jun 2018 21:14:21 +0000 (UTC) Received: from localhost (unknown [IPv6:2600:3c01:e000:21:21:21:0:100b]) (Authenticated sender: vagrant@aikidev.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id 9D1561AA2E; Tue, 5 Jun 2018 14:14:20 -0700 (PDT) From: Vagrant Cascadian To: u-boot@lists.denx.de Date: Tue, 5 Jun 2018 14:13:51 -0700 Message-Id: <20180605211355.6433-1-vagrant@debian.org> X-Mailer: git-send-email 2.11.0 Cc: Marek Vasut , Tom Rini , Vagrant Cascadian Subject: [U-Boot] [PATCH 0/4] arm: odroid: Convert to distro_bootcmd. X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Switch odroid platform to use distro_bootcmd, adjusting to use standardized environment variable names, and use the default bootdelay. The additional environment variables from distro_bootcmd requires increasing the default environment size, which would break backwards compatibility with saved environments. At Marek's suggestion, I've bumped it well over the size needed (~4.5k vs. 16k) to give room for future growth. Variations on these patches have been in use in Debian's u-boot packages since 2016. A variation of this patch series was originally submitted to u-boot over a year ago, and resent a few times since, with little to no response. Thanks for considering! Vagrant Cascadian (4): arm: odroid: Use standard environment variable names kernel_addr_r, ramdisk_addr_r and fdt_addr_r. arm: odroid: Increase default env size in preparation for distro_bootcmd. arm: odroid: Enable distro_bootcmd support. arm: odroid: Inherit default value for bootdelay from distro_bootcmd. include/configs/odroid.h | 36 ++++++++++++++++++++---------------- 1 file changed, 20 insertions(+), 16 deletions(-) Acked-by: Lukasz Majewski