* Re: [Cooker] Re: [CHRPM] modutils-2.3.20-1mdk [not found] ` <m3g0kl2v5h.fsf@matrix.mandrakesoft.com> @ 2000-11-22 8:57 ` Christian Gennerat 2000-11-22 9:42 ` Keith Owens 0 siblings, 1 reply; 2+ messages in thread From: Christian Gennerat @ 2000-11-22 8:57 UTC (permalink / raw) To: cooker, linux-kernel@vger.kernel.org Chmouel Boudjnah a écrit : > i have no idea what's happen here, but gonna to look at this. The problem is in modules.conf Most users do not use "depfile" and "path" commands So they have not seen this problem. Other have not read the man. As I have tested the new 2.4 kernel, and I wanted to be able to load and run modules, I have a big modules.conf using theese commands. The man for modules.conf says: DEFAULT CONFIGURATION depfile=/lib/modules/`uname -r`/modules.dep pcimapfile=/lib/modules/`uname -r`/modules.pcimap isapnpmapfile=/lib/modules/`uname -r`/modules.isapnpmap usbmapfile=/lib/modules/`uname -r`/modules.usbmap path[boot]=/lib/modules/boot path[toplevel]=/lib/modules/`uname -r` path[toplevel]=/lib/modules/`kernelversion` path[toplevel]=/lib/modules/default This was true for modutils-2.3.19, and older versions. With modutils-2.3.20 the syntax have changed. Anything in ChangeLog? `uname -r` has to be changed in $(uname -r) - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [Cooker] Re: [CHRPM] modutils-2.3.20-1mdk 2000-11-22 8:57 ` [Cooker] Re: [CHRPM] modutils-2.3.20-1mdk Christian Gennerat @ 2000-11-22 9:42 ` Keith Owens 0 siblings, 0 replies; 2+ messages in thread From: Keith Owens @ 2000-11-22 9:42 UTC (permalink / raw) To: Christian Gennerat; +Cc: cooker, linux-kernel@vger.kernel.org On Wed, 22 Nov 2000 09:57:02 +0100, Christian Gennerat <christian.gennerat@vz.cit.alcatel.fr> wrote: >The problem is in modules.conf >Most users do not use "depfile" and "path" commands >So they have not seen this problem. > >This was true for modutils-2.3.19, and older versions. >With modutils-2.3.20 the syntax have changed. >Anything in ChangeLog? >`uname -r` has to be changed in $(uname -r) Try this patch against modutils 2.3.20. If it does not fix the problem then I will need a copy of your modules.conf. `uname -r` should work even without this patch, it does for me. You must have something unusual in your modules.conf. Index: 21.4/util/meta_expand.c --- 21.4/util/meta_expand.c Tue, 21 Nov 2000 19:38:04 +1100 kaos (modutils-2.3/10_meta_expan 1.4.1.3 644) +++ 21.4(w)/util/meta_expand.c Wed, 22 Nov 2000 11:14:54 +1100 kaos (modutils-2.3/10_meta_expan 1.4.1.3 644) @@ -328,10 +328,10 @@ int meta_expand(char *pt, GLOB_LIST *g, pclose(fin); if (line) { - /* Ignore result if no expansion occurred */ - xstrcat(tmpline, "\n", sizeof(tmpline)); - if (strcmp(tmpline, line)) - split_line(g, line, 0); + /* shell used to strip one set of quotes. Paranoia code in + * 2.3.20 stops that strip so we do it ourselves. + */ + split_line(g, line, 1); free(line); } - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2000-11-22 10:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20001116153044.0339B5F405@kenobi.mandrakesoft.com>
[not found] ` <3A153C8F.E752B931@vz.cit.alcatel.fr>
[not found] ` <20001117113729.F26481@mandrakesoft.com>
[not found] ` <3A192A32.4DA063D0@vz.cit.alcatel.fr>
[not found] ` <20001120160822.A7489@mandrakesoft.com>
[not found] ` <m38zqes0fv.fsf@matrix.mandrakesoft.com>
[not found] ` <3A1A3B94.FD5EC61B@vz.cit.alcatel.fr>
[not found] ` <m3g0kl2v5h.fsf@matrix.mandrakesoft.com>
2000-11-22 8:57 ` [Cooker] Re: [CHRPM] modutils-2.3.20-1mdk Christian Gennerat
2000-11-22 9:42 ` Keith Owens
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox