From patchwork Mon Feb 2 07:08:01 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vanya Sergeev X-Patchwork-Id: 435371 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id B61AD14017D for ; Mon, 2 Feb 2015 18:08:09 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 30C568B5EA; Mon, 2 Feb 2015 07:08:08 +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 NRT79BlH7mbB; Mon, 2 Feb 2015 07:08:07 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 333028B5AA; Mon, 2 Feb 2015 07:08:07 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 5B7981C2976 for ; Mon, 2 Feb 2015 07:08:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 56BDC8B5B2 for ; Mon, 2 Feb 2015 07:08:06 +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 LsLrvPO01yIZ for ; Mon, 2 Feb 2015 07:08:05 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-pa0-f49.google.com (mail-pa0-f49.google.com [209.85.220.49]) by whitealder.osuosl.org (Postfix) with ESMTPS id DA77D8B5AA for ; Mon, 2 Feb 2015 07:08:05 +0000 (UTC) Received: by mail-pa0-f49.google.com with SMTP id fa1so78807148pad.8 for ; Sun, 01 Feb 2015 23:08:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=we8xFLmy3lGrsmQ84ol8A1StI0nT5QHRbXniP8th82w=; b=QFwJ4gNxR1PTahkNs1ek8oE3nTjJ/WyVWU291h+jd6x/nGHz89IAUJzPn4/saI55Ts wduAQizrTzOEPUZqb12Y2i+nnT1QgizVicrspA2xtOke+hteZWQYEwnMaQF4Lsq1pcvt py2yxPUDCQn/S6QWEzgeNOk5VhlhFgeqD0Pq4hzYOG6NceNDac/78SglGI3rAFEojyJd GqunMQtJVwdTaUfWAzS1scdUjxctSDUDlN07jlHGA0QGxbtdo4bewz8P7GpwSkijN1nX N+srq/bv4Ko/Ib+RoesjcrywN0dqYR3q8CHCVYRQ8WAgU3F2YZh/mkXbytLjmJC0MrMq zkaA== X-Received: by 10.70.90.209 with SMTP id by17mr27696386pdb.162.1422860885641; Sun, 01 Feb 2015 23:08:05 -0800 (PST) Received: from anteater-desktop.localdomain ([76.126.241.192]) by mx.google.com with ESMTPSA id yq5sm17961001pac.15.2015.02.01.23.08.03 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 01 Feb 2015 23:08:04 -0800 (PST) From: Vanya Sergeev To: buildroot@busybox.net Date: Sun, 1 Feb 2015 23:08:01 -0800 Message-Id: <1422860881-5188-1-git-send-email-vsergeev@gmail.com> X-Mailer: git-send-email 2.2.2 Subject: [Buildroot] [PATCH 1/1] board/beaglebone: fix kernel load command in u-boot environment file X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" the loaduimage command was renamed to loadimage when the default kernel image changed from uImage to zImage in u-boot commit e3cf9692053a, which made it into the v2013.10 u-boot release that the beaglebone_defconfig currently builds. Signed-off-by: Vanya Sergeev --- board/beaglebone/uEnv.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/beaglebone/uEnv.txt b/board/beaglebone/uEnv.txt index d638432..e09fff5 100644 --- a/board/beaglebone/uEnv.txt +++ b/board/beaglebone/uEnv.txt @@ -1,3 +1,3 @@ bootpart=0:1 bootdir= -uenvcmd=run loaduimage;run loadramdisk;run findfdt;run loadfdt;run ramboot +uenvcmd=run loadimage;run loadramdisk;run findfdt;run loadfdt;run ramboot