* [ptxdist] Selecting one of many packages only
@ 2014-08-25 9:54 Dirk Schnitzler
2014-08-25 10:08 ` Alexander Dahl
0 siblings, 1 reply; 2+ messages in thread
From: Dirk Schnitzler @ 2014-08-25 9:54 UTC (permalink / raw)
To: ptxdist
Dear all,
Is there a way to exclude the rest of a list of packages if one of them
was selected (like e.g. radiobuttons)?
It's about different configurations that I want to maintain in my
system, only one can be active.
The selected config is basically a link "/etc/my-prj/active" which
points to either
"/etc/my-prj/config-1" or "/etc/my-prj/config-2", etc, etc.
Is there a way to do so with the ".in" files or am I going the wrong way?
Kind regards,
Dirk.
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [ptxdist] Selecting one of many packages only
2014-08-25 9:54 [ptxdist] Selecting one of many packages only Dirk Schnitzler
@ 2014-08-25 10:08 ` Alexander Dahl
0 siblings, 0 replies; 2+ messages in thread
From: Alexander Dahl @ 2014-08-25 10:08 UTC (permalink / raw)
To: ptxdist
Hei hei,
Am 2014-08-25 11:54, schrieb Dirk Schnitzler:
> Is there a way to exclude the rest of a list of packages if one of
> them was selected (like e.g. radiobuttons)?
In general: yes. In Kconfig this could look like this (copied from one
of our custom .in files):
choice
prompt "CMAKE BUILD TYPE"
default ISBUILD_TYPE_EMPTY
help
This sets CMAKE_BUILD_TYPE for all ifak system libraries and
applications. Default is 'RelWithDebInfo' which is the default
of ptxdist. Possible values are Debug, Release, RelWithDebInfo
and MinSizeRel.
config ISBUILD_TYPE_EMPTY
bool
prompt "empty"
config ISBUILD_TYPE_DEBUG
bool
prompt "Debug"
config ISBUILD_TYPE_RELEASE
bool
prompt "Release"
config ISBUILD_TYPE_RELWITHDEBINFO
bool
prompt "RelWithDebInfo"
config ISBUILD_TYPE_MINSIZEREL
bool
prompt "MinSizeRel"
endchoice
> It's about different configurations that I want to maintain in my
> system, only one can be active.
> The selected config is basically a link "/etc/my-prj/active" which
> points to either
> "/etc/my-prj/config-1" or "/etc/my-prj/config-2", etc, etc.
> Is there a way to do so with the ".in" files or am I going the wrong way?
It's a little more complicated in the .make rule though, you have to
test each bool separatly.
HTH & Greets
Alex
--
»With the first link, the chain is forged. The first speech censured,
the first thought forbidden, the first freedom denied, chains us all
irrevocably.« (Jean-Luc Picard, quoting Judge Aaron Satie)
*** GnuPG-FP: 02C8 A590 7FE5 CA5F 3601 D1D5 8FBA 7744 CC87 10D0 ***
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-08-25 10:08 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-25 9:54 [ptxdist] Selecting one of many packages only Dirk Schnitzler
2014-08-25 10:08 ` Alexander Dahl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox