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 E3786C433EF for ; Wed, 6 Apr 2022 09:40:32 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id BC6AA83D34; Wed, 6 Apr 2022 11:40:12 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org 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=kernel.org header.i=@kernel.org header.b="RovOXuqn"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id CDDD983D34; Wed, 6 Apr 2022 11:40:07 +0200 (CEST) Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id A81C683D45 for ; Wed, 6 Apr 2022 11:39:52 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=pali@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 40C4DB80EEB; Wed, 6 Apr 2022 09:39:52 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id DDC4AC385A8; Wed, 6 Apr 2022 09:39:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1649237991; bh=wz/a2rC+xJirifcc36ecVyC+7WjHrvOXV68am5iN5eM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=RovOXuqnCfNYOjTjpUiMRAHfLmXcZ5bXJ/4/aUd8VrarW6rlZp+DmCfwpVG9AxlTC LKBjt8hH+Wv6rUEw9pSwcoNd0eMjVAOvf7KNiAS/27e3vnDbJhLpIoeS6uIS0tlUEH AZfjdIpAKUdYCAAyNFpt8dAuHhPKuucgt6wjh/NoBQwtzzsPdbI8r3mG2fAQ/IU2eu Nx9UUN7GcVHLU5H8mqafV0aeB0XzZ+KCys6TlfS6LmT1W6UiYxHNKaYYA4vFlYo8bj DqoEVFsjNvqjhMt6a60loyuWLmSnONNbaIWqOk14ZEvkD7SpwhCNLEEdEhRr4oXn2n FZtoIJeDY09zw== Received: by pali.im (Postfix) id 57D0A9D0; Wed, 6 Apr 2022 11:39:48 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: =?UTF-8?q?Marek=20Beh=C3=BAn?= , Stefan Roese Cc: u-boot@lists.denx.de Subject: [PATCH 5/5] arm: mvebu: turris_mox: Add NVMe and SCSI to boot targets Date: Wed, 6 Apr 2022 11:39:36 +0200 Message-Id: <20220406093936.8854-5-pali@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20220406093936.8854-1-pali@kernel.org> References: <20220406093936.8854-1-pali@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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.5 at phobos.denx.de X-Virus-Status: Clean U-Boot for Turris Mox has already enabled NVMe and SCSI support. So add NVMe and SCSI to boot targets. Signed-off-by: Pali Rohár --- include/configs/turris_mox.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/configs/turris_mox.h b/include/configs/turris_mox.h index 3cfad7cca985..69f295b5cefe 100644 --- a/include/configs/turris_mox.h +++ b/include/configs/turris_mox.h @@ -28,6 +28,8 @@ #define BOOT_TARGET_DEVICES(func) \ func(MMC, mmc, 0) \ + func(NVME, nvme, 0) \ + func(SCSI, scsi, 0) \ func(USB, usb, 0) \ func(PXE, pxe, na) \ func(DHCP, dhcp, na) -- 2.20.1