Robert Schwebel wrote:
On Wed, Aug 27, 2008 at 03:39:13PM -0600, Gary Thomas wrote:
I've noticed that in the latest PTXdist (I'm running r8788),
there are a couple of host packages that always get built,
but don't seem to be used - certainly not by me.

selected_ptxconfig:PTXCONF_HOST_LRZSZ=y
selected_ptxconfig:PTXCONF_HOST_CKERMIT=y

These are always enabled in the *.in files.

Is there a good reason for this?  Can they be made optional?

The idea behind kermit is that we use it for the integrated test suite,
dito with lrzsz. However, we can make it optional when the concept for
the test suite is finished (which is one of the remaining release
blockers).

I figured as much.  I'm not keen on building things I don't use,
so I've built up this patch.

--
------------------------------------------------------------
Gary Thomas                 |  Consulting for the
MLB Associates              |    Embedded world
------------------------------------------------------------
Index: rules/host-lrzsz.in
===================================================================
--- rules/host-lrzsz.in (revision 4468)
+++ rules/host-lrzsz.in (working copy)
@@ -1,4 +1,4 @@
 config HOST_LRZSZ
        bool
-       default y
+       default n
 
Index: rules/host-ckermit.in
===================================================================
--- rules/host-ckermit.in       (revision 4468)
+++ rules/host-ckermit.in       (working copy)
@@ -1,4 +1,4 @@
 config HOST_CKERMIT
        bool
-       default y
+       default n
 
Index: rules/host-testframe.in
===================================================================
--- rules/host-testframe.in     (revision 0)
+++ rules/host-testframe.in     (revision 0)
@@ -0,0 +1,5 @@
+menuconfig HOST_TESTFRAME
+       bool
+       prompt "Host-side testing framework"
+       select HOST_LRZSZ
+       select HOST_CKERMIT
Index: rules/hosttools.in
===================================================================
--- rules/hosttools.in  (revision 4468)
+++ rules/hosttools.in  (working copy)
@@ -10,6 +10,7 @@
 
 source "rules/host-gettext.in"
 source "rules/host-intltool.in"
+source "rules/host-testframe.in"
 
 
 # automatically selected host tools
--
ptxdist mailing list
ptxdist@pengutronix.de

Reply via email to