Commit 712f9b46 authored by Rusty Russell's avatar Rusty Russell

modpost: add -T option to read module names from file/stdin.

Because there are too many modules in the world.
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent d4ef1c30
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
#include <stdio.h> #include <stdio.h>
#include <ctype.h> #include <ctype.h>
#include <string.h> #include <string.h>
#include <limits.h>
#include <stdbool.h> #include <stdbool.h>
#include "modpost.h" #include "modpost.h"
#include "../../include/generated/autoconf.h" #include "../../include/generated/autoconf.h"
...@@ -1763,6 +1764,27 @@ static void read_symbols(char *modname) ...@@ -1763,6 +1764,27 @@ static void read_symbols(char *modname)
mod->unres = alloc_symbol("module_layout", 0, mod->unres); mod->unres = alloc_symbol("module_layout", 0, mod->unres);
} }
static void read_symbols_from_files(const char *filename)
{
FILE *in = stdin;
char fname[PATH_MAX];
if (strcmp(filename, "-") != 0) {
in = fopen(filename, "r");
if (!in)
fatal("Can't open filenames file %s: %m", filename);
}
while (fgets(fname, PATH_MAX, in) != NULL) {
if (strends(fname, "\n"))
fname[strlen(fname)-1] = '\0';
read_symbols(fname);
}
if (in != stdin)
fclose(in);
}
#define SZ 500 #define SZ 500
/* We first write the generated file into memory using the /* We first write the generated file into memory using the
...@@ -2124,13 +2146,13 @@ int main(int argc, char **argv) ...@@ -2124,13 +2146,13 @@ int main(int argc, char **argv)
struct module *mod; struct module *mod;
struct buffer buf = { }; struct buffer buf = { };
char *kernel_read = NULL, *module_read = NULL; char *kernel_read = NULL, *module_read = NULL;
char *dump_write = NULL; char *dump_write = NULL, *files_source = NULL;
int opt; int opt;
int err; int err;
struct ext_sym_list *extsym_iter; struct ext_sym_list *extsym_iter;
struct ext_sym_list *extsym_start = NULL; struct ext_sym_list *extsym_start = NULL;
while ((opt = getopt(argc, argv, "i:I:e:msSo:awM:K:")) != -1) { while ((opt = getopt(argc, argv, "i:I:e:msST:o:awM:K:")) != -1) {
switch (opt) { switch (opt) {
case 'i': case 'i':
kernel_read = optarg; kernel_read = optarg;
...@@ -2162,6 +2184,9 @@ int main(int argc, char **argv) ...@@ -2162,6 +2184,9 @@ int main(int argc, char **argv)
case 'S': case 'S':
sec_mismatch_verbose = 0; sec_mismatch_verbose = 0;
break; break;
case 'T':
files_source = optarg;
break;
case 'w': case 'w':
warn_unresolved = 1; warn_unresolved = 1;
break; break;
...@@ -2184,6 +2209,9 @@ int main(int argc, char **argv) ...@@ -2184,6 +2209,9 @@ int main(int argc, char **argv)
while (optind < argc) while (optind < argc)
read_symbols(argv[optind++]); read_symbols(argv[optind++]);
if (files_source)
read_symbols_from_files(files_source);
for (mod = modules; mod; mod = mod->next) { for (mod = modules; mod; mod = mod->next) {
if (mod->skip) if (mod->skip)
continue; continue;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment