Searched refs:module (Results 1 – 13 of 13) sorted by relevance
/busybox-1.35.0/examples/ |
D | depmod.pl | 140 foreach my $module (keys %$dep) { 141 warn "reducing module: $module\n" if $verbose; 142 $mod->{$module} = {}; 143 foreach (@{$dep->{$module}}) { 147 $mod->{$module}{$exp->{$_}} = 1; 149 warn "unresolved symbol $_ in file $module\n"; 172 my ($depth, $mod, $mod2, $module, $this_module) = @_; 181 add_mod_deps ($depth, $mod, $mod2, $module, $md); 183 maybe_unshift (\@{$$mod2->{$module}}, $md); 190 foreach my $module (keys %$mod) { [all …]
|
/busybox-1.35.0/modutils/ |
D | modutils.h | 42 #define moddb_foreach_module(db, module, index) \ argument 44 for (module = (db)->buckets[index]; module; module = module->next) 93 int FAST_FUNC bb_init_module(const char *module, const char *options); 98 int FAST_FUNC bb_delete_module(const char *module, unsigned int flags); 103 int FAST_FUNC bb_init_module_24(const char *module, const char *options);
|
D | Config.src | 12 Build smaller (~1.5 kbytes), simplified module tools. 19 It scans module files in /lib/modules/`uname -r` and 20 determines dependencies and module alias names on the fly. 21 This may make module loading slower, most notably 22 when one needs to load module by alias (this requires 23 scanning through module _bodies_). 25 At the first attempt to load a module by alias modprobe 31 with modules.dep file as created/used by standard module tools. 33 Additional module parameters can be stored in 41 bool "Accept module options on modprobe command line" [all …]
|
D | modutils.c | 18 static module_entry *helper_get_module(module_db *db, const char *module, int create) in helper_get_module() argument 24 filename2modname(module, modname); in helper_get_module() 45 module_entry* FAST_FUNC moddb_get(module_db *db, const char *module) in moddb_get() argument 47 return helper_get_module(db, module, 0); in moddb_get() 49 module_entry* FAST_FUNC moddb_get_or_create(module_db *db, const char *module) in moddb_get_or_create() argument 51 return helper_get_module(db, module, 1); in moddb_get_or_create() 250 int FAST_FUNC bb_delete_module(const char *module, unsigned int flags) in bb_delete_module() argument 253 delete_module(module, flags); in bb_delete_module()
|
D | modutils-24.c | 464 int delete_module(const char *module, unsigned int flags); 2811 struct new_module *module; in new_init_module() local 2821 module = (struct new_module *) sec->contents; in new_init_module() 2824 module->size_of_struct = sizeof(*module); in new_init_module() 2825 module->size = m_size; in new_init_module() 2826 module->flags = flag_autoclean ? NEW_MOD_AUTOCLEAN : 0; in new_init_module() 2830 module->syms = sec->header.sh_addr; in new_init_module() 2831 module->nsyms = sec->header.sh_size / (2 * tgt_sizeof_char_p); in new_init_module() 2836 module->deps = sec->header.sh_addr; in new_init_module() 2837 module->ndeps = n_ext_modules_used; in new_init_module() [all …]
|
D | modprobe.c | 209 static struct module_entry *get_or_add_modentry(const char *module) in get_or_add_modentry() argument 211 return moddb_get_or_create(&G.db, module); in get_or_add_modentry()
|
/busybox-1.35.0/shell/hush_test/ |
D | run-all | 99 for module in $modules; do 100 do_test $module || ret=1
|
/busybox-1.35.0/shell/ash_test/ |
D | run-all | 94 for module in $modules; do 95 do_test $module || ret=1
|
/busybox-1.35.0/docs/ |
D | Kconfig-language.txt | 14 +- Loadable module support 15 | +- Enable loadable module support 16 | +- Set version information on all module symbols 17 | +- Kernel module loader 31 bool "Set version information on all module symbols" 105 module state. Dependency expressions have the following syntax: 169 bool "Enable loadable module support" 172 bool "Set version information on all module symbols" 175 comment "module support disabled"
|
D | keep_data_small.txt | 77 This example completely eliminates globals in that module. 78 Required memory is allocated in unpack_gz_stream() [its main module]
|
/busybox-1.35.0/archival/libarchive/unxz/ |
D | README | 18 Compiling the Linux kernel module 20 The xz_dec module depends on crc32 module, so make sure that you have 46 Most people don't need the xz_dec_test module. You can skip building
|
/busybox-1.35.0/ |
D | README | 185 Under 2.4 Linux kernels, kernel module loading was implemented in a 190 The module loading mechanism for the 2.6 kernel is much more generic, and 191 we believe 2.6.x kernel module loading support should work on all
|
D | Makefile | 1101 module-dirs := $(addprefix _module_,$(KBUILD_EXTMOD)) 1102 PHONY += $(module-dirs) modules 1103 $(module-dirs): crmodverdir $(objtree)/Module.symvers 1106 modules: $(module-dirs)
|