annotate toys/other/modinfo.c @ 923:aff9fa1075eb

Upgrade modinfo to support multiple modules, and add tests, from Isaac Dunham.
author Rob Landley <rob@landley.net>
date Sun, 16 Jun 2013 02:23:59 -0500
parents ac9991f66d0d
children a81921ce4930
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
694
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
1 /* modinfo.c - Display module info
620
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
2 *
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
3 * Copyright 2012 Andre Renaud <andre@bluewatersys.com>
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
4
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
5 USE_MODINFO(NEWTOY(modinfo, "<1F:0", TOYFLAG_BIN))
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
6
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
7 config MODINFO
694
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
8 bool "modinfo"
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
9 default y
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
10 help
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
11 usage: modinfo [-0] [-F field] [modulename...]
620
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
12 */
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
13
674
7e846e281e38 New build infrastructure to generate FLAG_ macros and TT alias, #define FOR_commandname before #including toys.h to trigger it. Rename DEFINE_GLOBALS() to just GLOBALS() (because I could never remember if it was DECLARE_GLOBALS). Convert existing commands to use new infrastructure, and replace optflag constants with FLAG_ macros where appropriate.
Rob Landley <rob@landley.net>
parents: 653
diff changeset
14 #define FOR_modinfo
620
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
15 #include "toys.h"
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
16
674
7e846e281e38 New build infrastructure to generate FLAG_ macros and TT alias, #define FOR_commandname before #including toys.h to trigger it. Rename DEFINE_GLOBALS() to just GLOBALS() (because I could never remember if it was DECLARE_GLOBALS). Convert existing commands to use new infrastructure, and replace optflag constants with FLAG_ macros where appropriate.
Rob Landley <rob@landley.net>
parents: 653
diff changeset
17 GLOBALS(
694
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
18 char *field;
923
aff9fa1075eb Upgrade modinfo to support multiple modules, and add tests, from Isaac Dunham.
Rob Landley <rob@landley.net>
parents: 884
diff changeset
19
aff9fa1075eb Upgrade modinfo to support multiple modules, and add tests, from Isaac Dunham.
Rob Landley <rob@landley.net>
parents: 884
diff changeset
20 long mod;
620
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
21 )
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
22
877
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
23 static char *modinfo_tags[] = {
884
ac9991f66d0d Add firmware field to modinfo output.
idunham@lavabit.com
parents: 877
diff changeset
24 "alias", "license", "description", "author", "firmware",
ac9991f66d0d Add firmware field to modinfo output.
idunham@lavabit.com
parents: 877
diff changeset
25 "vermagic", "srcversion", "intree", "parm", "depends",
620
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
26 };
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
27
877
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
28 static void output_field(char *field, char *value)
620
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
29 {
694
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
30 int len;
620
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
31
877
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
32 if (TT.field && strcmp(TT.field, field)) return;
620
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
33
694
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
34 len = strlen(field);
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
35
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
36 if (TT.field) xprintf("%s", value);
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
37 else xprintf("%s:%*s%s", field, 15 - len, "", value);
877
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
38 xputc((toys.optflags & FLAG_0) ? 0 : '\n');
620
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
39 }
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
40
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
41 static void modinfo_file(struct dirtree *dir)
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
42 {
694
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
43 int fd, len, i;
877
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
44 char *buf, *pos, *full_name;
620
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
45
694
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
46 full_name = dirtree_path(dir, NULL);
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
47 output_field("filename", full_name);
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
48 fd = xopen(full_name, O_RDONLY);
877
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
49 free(full_name);
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
50
694
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
51 len = fdlength(fd);
877
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
52 if (!(buf = mmap(0, len, PROT_READ, MAP_SHARED, fd, 0)))
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
53 perror_exit("mmap %s", full_name);
620
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
54
877
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
55 for (pos = buf; pos < buf+len; pos++) {
694
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
56 if (*pos) continue;
620
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
57
877
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
58 for (i = 0; i < sizeof(modinfo_tags) / sizeof(*modinfo_tags); i++) {
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
59 char *str = modinfo_tags[i];
694
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
60 int len = strlen(str);
877
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
61
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
62 if (!strncmp(pos+1, str, len) && pos[len+1] == '=')
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
63 output_field(str, pos+len+2);
620
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
64 }
694
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
65 }
620
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
66
877
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
67 munmap(buf, len);
694
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
68 close(fd);
620
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
69 }
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
70
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
71 static int check_module(struct dirtree *new)
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
72 {
694
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
73 if (S_ISREG(new->st.st_mode)) {
923
aff9fa1075eb Upgrade modinfo to support multiple modules, and add tests, from Isaac Dunham.
Rob Landley <rob@landley.net>
parents: 884
diff changeset
74 char *s;
877
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
75
923
aff9fa1075eb Upgrade modinfo to support multiple modules, and add tests, from Isaac Dunham.
Rob Landley <rob@landley.net>
parents: 884
diff changeset
76 for (s = toys.optargs[TT.mod]; *s; s++) {
877
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
77 int len = 0;
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
78
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
79 // The kernel treats - and _ the same, so we should too.
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
80 for (len = 0; s[len]; len++) {
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
81 if (s[len] == '-' && new->name[len] == '_') continue;
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
82 if (s[len] == '_' && new->name[len] == '-') continue;
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
83 if (s[len] != new->name[len]) break;
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
84 }
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
85 if (s[len] || strcmp(new->name+len, ".ko")) break;
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
86
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
87 modinfo_file(new);
620
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
88 }
694
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
89 }
620
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
90
694
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
91 return dirtree_notdotdot(new);
620
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
92 }
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
93
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
94 void modinfo_main(void)
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
95 {
694
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
96 struct utsname uts;
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
97
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
98 if (uname(&uts) < 0) perror_exit("bad uname");
786841fdb1e0 Reindent to two spaces per level. Remove vi: directives that haven't worked right in years (ubuntu broke its' vim implementation). Remove trailing spaces. Add/remove blank lines. Re-wordwrap in places. Update documentation with new coding style.
Rob Landley <rob@landley.net>
parents: 674
diff changeset
99 sprintf(toybuf, "/lib/modules/%s", uts.release);
877
37e668afd008 Isaac Dunham pointed out that the kernel treats - and _ as identical in module names, so modinfo should too. Made it use mmap() while I was there, and some cosmetic refactoring.
Rob Landley <rob@landley.net>
parents: 694
diff changeset
100
923
aff9fa1075eb Upgrade modinfo to support multiple modules, and add tests, from Isaac Dunham.
Rob Landley <rob@landley.net>
parents: 884
diff changeset
101 for(TT.mod = 0; TT.mod<toys.optc; TT.mod++) {
aff9fa1075eb Upgrade modinfo to support multiple modules, and add tests, from Isaac Dunham.
Rob Landley <rob@landley.net>
parents: 884
diff changeset
102 dirtree_read(toybuf, check_module);
aff9fa1075eb Upgrade modinfo to support multiple modules, and add tests, from Isaac Dunham.
Rob Landley <rob@landley.net>
parents: 884
diff changeset
103 }
620
312e4c3e00b1 Add modinfo by Andre Renaud.
Rob Landley <rob@landley.net>
parents:
diff changeset
104 }