From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Thu, 27 May 2021 08:46:41 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1lm9mz-0002o6-Fc for lore@lore.pengutronix.de; Thu, 27 May 2021 08:46:41 +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 1lm9my-0007Pe-Lf; Thu, 27 May 2021 08:46:40 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lm9lt-0005nn-6v; Thu, 27 May 2021 08:45:33 +0200 Received: from [2a0a:edc0:0:1101:1d::39] (helo=dude03.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1lm9ls-0006UP-MJ; Thu, 27 May 2021 08:45:32 +0200 Received: from mol by dude03.red.stw.pengutronix.de with local (Exim 4.92) (envelope-from ) id 1lm9ls-00GxE9-JO; Thu, 27 May 2021 08:45:32 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Thu, 27 May 2021 08:45:32 +0200 Message-Id: <20210527064532.4040874-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20210506202649.15793-1-m.grzeschik@pengutronix.de> References: <20210506202649.15793-1-m.grzeschik@pengutronix.de> MIME-Version: 1.0 Subject: Re: [ptxdist] [APPLIED] libusbgx: make example and tool selection fine grained 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 Cc: Michael Grzeschik Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit 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 Thanks, applied as 204be3e0f85f82e966309a79dee86269c8039d7c. Michael [sent from post-receive hook] On Thu, 27 May 2021 08:45:32 +0200, Michael Grzeschik wrote: > Currently all tools and exampled are unconditionally installed. > This patch changes this by adding a selection for every binary. > > Signed-off-by: Michael Grzeschik > Message-Id: <20210506202649.15793-1-m.grzeschik@pengutronix.de> > Signed-off-by: Michael Olbrich > > diff --git a/rules/libusbgx.in b/rules/libusbgx.in > index 98776c02660e..ba1595c2a485 100644 > --- a/rules/libusbgx.in > +++ b/rules/libusbgx.in > @@ -1,8 +1,91 @@ > ## SECTION=communication > > -config LIBUSBGX > +menuconfig LIBUSBGX > bool > prompt "libusbgx" > help > libusbgx is a C library encapsulating the kernel USB gadget-configfs > userspace API functionality. > + > +if LIBUSBGX > + > +config SHOW_GADGETS > + bool "install show-gadget tool" > + help > + Wether to build the show-gadget tool > + to list all already installed gadgets in configfs > + > +config SHOW_UDCS > + bool "install show-udcs tool" > + help > + Wether to build the show-udcs tool > + to list all available udcs > + > +config GADGET_VID_PID_REMOVE > + bool "install gadget-vid-pid-remove tool" > + help > + Wether to build the gadget-vid-pid-remove tool > + to remove whole configfs gadget setup defined for > + vid and pid > + > +config GADGET_EXPORT > + bool "install gadget-export tool" > + help > + Wether to build the gadget-export tool > + to export the configfs configuration to a scheme file > + > +config GADGET_IMPORT > + bool "install gadget-import tool" > + help > + Wether to build the gadget-import tool > + to import the configfs configuration from a scheme file > + > +config GADGET_ACM_ECM > + bool "install gadget-acm-ecm example tool" > + help > + Wether to build the gadget-acm-ecm example tool > + to create an configfs gadget setup for an acm-ecm device > + > +config GADGET_UVC > + bool "install gadget-uvc example tool" > + help > + Wether to build the gadget-uvc example tool > + to create an configfs gadget setup for an uvc device > + > +config GADGET_FFS > + bool "install gadget-ffs example tool" > + help > + Wether to build the gadget-ffs example tool > + to create an configfs gadget setup for an function-fs device > + > +config GADGET_MS > + bool "install gadget-ms example tool" > + help > + Wether to build the gadget-ms example tool to create an > + configfs gadget setup for an mass-storage device > + > +config GADGET_MIDI > + bool "install gadget-midi example tool" > + help > + Wether to build the gadget-midi example tool > + to create an configfs gadget setup for an midi device > + > +config GADGET_HID > + bool "install gadget-hid example tool" > + help > + Wether to build the gadget-hid example tool > + to create an configfs gadget setup for an hid device > + > +config GADGET_UAC2 > + bool "install gadget-uac2 example tool" > + help > + Wether to build the gadget-uac2 example tool > + to create an configfs gadget setup for an Audio Class device > + > +config GADGET_RNDIS_OS_DESC > + bool "install gadget-rndis-os-desc example tool" > + help > + Wether to build the gadget-rndis-os-desc example tool > + to create an configfs gadget setup for an rndis ethernet device > + > +endif > diff --git a/rules/libusbgx.make b/rules/libusbgx.make > index 6c8fce429c34..c723174bfc2e 100644 > --- a/rules/libusbgx.make > +++ b/rules/libusbgx.make > @@ -57,7 +57,58 @@ $(STATEDIR)/libusbgx.targetinstall: > @$(call install_fixup, libusbgx, DESCRIPTION, missing) > > @$(call install_lib, libusbgx, 0, 0, 0644, libusbgx) > - @$(call install_tree, libusbgx, 0, 0, -, /usr/bin) > + > +ifdef PTXCONF_SHOW_GADGETS > + @$(call install_copy, libusbgx, 0, 0, 0755, -, /usr/bin/show-gadgets) > +endif > + > +ifdef PTXCONF_SHOW_UDCS > + @$(call install_copy, libusbgx, 0, 0, 0755, -, /usr/bin/show-gadgets) > +endif > + > +ifdef PTXCONF_GADGET_VID_PID_REMOVE > + @$(call install_copy, libusbgx, 0, 0, 0755, -, /usr/bin/gadget-vid-pid-remove) > +endif > + > +ifdef PTXCONF_GADGET_IMPORT > + @$(call install_copy, libusbgx, 0, 0, 0755, -, /usr/bin/gadget-import) > +endif > + > +ifdef PTXCONF_GADGET_EXPORT > + @$(call install_copy, libusbgx, 0, 0, 0755, -, /usr/bin/gadget-export) > +endif > + > +ifdef PTXCONF_GADGET_ACM_ECM > + @$(call install_copy, libusbgx, 0, 0, 0755, -, /usr/bin/gadget-acm-ecm) > +endif > + > +ifdef PTXCONF_GADGET_UVC > + @$(call install_copy, libusbgx, 0, 0, 0755, -, /usr/bin/gadget-uvc) > +endif > + > +ifdef PTXCONF_GADGET_FFS > + @$(call install_copy, libusbgx, 0, 0, 0755, -, /usr/bin/gadget-ffs) > +endif > + > +ifdef PTXCONF_GADGET_MS > + @$(call install_copy, libusbgx, 0, 0, 0755, -, /usr/bin/gadget-ms) > +endif > + > +ifdef PTXCONF_GADGET_MIDI > + @$(call install_copy, libusbgx, 0, 0, 0755, -, /usr/bin/gadget-midi) > +endif > + > +ifdef PTXCONF_GADGET_HID > + @$(call install_copy, libusbgx, 0, 0, 0755, -, /usr/bin/gadget-hid) > +endif > + > +ifdef PTXCONF_GADGET_UAC2 > + @$(call install_copy, libusbgx, 0, 0, 0755, -, /usr/bin/gadget-uac2) > +endif > + > +ifdef PTXCONF_GADGET_RNDIS_OS_DESC > + @$(call install_copy, libusbgx, 0, 0, 0755, -, /usr/bin/gadget-rndis-os-desc) > +endif > > @$(call install_finish, libusbgx) > _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de