diff options
author | Matt Wilson <msw@redhat.com> | 2000-06-01 22:13:29 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-06-01 22:13:29 +0000 |
commit | 607c39b9ac9df447c340d7673c82297f6f97fa2c (patch) | |
tree | edcbbce9a6e43a9693921589ce9d710726264d1a /loader | |
parent | d7e95d532457f954d78ad69824350bf5acdd6bea (diff) | |
download | anaconda-607c39b9ac9df447c340d7673c82297f6f97fa2c.tar.gz anaconda-607c39b9ac9df447c340d7673c82297f6f97fa2c.tar.xz anaconda-607c39b9ac9df447c340d7673c82297f6f97fa2c.zip |
s/conf.modules/modules.conf/
Diffstat (limited to 'loader')
-rw-r--r-- | loader/loader.c | 4 | ||||
-rw-r--r-- | loader/module-info | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/loader/loader.c b/loader/loader.c index 7c416b825..7e6be4d96 100644 --- a/loader/loader.c +++ b/loader/loader.c @@ -2340,9 +2340,9 @@ int main(int argc, char ** argv) { if (!FL_TESTING(flags)) { int fd; - fd = open("/tmp/conf.modules", O_WRONLY | O_CREAT, 0666); + fd = open("/tmp/modules.conf", O_WRONLY | O_CREAT, 0666); if (fd < 0) { - logMessage("error creating /tmp/conf.modules: %s\n", + logMessage("error creating /tmp/modules.conf: %s\n", strerror(errno)); } else { mlWriteConfModules(modLoaded, modInfo, fd); diff --git a/loader/module-info b/loader/module-info index a5c8933d5..5dead1b40 100644 --- a/loader/module-info +++ b/loader/module-info @@ -10,7 +10,7 @@ Version 0 # The []'s above are not literal, they delimit optional material. # There can be multiple <argument> lines. # <module-name> is the name of the module without any .o extension, just -# as the module name would be entered in /etc/conf.modules +# as the module name would be entered in /etc/modules.conf # <module-type> is the base part of the string demanded by kerneld (eth, # scsi_hostadapter, etc.) # <module-alias> is an optional identifier to identify groups of similar |