Home
last modified time | relevance | path

Searched refs:module (Results 1 – 11 of 11) sorted by relevance

/scripts/
Dexport_report.pl97 my (undef, $symbol, $module, $gpl) = split;
98 $SYMBOL { $symbol } = [ $module , "0" , $symbol, $gpl];
108 my $module;
110 unless (open ($module, '<', $thismod)) {
116 while ( <$module> ) {
131 my ($module, $value, $symbol, $gpl) = @{$SYMBOL{$sym}};
132 $SYMBOL{ $sym } = [ $module, $value+1, $symbol, $gpl];
140 close($module);
158 my ($module, $value, $symbol, $gpl) = @{$list};
159 printf("%-25s\t%-25s\t%-10s\t", $symbol, $module, $value);
[all …]
Dnamespace.pl377 foreach my $module (@{$def{$name}}) {
378 printf "\t$module\n";
446 my @module = @{$def{$name}};
447 foreach my $module (@module) {
448 if (! exists($noref{$module})) {
449 $noref{$module} = [];
451 push(@{$noref{$module}}, $name);
457 foreach my $module (sort(keys(%noref))) {
458 printf " $module\n";
459 foreach (sort(@{$noref{$module}})) {
Dconfig15 --module|-m option Turn option into a module
27 --module-after|-M beforeopt option
28 Turn option into module directly after other option
Dmarkup_oops.pl42 my $module = "";
178 $module = $3;
181 $module = $3;
194 if ($module ne "") {
196 $modulefile = `modinfo -F filename $module`;
201 print "Module .ko file for $module not found. Aborting\n";
Dsign-file29 my $module = shift @ARGV;
35 $dest = $module . "~";
41 die "Can't read module\n" unless (-r $module);
361 $digest = readpipe("openssl dgst -$dgst -binary $module") || die "openssl dgst";
386 my $unsigned_module = read_file($module);
420 rename($dest, $module) || die $module;
Dmodule-common.lds2 * Common module linker script, always used when linking a module.
DMakefile.build171 $(if $(part-of-module), \
176 $(real-objs-m) : part-of-module := y
177 $(real-objs-m:.o=.i) : part-of-module := y
178 $(real-objs-m:.o=.s) : part-of-module := y
179 $(real-objs-m:.o=.lst): part-of-module := y
/scripts/kconfig/
Dstreamline_config.pl390 foreach my $module (keys(%modules)) {
391 if (defined($objects{$module})) {
392 my @arr = @{$objects{$module}};
394 $configs{$conf} = $module;
395 dprint "$conf added by direct ($module)\n";
408 print STDERR "$module config not found!!\n";
626 foreach my $module (keys(%modules)) {
627 if (defined($objects{$module})) {
628 my @arr = @{$objects{$module}};
634 print STDERR "module $module did not have configs";
/scripts/mod/
Dmodpost.c114 static struct module *modules;
116 static struct module *find_module(char *modname) in find_module()
118 struct module *mod; in find_module()
126 static struct module *new_module(const char *modname) in new_module()
128 struct module *mod; in new_module()
157 struct module *module; member
201 static struct symbol *new_symbol(const char *name, struct module *module, in new_symbol() argument
209 new->module = module; in new_symbol()
302 static struct symbol *sym_add_exported(const char *name, struct module *mod, in sym_add_exported()
313 s->module->name, in sym_add_exported()
[all …]
Dmodpost.h105 struct module { struct
106 struct module *next; argument
169 void handle_moddevtable(struct module *mod, struct elf_info *info,
171 void add_moddevtable(struct buffer *buf, struct module *mod);
Dfile2alias.c173 unsigned char max, struct module *mod) in do_usb_entry()
277 static void do_usb_entry_multi(void *symval, struct module *mod) in do_usb_entry_multi()
343 struct module *mod) in do_usb_table()
523 struct module *mod) in do_pnp_device_entry()
549 struct module *mod) in do_pnp_card_entries()
1171 struct module *mod) in do_table()
1192 void handle_moddevtable(struct module *mod, struct elf_info *info, in handle_moddevtable()
1253 void add_moddevtable(struct buffer *buf, struct module *mod) in add_moddevtable()