From patchwork Mon May 21 21:20:44 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Rini X-Patchwork-Id: 160480 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 3C50CB6F13 for ; Tue, 22 May 2012 07:21:13 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id D2EE8280CE; Mon, 21 May 2012 23:21:05 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de 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 uTHqqFMh+PhV; Mon, 21 May 2012 23:21:05 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 4E9F8280D7; Mon, 21 May 2012 23:20:58 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id C6679280B8 for ; Mon, 21 May 2012 23:20:54 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de 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 qwKMR0647gDB for ; Mon, 21 May 2012 23:20:54 +0200 (CEST) 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-pb0-f44.google.com (mail-pb0-f44.google.com [209.85.160.44]) by theia.denx.de (Postfix) with ESMTPS id D89F8280AC for ; Mon, 21 May 2012 23:20:51 +0200 (CEST) Received: by pbcwy7 with SMTP id wy7so6770328pbc.3 for ; Mon, 21 May 2012 14:20:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:subject:date:message-id:x-mailer; bh=+aNnoMTVyGrISXf2ocj6WmxW7enz9GX6cokDiDCqIfQ=; b=0AyU6Apqx1ckT8PezgkA8G29FI3arL6lnQifS2xSI4ZiedGCpto1jQyeVaW4BQyjfk pb7GreVKtd0D4iTJYfX1RVuzpmfSJ3Re9byfW7kGlC9/lqlQEE4YERCbtmMk5qo/K6S3 1mN7Ir3kT97lqvtj5BlkWUqnb+IiF8aac01NRt/1YDuhypovgb8bpkcSPynZokQvjHzj UNzYkfvCxbjFILjKBBN2osinA6KwQ6FXFZ4IsR3Wo8JtS9rDGzhx2v0GlLDaaun8TmtY 7S5C+zkknY5EuU1GnLKYagiqiepZon9dEQHWOqdi4B534DcpdIBRpbV2YSzykWXkdbyh IvxQ== Received: by 10.68.221.72 with SMTP id qc8mr72885140pbc.63.1337635250090; Mon, 21 May 2012 14:20:50 -0700 (PDT) Received: from bill-the-cat.ph.cox.net (ip68-230-54-74.ph.ph.cox.net. [68.230.54.74]) by mx.google.com with ESMTPS id pj5sm24257464pbb.51.2012.05.21.14.20.49 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 21 May 2012 14:20:49 -0700 (PDT) From: Tom Rini To: u-boot@lists.denx.de Date: Mon, 21 May 2012 14:20:44 -0700 Message-Id: <1337635247-17206-1-git-send-email-trini@ti.com> X-Mailer: git-send-email 1.7.9.5 Subject: [U-Boot] [PATCH 1/4] OMAP3 Beagle: Set BOOTDELAY to 3 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de We change the bootdelay to give users a little bit longer to break in if needed. Signed-off-by: Tom Rini --- include/configs/omap3_beagle.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index b891ee4..2715211 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -213,7 +213,7 @@ /* partition */ /* Environment information */ -#define CONFIG_BOOTDELAY 2 +#define CONFIG_BOOTDELAY 3 #define CONFIG_EXTRA_ENV_SETTINGS \ "loadaddr=0x80200000\0" \