From patchwork Thu Apr 11 12:54:17 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Walle X-Patchwork-Id: 1084030 X-Patchwork-Delegate: sr@denx.de 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=walle.cc Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=walle.cc header.i=@walle.cc header.b="E0Ek8eyf"; dkim-atps=neutral Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 44g1Ft39j3z9s70 for ; Thu, 11 Apr 2019 22:54:58 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id E8F6EC21DDC; Thu, 11 Apr 2019 12:54:56 +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=T_DKIM_INVALID 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 BE793C21C27; Thu, 11 Apr 2019 12:54:52 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 84807C21C27; Thu, 11 Apr 2019 12:54:51 +0000 (UTC) Received: from ssl.serverraum.org (ssl.serverraum.org [176.9.125.105]) by lists.denx.de (Postfix) with ESMTPS id CE124C21BE5 for ; Thu, 11 Apr 2019 12:54:48 +0000 (UTC) Received: from mwalle01.sab.local. (unknown [213.135.10.150]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ssl.serverraum.org (Postfix) with ESMTPSA id 86C9B22F2D; Thu, 11 Apr 2019 14:54:47 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=walle.cc; s=mail2016061301; t=1554987287; bh=Qe0MKUqmSeFLM7tyx+sBwPT0TYIRxN1/em0U44bfXpE=; h=From:To:Cc:Subject:Date:From; b=E0Ek8eyfJbGwcPSBbIwPV8aLpNjGg25sM1BTlmcSzX7IVDbwWTmgrq+Kgj3UDMy/w q3C0oaOpawkChHNKFZLvM1iZxRhtpjJR6HCu5wzUVVDD9EtU3ZEA4nYnU7JIXfdEXZ P1/lrtBcDvY9BRTBGz85V4xJw8/iw2AGybQUf7ks= From: Michael Walle To: u-boot@lists.denx.de Date: Thu, 11 Apr 2019 14:54:17 +0200 Message-Id: <20190411125417.10439-1-michael@walle.cc> X-Mailer: git-send-email 2.11.0 X-Virus-Scanned: clamav-milter 0.100.2 at web X-Virus-Status: Clean Cc: Michael Walle , Stefan Roese Subject: [U-Boot] [PATCH] arm: kirkwood: lsxl: add note about sata in README 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" From: Michael Walle The boot commands have changed in the environment. Add a note about the incompatible change and how resolve the issue in the board's README. Signed-off-by: Michael Walle Reviewed-by: Stefan Roese --- Hi Stefan, now that the patches are in the marvell tree and I guess they'll make it into the next release. Could you apply the following patch, too? Thanks, michael board/buffalo/lsxl/README | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/board/buffalo/lsxl/README b/board/buffalo/lsxl/README index ef5ed42880..fffb1ce8ec 100644 --- a/board/buffalo/lsxl/README +++ b/board/buffalo/lsxl/README @@ -8,6 +8,16 @@ the LS-XHL PCB has two SDRAM chips. Both have a Kirkwood CPU (Marvell bootloader and its environment. The linux kernel and the initial ramdisk are loaded from the hard disk. +Important! Changes since v2019.07 +--------------------------------- +In u-boot v2019.07 the driver for the SATA port was changed to a new +one. This means that the old "ide" command and block interface is not +supported anymore. More important, the boot commands have changed. You have +to overwrite the boot commands in your envionment with the new ones: + + env default -f bootcmd_legacy + env default -f bootcmd_hdd + saveenv Rescue Mode -----------