From patchwork Sun Nov 29 01:56:48 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marco Schuster X-Patchwork-Id: 549717 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 651521402B9 for ; Sun, 29 Nov 2015 13:09:17 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=googlemail.com header.i=@googlemail.com header.b=Jn60mitH; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 5DA874B7DC; Sun, 29 Nov 2015 03:09:15 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 1SxgG-hSHsa2; Sun, 29 Nov 2015 03:09:15 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 9FF484B716; Sun, 29 Nov 2015 03:09:14 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 25BEE4B7DB for ; Sun, 29 Nov 2015 02:56:54 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4F5WGiqVQP2Y for ; Sun, 29 Nov 2015 02:56:54 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail-pa0-f44.google.com (mail-pa0-f44.google.com [209.85.220.44]) by theia.denx.de (Postfix) with ESMTPS id 9BC604B7DA for ; Sun, 29 Nov 2015 02:56:50 +0100 (CET) Received: by pacej9 with SMTP id ej9so147713700pac.2 for ; Sat, 28 Nov 2015 17:56:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=3rhdC5w/sqPo8xyg3IhDy0SGL+Ps2U06Gs9ziINLMxU=; b=Jn60mitHEN8IFS28e5KUkGLSkB434FZxK8cH1VWcSmY99DWiRAwdi56XUj5diq8kaA tjExbsV9ji9dxbCpaByb5ae8LKLFHYum+9hAJf4B7XJ297+KiEMYLbyLHjPOt7WDFlQs qGHditlapXAYi+NuKSk/sKzwqUYopIOBBkiw/WkmkNRpwxHCNpbpZMtP6JaYi1XjCkr4 uAv+9EQ7HLOPmlgBGamv2B//TbbTq63tGUcyz7ZvNK38y9PuvFPQWgVLLXycnyLDTtEj HI2JFRCD/khcFFGAwXFuNIK6y/mZVeVaazhq50CwgmS7v25aXUE5YECh2ZTyVVzFEr7f jIHA== MIME-Version: 1.0 X-Received: by 10.98.14.8 with SMTP id w8mr60271602pfi.38.1448762208353; Sat, 28 Nov 2015 17:56:48 -0800 (PST) Received: by 10.66.149.137 with HTTP; Sat, 28 Nov 2015 17:56:48 -0800 (PST) Date: Sun, 29 Nov 2015 02:56:48 +0100 Message-ID: From: Marco Schuster To: u-boot@lists.denx.de X-Mailman-Approved-At: Sun, 29 Nov 2015 03:09:12 +0100 Subject: [U-Boot] [PATCH] Re-enable setexpr on Raspberry Pi X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" This patch re-enables the setexpr command, I don't really understand why it got excluded in the first place. setexpr can be used e.g. to implement failed-boot-counters and failovers to rescue firmware. Signed-off-by: Marco Schuster --- configs/rpi_2_defconfig | 1 - configs/rpi_defconfig | 1 - 2 files changed, 2 deletions(-) -- 2.6.2 diff --git a/configs/rpi_2_defconfig b/configs/rpi_2_defconfig index 5c9e69a..bd81ee6 100644 --- a/configs/rpi_2_defconfig +++ b/configs/rpi_2_defconfig @@ -6,5 +6,4 @@ CONFIG_SYS_PROMPT="U-Boot> " # CONFIG_CMD_FLASH is not set # CONFIG_CMD_FPGA is not set CONFIG_CMD_GPIO=y -# CONFIG_CMD_SETEXPR is not set CONFIG_PHYS_TO_BUS=y diff --git a/configs/rpi_defconfig b/configs/rpi_defconfig index b8b267f..5d27909 100644 --- a/configs/rpi_defconfig +++ b/configs/rpi_defconfig @@ -6,5 +6,4 @@ CONFIG_SYS_PROMPT="U-Boot> " # CONFIG_CMD_FLASH is not set # CONFIG_CMD_FPGA is not set CONFIG_CMD_GPIO=y -# CONFIG_CMD_SETEXPR is not set CONFIG_PHYS_TO_BUS=y