mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-26 11:32:23 -06:00
modules: introduces module_kconfig directive
module_kconfig is a new directive that should be used with module_obj whenever that module depends on the Kconfig to be enabled. When the module is enabled in Kconfig we are sure that its dependencies will be enabled as well, thus the module will be loaded without any problem. The correct way to use module_kconfig is by passing the Kconfig option to module_kconfig (or the *config-devices.mak without CONFIG_). Signed-off-by: Jose R. Ziviani <jziviani@suse.de> Signed-off-by: Dario Faggioli <dfaggioli@suse.com> Message-Id: <165369002370.5857.12150544416563557322.stgit@work> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
b0f3184e82
commit
24ce7aa77d
18 changed files with 28 additions and 0 deletions
|
@ -135,6 +135,16 @@ void module_allow_arch(const char *arch);
|
|||
*/
|
||||
#define module_opts(name) modinfo(opts, name)
|
||||
|
||||
/**
|
||||
* module_kconfig
|
||||
*
|
||||
* @name: Kconfig requirement necessary to load the module
|
||||
*
|
||||
* This module requires a core module that should be implemented and
|
||||
* enabled in Kconfig.
|
||||
*/
|
||||
#define module_kconfig(name) modinfo(kconfig, name)
|
||||
|
||||
/*
|
||||
* module info database
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue