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 3665CC43334 for ; Fri, 3 Jun 2022 12:41:35 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 8DACD84184; Fri, 3 Jun 2022 14:41:32 +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="pJAjtifs"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 10B5C83E9A; Fri, 3 Jun 2022 14:41:31 +0200 (CEST) Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) (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 79C8484184 for ; Fri, 3 Jun 2022 14:41:28 +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 dfw.source.kernel.org (Postfix) with ESMTPS id 4F0D361668; Fri, 3 Jun 2022 12:41:26 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8EB9DC385A9; Fri, 3 Jun 2022 12:41:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1654260085; bh=DEF8rSwcJPSwdjO6YjVSP7DGx9RcbrCtHcQMCIRNwWQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=pJAjtifsIKBAPltlH0rKLzlX0qW/NcF52gbckofcG0eOZvpvhoFGzYJMerT2OjSbA 6rBziEWwbusdNo2sKWo5tcd280ei68Snz33oT6YfUE912LHZGIJZIOTw0vE9PvKSQv sFSjmVp9FY06adIHqpQwlTYqJAirdfU+0TeeJaVl3iEQ/7qB6irPNm0Ie//GSDhaVt SMnDofdGZ12DTH59NJVKNLOt4HeziTVUCpYeUNL2jq49UyMVzt/Ymy9sUqdt5fdIC8 dZg/An9+ovWRcdg2H95vAJrm/KiyYs4rvphQt5ijuZ7zXqwaL/I+Ey1LN0zTsMnUkv 4KX2o09qpu0pw== Received: by pali.im (Postfix) id 7063989E; Fri, 3 Jun 2022 14:41:22 +0200 (CEST) Date: Fri, 3 Jun 2022 14:41:22 +0200 From: Pali =?utf-8?B?Um9ow6Fy?= To: Robert Marko Cc: sr@denx.de, marek.behun@nic.cz, rfried.dev@gmail.com, u-boot@lists.denx.de Subject: Re: [PATCH 1/2] mvebu: eDPU: disable SCSI support Message-ID: <20220603124122.wpklm5rj2afmzowg@pali> References: <20220603105305.848530-1-robert.marko@sartura.hr> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20220603105305.848530-1-robert.marko@sartura.hr> User-Agent: NeoMutt/20180716 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 On Friday 03 June 2022 12:53:04 Robert Marko wrote: > eDPU does not use SCSI nor it has SATA exposed, and commit > arm: mvebu: a3720: Set BOOT_TARGET_DEVICES list to enabled peripherals > now allows compiling U-boot wihout all of the BOOT_TARGET_DEVICES since > not all boards have all of the listed peripherals exposed. > > So, disable SCSI support in defconfig for eDPU. > > Signed-off-by: Robert Marko Reviewed-by: Pali Rohár > --- > configs/eDPU_defconfig | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/configs/eDPU_defconfig b/configs/eDPU_defconfig > index e2e593ad21..9c124bf147 100644 > --- a/configs/eDPU_defconfig > +++ b/configs/eDPU_defconfig > @@ -32,7 +32,6 @@ CONFIG_CMD_GPIO=y > CONFIG_CMD_I2C=y > CONFIG_CMD_MMC=y > CONFIG_CMD_MTD=y > -# CONFIG_CMD_SCSI is not set > CONFIG_CMD_SPI=y > CONFIG_CMD_USB=y > # CONFIG_CMD_SETEXPR is not set > @@ -78,7 +77,7 @@ CONFIG_PINCTRL=y > CONFIG_PINCTRL_ARMADA_37XX=y > CONFIG_DM_REGULATOR_FIXED=y > CONFIG_DM_REGULATOR_GPIO=y > -CONFIG_DM_SCSI=y > +# CONFIG_SCSI is not set > CONFIG_MVEBU_A3700_UART=y > CONFIG_MVEBU_A3700_SPI=y > CONFIG_SYSINFO=y > -- > 2.36.1 >