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 7B78EC433FE for ; Thu, 6 Oct 2022 13:24:40 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 8FC8B84D8A; Thu, 6 Oct 2022 15:24:20 +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="QzkerdvZ"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 39EF684C0C; Thu, 6 Oct 2022 15:24:15 +0200 (CEST) Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) (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 E3EA084233 for ; Thu, 6 Oct 2022 15:24:11 +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=rogerq@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 8C3F8B82077; Thu, 6 Oct 2022 13:24:11 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id AC739C433D7; Thu, 6 Oct 2022 13:24:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1665062650; bh=Kyv1+N+kvCbxl223wdSCZJ4TMaN21eI/9/gxnzzD184=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=QzkerdvZga3NkNjiLT4oUTMkpTryEGNf+vWm9XwUYpw/uN0ex62FR6m9jdV9+Emoh pQwOi2KPN69jgcWrZHt6da8Is6rwPgj5E+W6x3f27bjLQjPQo2CJyyhuccSCA5nd1S m/wYM2/Hlwz7zDL11P+eX2OA9ymicYgU7BB612A9zJSkLWFkPU8orMsfIQAHBP+LuC A12EgJpPMklMoS1rZYtpVGbxT/kOtTbb8xH7pT9BZP0G3bhkQnWnjuEGmeZu6DtSwL +XpQ5dCfnmBg+tYSGBjUPENEv0oPVQpXGqYXCK6kfOA2AXHTeVXC4ajQLsj9eKdQK5 IWYDEF5B7wq4g== From: Roger Quadros To: trini@konsulko.com, sjg@chromium.org Cc: u-boot@lists.denx.de, praneeth@ti.com, kishon@ti.com, Roger Quadros Subject: [u-boot][PATCH v2 2/4] scripts: Makefile.spl: Enable memory drivers to be built for SPL Date: Thu, 6 Oct 2022 16:23:58 +0300 Message-Id: <20221006132400.5628-3-rogerq@kernel.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20221006132400.5628-1-rogerq@kernel.org> References: <20221006132400.5628-1-rogerq@kernel.org> 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 We will need ti-gpmc driver for SPL. Allow memory drivers do be built for SPL. Signed-off-by: Roger Quadros --- scripts/Makefile.spl | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl index 3bafeb4fe9..110076b22f 100644 --- a/scripts/Makefile.spl +++ b/scripts/Makefile.spl @@ -114,6 +114,7 @@ libs-$(CONFIG_PARTITIONS) += disk/ endif libs-y += drivers/ +libs-y += drivers/memory/ libs-$(CONFIG_SPL_USB_GADGET) += drivers/usb/dwc3/ libs-$(CONFIG_SPL_USB_GADGET) += drivers/usb/cdns3/ libs-y += dts/ -- 2.17.1