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 F2535C32771 for ; Wed, 28 Sep 2022 12:12:15 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 1627284BE4; Wed, 28 Sep 2022 14:12:13 +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="UOAPB7KM"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 7932084AEB; Wed, 28 Sep 2022 14:11:59 +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 4898284AEB for ; Wed, 28 Sep 2022 14:11:57 +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 D7F9EB82035; Wed, 28 Sep 2022 12:11:56 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8B917C433B5; Wed, 28 Sep 2022 12:11:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1664367115; bh=Kyv1+N+kvCbxl223wdSCZJ4TMaN21eI/9/gxnzzD184=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=UOAPB7KMsoy9KHsyW+hZ+uY/JdDcKXyKN+r+ND71mc/RBI7fvOSHrb/Lrk33Jd0aQ n/43Hz87I8Mf9yr7k6EF2sgxGIuG9cHW13RhynQ1VyFFlyT3GTRnDnbNNa++PLoNc+ CWAog8ZcAbFv2Sv4Zcre8yYOVLZwXczJEWbjl5yCprMA2+MWfbMMhOaEw/HKicSRij s7d6ZIhXkV4MWADbtYFZ3j4roSmqC1JFXwfak28hsSzPoWlx3RI1W8DAUoeuiWJqSI a+97sHbZx+trn7LNhNmqKhnl7P0uxkmw8GV8w/KVcItKmyOcLt/tKIegLdtnB49enk 9ApLPghS4moRw== From: Roger Quadros To: trini@konsulko.com Cc: u-boot@lists.denx.de, Roger Quadros Subject: [u-boot][PATCH 1/3] scripts: Makefile.spl: Enable memory drivers to be built for SPL Date: Wed, 28 Sep 2022 15:11:47 +0300 Message-Id: <20220928121149.1724-2-rogerq@kernel.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20220928121149.1724-1-rogerq@kernel.org> References: <20220928121149.1724-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