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 8C1C6C00A5A for ; Thu, 19 Jan 2023 11:21:54 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id C66428567D; Thu, 19 Jan 2023 12:21:26 +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="tPu4Q6Ei"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id C904D85661; Thu, 19 Jan 2023 12:21:12 +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 2CC588566D for ; Thu, 19 Jan 2023 12:21:08 +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 4E1BEBFACE; Thu, 19 Jan 2023 12:21:07 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fris.de; s=dkim; t=1674127267; h=from:subject:date:message-id:to:cc:mime-version: content-transfer-encoding:in-reply-to:references; bh=hWra5NoT0iRwjnKPmeRbvs0CM1//p1gO2JjUkGHw+7A=; b=tPu4Q6EiDulw44B5OkeFXeXus9WE/pYTCi1zWByMg/eLRe/D7PFHHXl7bhfXEfP9nssmBz d2FRKgGGY2qEWKSFpl8/C3XJF9a5M3H9364/MEl/CmtScBebvcyjxPqoahK6nOz82g1+EE VHHlrZcfcTMh6bqls1JLZX71OHn0ieshJ6GepE3agixlmFX/jV1FYZtsdULWVCr4BXxBbj g4vSYuVQ5H0uhpSB5LSH+8Trj9CT3b9agAF1npa77bBnE2RBGizDj7QwYtnn8ek8hmrph8 dhpoxnfoVyGo83f/lNtYCUIpvV+hEj/o+dWUp8yMslrioKChYDmaTXtyVhIJcw== From: Frieder Schrempf To: Frieder Schrempf , u-boot@lists.denx.de Cc: Fabio Estevam , Marcel Ziswiler , Oliver Graute , Patrick Wildt Subject: [PATCH v2 2/6] doc: sl-mx8mm: Add note about using cross toolchain Date: Thu, 19 Jan 2023 12:20:35 +0100 Message-Id: <20230119112040.47574-3-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 This clarifies the usage of a cross toolchain to build U-Boot and TF-A. Signed-off-by: Frieder Schrempf --- doc/board/kontron/sl-mx8mm.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/board/kontron/sl-mx8mm.rst b/doc/board/kontron/sl-mx8mm.rst index 75ca0f174a..bcaf5de4e7 100644 --- a/doc/board/kontron/sl-mx8mm.rst +++ b/doc/board/kontron/sl-mx8mm.rst @@ -20,6 +20,12 @@ Quick Start - Build U-Boot - Boot +.. note:: + + To build on a x86-64 host machine, you need a GNU cross toolchain for the + target architecture (aarch64). Check your distros package manager or + download and install the necessary tools (``aarch64-linux-gnu-*``) manually. + Get and Build the Trusted Firmware-A (TF-A) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -- 2.39.0