From patchwork Sun Nov 29 18:30:42 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marco Schuster X-Patchwork-Id: 549781 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 66D3714029C for ; Mon, 30 Nov 2015 05:30:55 +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=c/2xwttB; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id D5CF44B741; Sun, 29 Nov 2015 19:30:51 +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 1u_OTTb0Xi1W; Sun, 29 Nov 2015 19:30:51 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 541574B737; Sun, 29 Nov 2015 19:30:51 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id D11144B737 for ; Sun, 29 Nov 2015 19:30:49 +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 hV8ji-Jm4kj8 for ; Sun, 29 Nov 2015 19:30:49 +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-f51.google.com (mail-pa0-f51.google.com [209.85.220.51]) by theia.denx.de (Postfix) with ESMTPS id 61AFB4B736 for ; Sun, 29 Nov 2015 19:30:45 +0100 (CET) Received: by pabfh17 with SMTP id fh17so165306421pab.0 for ; Sun, 29 Nov 2015 10:30:43 -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=c/2xwttB9cVBOSzzb2Q7kE6jVUSLyukslCct82zEUOlo2PGcjL4OKCzcIjH0DaqirT Uen6lDXimmuR6gi9dAZvoPfut7628thUtzECidcNeenMLMcfREndsDpgNi2sx4yujUwT T0nEwVDDDjJwKc+jxX1LlBW3pWk26Y2KUBbOCtSDJvCT5Dr34ggbWsj4WodVXORDmf+s a0dX+dPfyUvXtLcvbV5iKPDz6/l6EXPYbdgdcMBPehDZmfsiFO2HxiZ9vKIWKTVa1ZXN 1rBlrFjC4f+JJcTwQJbAG3xYCe0kDa1Oap60QoTBJSMIApO3eEXQAzuZQfkuRYyardCr r8QQ== MIME-Version: 1.0 X-Received: by 10.98.9.146 with SMTP id 18mr49828696pfj.13.1448821842874; Sun, 29 Nov 2015 10:30:42 -0800 (PST) Received: by 10.66.149.137 with HTTP; Sun, 29 Nov 2015 10:30:42 -0800 (PST) Date: Sun, 29 Nov 2015 19:30:42 +0100 Message-ID: From: Marco Schuster To: u-boot@lists.denx.de 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