From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 12 Apr 2023 09:56:53 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1pmVLY-000rpx-DN for lore@lore.pengutronix.de; Wed, 12 Apr 2023 09:56:53 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1pmVLY-0000K2-PP; Wed, 12 Apr 2023 09:56:52 +0200 Received: from smtp28.bhosted.nl ([2a02:9e0:8000::40]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pmVLO-0000Jt-4Y for ptxdist@pengutronix.de; Wed, 12 Apr 2023 09:56:42 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonic.nl; s=202111; h=content-transfer-encoding:content-type:in-reply-to:from:references:to:subject: mime-version:date:message-id:from; bh=Q2QsyJwzUAS+ZybO55y2ecrBTfhLrgKYpRKlITMqTZo=; b=lH6yI6eyVp0ztB/HmFCeXuT/0TE1sYZTpmV7IGgjnTsAPob7hcePmAURKnfWdYOOgSG8F+Ejm11Dt e8hdys9v3CCxLA9O6yRZqy2+KqCHYOAz6qKHZ9vUpHSffJpIPm+Avok/FWzLgoSdevlP5m5EX1OCzV a9o1QBCdG9E+OAjjZDXtdogbqBpvoiqx9OV5yxkpcIjxVgdSjXfgckQzSQl+neGjj7WtLKq1u5B9Ph AE3ojWN7y6BTblFNQ0YAzUqrOCH140OlugWTzcDymwe0L2XRHWxFpx/S7Q8EaD1yZmZWylfPP77hw7 RS9SHaM0mKV6zm+g/nkV3tYvtbFouhw== X-MSG-ID: 8f0da3d4-d907-11ed-a150-0050569d11ae Message-ID: <73e7824c-421b-a7f3-ea34-e46b591958b2@protonic.nl> Date: Wed, 12 Apr 2023 09:56:18 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.8.0 Content-Language: nl To: ptxdist@pengutronix.de References: <20230406145016.3074015-1-robin@protonic.nl> <20230406145016.3074015-3-robin@protonic.nl> From: Robin van der Gracht In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on metis.ext.pengutronix.de X-Spam-Level: X-Spam-Status: No, score=-3.1 required=4.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NICE_REPLY_A,SPF_HELO_PASS, SPF_PASS autolearn=ham autolearn_force=no version=3.4.2 Subject: Re: [ptxdist] [PATCH 3/3] rules: pcsc-lite: Add option for building with USB support X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false On 12-04-2023 08:32, Michael Olbrich wrote: > On Thu, Apr 06, 2023 at 04:50:16PM +0200, Robin van der Gracht wrote: >> Signed-off-by: Robin van der Gracht >> --- >> rules/pcsc-lite.in | 5 +++++ >> rules/pcsc-lite.make | 2 +- >> 2 files changed, 6 insertions(+), 1 deletion(-) >> >> diff --git a/rules/pcsc-lite.in b/rules/pcsc-lite.in >> index 016a70037..de1c288c3 100644 >> --- a/rules/pcsc-lite.in >> +++ b/rules/pcsc-lite.in >> @@ -18,6 +18,11 @@ menuconfig PCSC_LITE >> >> if PCSC_LITE >> >> +config PCSC_LITE_USB >> + bool "USB Support" >> + help >> + Add USB support. > > Wrong indention. This should be tabs instead of spaces. I've fixed this > while applying the patch. In the future, please run 'ptxdist lint' before > sending patches. It will complain about all the small stuff like this. > Ack. Thanks for pointing out the lint feature. Will do. Robin