Question about some Kconfig dependencies
Denys Vlasenko
vda.linux at googlemail.com
Tue Oct 29 10:55:09 UTC 2013
On Tue, Oct 22, 2013 at 10:20 PM, Sarah Nadi <snadi at uwaterloo.ca> wrote:
> Why does FEATURE_INDIVIDUAL depend on BUILD_LIBBUSYBOX. Is there a technical
> dependency in the code which makes this dependency necessary?
No, this dependency is not real:
individual applets can be built without libbusybox.
It's just that no one implemented and tested necessary magic
in makefiles to make it work.
One of the reasons for this is that in this usage case there will be
a lot of code duplication in the resulting binaries:
every frequently used function will be present in many binaries.
This does not happen with libbusybox build.
> Why does FEATURE_USERNAME_COMPLETION depend on
> FEATURE_TAB_COMPLETION in the libbb folder?
Because username completion is a form of tab completion:
you type a partial username and press <tab> key.
--
vda
More information about the busybox
mailing list