From patchwork Thu Apr 11 13:36:21 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Walle X-Patchwork-Id: 1084044 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="VWRaqhtm"; dkim-atps=neutral Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 44g2B74CS3z9s00 for ; Thu, 11 Apr 2019 23:36:47 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id D9387C21E26; Thu, 11 Apr 2019 13:36:40 +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 403EDC21C27; Thu, 11 Apr 2019 13:36:38 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 8AAE4C21C27; Thu, 11 Apr 2019 13:36:36 +0000 (UTC) Received: from ssl.serverraum.org (ssl.serverraum.org [176.9.125.105]) by lists.denx.de (Postfix) with ESMTPS id 3BBEEC21BE5 for ; Thu, 11 Apr 2019 13:36:36 +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 CC30022F2D; Thu, 11 Apr 2019 15:36:35 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=walle.cc; s=mail2016061301; t=1554989795; bh=brRpIqY9yD/gsQWcvoscJ8XPYWbYh8b9vBnFZ8cy4lQ=; h=From:To:Cc:Subject:Date:From; b=VWRaqhtmhvFioneY+wyhrMHsXM5acH4l1Jq2mcf7jnDP7KDcmsvRosAcxQ1XvSHdH aSNnyq1qRA+OEAK1gX3ZykzAzIkM1U7sdZedqhxsalwk82Gq45cWuvXWNIHC5WTw/R /wRWBb4jDDBuZr+no48bgfvQ51JZa3Jk8SDmmju0= From: Michael Walle To: u-boot@lists.denx.de Date: Thu, 11 Apr 2019 15:36:21 +0200 Message-Id: <20190411133621.13984-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: Stefan Roese Subject: [U-Boot] [PATCH v2] 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" 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 --- changes since v2: - whoops wrong mail address for author and sob-tag, sorry about that Happy holidays 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 -----------