I just wrote 'insmod -o' to close bug#1049.
This commit is contained in:
parent
15f29e7d86
commit
155c89b0c3
15
insmod.c
15
insmod.c
@ -78,7 +78,7 @@
|
|||||||
#ifndef MODUTILS_MODULE_H
|
#ifndef MODUTILS_MODULE_H
|
||||||
static const int MODUTILS_MODULE_H = 1;
|
static const int MODUTILS_MODULE_H = 1;
|
||||||
|
|
||||||
#ident "$Id: insmod.c,v 1.39 2001/01/24 23:59:50 andersen Exp $"
|
#ident "$Id: insmod.c,v 1.40 2001/01/25 04:11:06 andersen Exp $"
|
||||||
|
|
||||||
/* This file contains the structures used by the 2.0 and 2.1 kernels.
|
/* This file contains the structures used by the 2.0 and 2.1 kernels.
|
||||||
We do not use the kernel headers directly because we do not wish
|
We do not use the kernel headers directly because we do not wish
|
||||||
@ -284,7 +284,7 @@ int delete_module(const char *);
|
|||||||
#ifndef MODUTILS_OBJ_H
|
#ifndef MODUTILS_OBJ_H
|
||||||
static const int MODUTILS_OBJ_H = 1;
|
static const int MODUTILS_OBJ_H = 1;
|
||||||
|
|
||||||
#ident "$Id: insmod.c,v 1.39 2001/01/24 23:59:50 andersen Exp $"
|
#ident "$Id: insmod.c,v 1.40 2001/01/25 04:11:06 andersen Exp $"
|
||||||
|
|
||||||
/* The relocatable object is manipulated using elfin types. */
|
/* The relocatable object is manipulated using elfin types. */
|
||||||
|
|
||||||
@ -2889,7 +2889,7 @@ extern int insmod_main( int argc, char **argv)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Parse any options */
|
/* Parse any options */
|
||||||
while ((opt = getopt(argc, argv, "fkvxL")) > 0) {
|
while ((opt = getopt(argc, argv, "fkvxLo:")) > 0) {
|
||||||
switch (opt) {
|
switch (opt) {
|
||||||
case 'f': /* force loading */
|
case 'f': /* force loading */
|
||||||
flag_force_load = 1;
|
flag_force_load = 1;
|
||||||
@ -2903,6 +2903,9 @@ extern int insmod_main( int argc, char **argv)
|
|||||||
case 'x': /* do not export externs */
|
case 'x': /* do not export externs */
|
||||||
flag_export = 0;
|
flag_export = 0;
|
||||||
break;
|
break;
|
||||||
|
case 'o': /* name the output module */
|
||||||
|
strncpy(m_name, optarg, BUFSIZ);
|
||||||
|
break;
|
||||||
case 'L': /* Stub warning */
|
case 'L': /* Stub warning */
|
||||||
/* This is needed for compatibility with modprobe.
|
/* This is needed for compatibility with modprobe.
|
||||||
* In theory, this does locking, but we don't do
|
* In theory, this does locking, but we don't do
|
||||||
@ -2928,9 +2931,11 @@ extern int insmod_main( int argc, char **argv)
|
|||||||
|
|
||||||
if (len > 2 && tmp[len - 2] == '.' && tmp[len - 1] == 'o')
|
if (len > 2 && tmp[len - 2] == '.' && tmp[len - 1] == 'o')
|
||||||
len -= 2;
|
len -= 2;
|
||||||
memcpy(m_name, tmp, len);
|
strncpy(m_fullName, tmp, len);
|
||||||
strcpy(m_fullName, m_name);
|
|
||||||
strcat(m_fullName, ".o");
|
strcat(m_fullName, ".o");
|
||||||
|
if (m_name == NULL) {
|
||||||
|
memcpy(m_name, tmp, len);
|
||||||
|
}
|
||||||
|
|
||||||
/* Get a filedesc for the module */
|
/* Get a filedesc for the module */
|
||||||
if ((fp = fopen(argv[optind], "r")) == NULL) {
|
if ((fp = fopen(argv[optind], "r")) == NULL) {
|
||||||
|
@ -78,7 +78,7 @@
|
|||||||
#ifndef MODUTILS_MODULE_H
|
#ifndef MODUTILS_MODULE_H
|
||||||
static const int MODUTILS_MODULE_H = 1;
|
static const int MODUTILS_MODULE_H = 1;
|
||||||
|
|
||||||
#ident "$Id: insmod.c,v 1.39 2001/01/24 23:59:50 andersen Exp $"
|
#ident "$Id: insmod.c,v 1.40 2001/01/25 04:11:06 andersen Exp $"
|
||||||
|
|
||||||
/* This file contains the structures used by the 2.0 and 2.1 kernels.
|
/* This file contains the structures used by the 2.0 and 2.1 kernels.
|
||||||
We do not use the kernel headers directly because we do not wish
|
We do not use the kernel headers directly because we do not wish
|
||||||
@ -284,7 +284,7 @@ int delete_module(const char *);
|
|||||||
#ifndef MODUTILS_OBJ_H
|
#ifndef MODUTILS_OBJ_H
|
||||||
static const int MODUTILS_OBJ_H = 1;
|
static const int MODUTILS_OBJ_H = 1;
|
||||||
|
|
||||||
#ident "$Id: insmod.c,v 1.39 2001/01/24 23:59:50 andersen Exp $"
|
#ident "$Id: insmod.c,v 1.40 2001/01/25 04:11:06 andersen Exp $"
|
||||||
|
|
||||||
/* The relocatable object is manipulated using elfin types. */
|
/* The relocatable object is manipulated using elfin types. */
|
||||||
|
|
||||||
@ -2889,7 +2889,7 @@ extern int insmod_main( int argc, char **argv)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Parse any options */
|
/* Parse any options */
|
||||||
while ((opt = getopt(argc, argv, "fkvxL")) > 0) {
|
while ((opt = getopt(argc, argv, "fkvxLo:")) > 0) {
|
||||||
switch (opt) {
|
switch (opt) {
|
||||||
case 'f': /* force loading */
|
case 'f': /* force loading */
|
||||||
flag_force_load = 1;
|
flag_force_load = 1;
|
||||||
@ -2903,6 +2903,9 @@ extern int insmod_main( int argc, char **argv)
|
|||||||
case 'x': /* do not export externs */
|
case 'x': /* do not export externs */
|
||||||
flag_export = 0;
|
flag_export = 0;
|
||||||
break;
|
break;
|
||||||
|
case 'o': /* name the output module */
|
||||||
|
strncpy(m_name, optarg, BUFSIZ);
|
||||||
|
break;
|
||||||
case 'L': /* Stub warning */
|
case 'L': /* Stub warning */
|
||||||
/* This is needed for compatibility with modprobe.
|
/* This is needed for compatibility with modprobe.
|
||||||
* In theory, this does locking, but we don't do
|
* In theory, this does locking, but we don't do
|
||||||
@ -2928,9 +2931,11 @@ extern int insmod_main( int argc, char **argv)
|
|||||||
|
|
||||||
if (len > 2 && tmp[len - 2] == '.' && tmp[len - 1] == 'o')
|
if (len > 2 && tmp[len - 2] == '.' && tmp[len - 1] == 'o')
|
||||||
len -= 2;
|
len -= 2;
|
||||||
memcpy(m_name, tmp, len);
|
strncpy(m_fullName, tmp, len);
|
||||||
strcpy(m_fullName, m_name);
|
|
||||||
strcat(m_fullName, ".o");
|
strcat(m_fullName, ".o");
|
||||||
|
if (m_name == NULL) {
|
||||||
|
memcpy(m_name, tmp, len);
|
||||||
|
}
|
||||||
|
|
||||||
/* Get a filedesc for the module */
|
/* Get a filedesc for the module */
|
||||||
if ((fp = fopen(argv[optind], "r")) == NULL) {
|
if ((fp = fopen(argv[optind], "r")) == NULL) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user