From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id B795EC004D4 for ; Thu, 19 Jan 2023 11:22:29 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 5D1048568C; Thu, 19 Jan 2023 12:21:57 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=fris.de Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=fris.de header.i=@fris.de header.b="aII5Oadr"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 7C41E85651; Thu, 19 Jan 2023 12:21:19 +0100 (CET) Received: from mail.fris.de (mail.fris.de [IPv6:2a01:4f8:c2c:390b::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 0064485656 for ; Thu, 19 Jan 2023 12:21:11 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=fris.de Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=frieder@fris.de Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 440A6C0309; Thu, 19 Jan 2023 12:21:11 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fris.de; s=dkim; t=1674127271; h=from:subject:date:message-id:to:cc:mime-version: content-transfer-encoding:in-reply-to:references; bh=AjebUsPO+cu6F0r0QwyK7ZXJw+XTIXs46KySbxOJWqE=; b=aII5Oadrr3rvBdME8uy2O5VWK/7ir/KyNvqaWAYaWLHClhlggbUb0K3x6yuhbJcPhjLuqL pACTHCuohOHrDXpzLd8sxusmy0dnd/ZOWCEWwxvyR0lBG76iifcJlqFM1HeiSVNAOiDtSd ulIMAeXmyYPTgCeVhnq93iztPJAj3ZEzg+NhjrdFIK+6cSS6AK4AKSsUQE2OVn4VFvgEiE bACRGBcVnWaelOicYHSQIslMCrkZlYt6uPcOMoQwdeiA9PC+JC0Ija0IGgNIAGFRSG59Za hC5uj8ECYE4ccd7kSuqabQUeO0MTqLN6l+A98e+rGCN0vk+nAqB4VlFJNFQRfA== From: Frieder Schrempf To: Frieder Schrempf , u-boot@lists.denx.de Cc: Fabio Estevam , Marcel Ziswiler , Oliver Graute , Patrick Wildt Subject: [PATCH v2 6/6] doc: sl-mx8mm: Add CROSS_COMPILE to U-Boot make call and improve comment Date: Thu, 19 Jan 2023 12:20:39 +0100 Message-Id: <20230119112040.47574-7-frieder@fris.de> In-Reply-To: <20230119112040.47574-1-frieder@fris.de> References: <20230119112040.47574-1-frieder@fris.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Last-TLS-Session-Version: TLSv1.3 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 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" X-Virus-Scanned: clamav-milter 0.103.6 at phobos.denx.de X-Virus-Status: Clean From: Frieder Schrempf Add the CROSS_COMPILE flag as we assume we build in a cross environment. Also improve the comment about copying the binary to SD card. Signed-off-by: Frieder Schrempf --- doc/board/kontron/sl-mx8mm.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/board/kontron/sl-mx8mm.rst b/doc/board/kontron/sl-mx8mm.rst index a8a3d5fc24..b7346d8cfb 100644 --- a/doc/board/kontron/sl-mx8mm.rst +++ b/doc/board/kontron/sl-mx8mm.rst @@ -79,9 +79,9 @@ Build U-Boot .. code-block:: bash $ make kontron-sl-mx8mm_defconfig - $ make + $ make CROSS_COMPILE=aarch64-linux-gnu- -Burn the flash.bin to SD card at an offset of 33 KiB: +Copy the flash.bin to SD card at an offset of 33 KiB: .. code-block:: bash -- 2.39.0