mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-18 22:43:53 +01:00
fix absolute path to .ko files in insmod
SVN-Revision: 9428
This commit is contained in:
parent
3a4b1e95c0
commit
5017d5fc8e
@ -1,8 +1,8 @@
|
|||||||
Index: busybox-1.7.2/modutils/insmod.c
|
Index: busybox-1.7.2/modutils/insmod.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- busybox-1.7.2.orig/modutils/insmod.c 2007-10-08 22:22:17.132454529 +0200
|
--- busybox-1.7.2.orig/modutils/insmod.c 2007-10-24 18:20:56.857757117 +0200
|
||||||
+++ busybox-1.7.2/modutils/insmod.c 2007-10-08 22:29:04.267655851 +0200
|
+++ busybox-1.7.2/modutils/insmod.c 2007-10-24 18:38:27.701641299 +0200
|
||||||
@@ -61,19 +61,110 @@
|
@@ -61,19 +61,114 @@
|
||||||
#include "libbb.h"
|
#include "libbb.h"
|
||||||
#include <libgen.h>
|
#include <libgen.h>
|
||||||
#include <sys/utsname.h>
|
#include <sys/utsname.h>
|
||||||
@ -81,8 +81,12 @@ Index: busybox-1.7.2/modutils/insmod.c
|
|||||||
+ filename = xasprintf("%s%s", filename, suffix);
|
+ filename = xasprintf("%s%s", filename, suffix);
|
||||||
+ } else {
|
+ } else {
|
||||||
+ filename = strdup(filename);
|
+ filename = strdup(filename);
|
||||||
+ if ((stat(filename, &st) == 0) && S_ISREG(st.st_mode))
|
+ if ((stat(filename, &st) == 0) && S_ISREG(st.st_mode)) {
|
||||||
|
+ g_filename = filename;
|
||||||
+ return 0;
|
+ return 0;
|
||||||
|
+ }
|
||||||
|
+ free(filename);
|
||||||
|
+ return ENOENT;
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
+ /* next: scan /lib/modules/<release> */
|
+ /* next: scan /lib/modules/<release> */
|
||||||
@ -117,7 +121,7 @@ Index: busybox-1.7.2/modutils/insmod.c
|
|||||||
|
|
||||||
|
|
||||||
#if ENABLE_FEATURE_2_4_MODULES
|
#if ENABLE_FEATURE_2_4_MODULES
|
||||||
@@ -677,7 +768,6 @@
|
@@ -677,7 +772,6 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
@ -125,7 +129,7 @@ Index: busybox-1.7.2/modutils/insmod.c
|
|||||||
enum { STRVERSIONLEN = 64 };
|
enum { STRVERSIONLEN = 64 };
|
||||||
|
|
||||||
/*======================================================================*/
|
/*======================================================================*/
|
||||||
@@ -790,37 +880,6 @@
|
@@ -790,37 +884,6 @@
|
||||||
static int n_ext_modules_used;
|
static int n_ext_modules_used;
|
||||||
extern int delete_module(const char *);
|
extern int delete_module(const char *);
|
||||||
|
|
||||||
@ -163,7 +167,7 @@ Index: busybox-1.7.2/modutils/insmod.c
|
|||||||
static struct obj_file *arch_new_file(void)
|
static struct obj_file *arch_new_file(void)
|
||||||
{
|
{
|
||||||
struct arch_file *f;
|
struct arch_file *f;
|
||||||
@@ -3952,145 +4011,57 @@
|
@@ -3952,145 +4015,57 @@
|
||||||
void print_load_map(struct obj_file *f);
|
void print_load_map(struct obj_file *f);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -332,7 +336,7 @@ Index: busybox-1.7.2/modutils/insmod.c
|
|||||||
|
|
||||||
f = obj_load(fp, LOADBITS);
|
f = obj_load(fp, LOADBITS);
|
||||||
if (f == NULL)
|
if (f == NULL)
|
||||||
@@ -4120,7 +4091,7 @@
|
@@ -4120,7 +4095,7 @@
|
||||||
"\t%s was compiled for kernel version %s\n"
|
"\t%s was compiled for kernel version %s\n"
|
||||||
"\twhile this kernel is version %s",
|
"\twhile this kernel is version %s",
|
||||||
flag_force_load ? "warning: " : "",
|
flag_force_load ? "warning: " : "",
|
||||||
@ -341,7 +345,7 @@ Index: busybox-1.7.2/modutils/insmod.c
|
|||||||
if (!flag_force_load)
|
if (!flag_force_load)
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
@@ -4173,7 +4144,7 @@
|
@@ -4173,7 +4148,7 @@
|
||||||
hide_special_symbols(f);
|
hide_special_symbols(f);
|
||||||
|
|
||||||
#if ENABLE_FEATURE_INSMOD_KSYMOOPS_SYMBOLS
|
#if ENABLE_FEATURE_INSMOD_KSYMOOPS_SYMBOLS
|
||||||
@ -350,7 +354,7 @@ Index: busybox-1.7.2/modutils/insmod.c
|
|||||||
#endif /* FEATURE_INSMOD_KSYMOOPS_SYMBOLS */
|
#endif /* FEATURE_INSMOD_KSYMOOPS_SYMBOLS */
|
||||||
|
|
||||||
new_create_module_ksymtab(f);
|
new_create_module_ksymtab(f);
|
||||||
@@ -4220,30 +4191,22 @@
|
@@ -4220,30 +4195,22 @@
|
||||||
if (flag_print_load_map)
|
if (flag_print_load_map)
|
||||||
print_load_map(f);
|
print_load_map(f);
|
||||||
|
|
||||||
@ -387,7 +391,7 @@ Index: busybox-1.7.2/modutils/insmod.c
|
|||||||
/* We use error numbers in a loose translation... */
|
/* We use error numbers in a loose translation... */
|
||||||
static const char *moderror(int err)
|
static const char *moderror(int err)
|
||||||
{
|
{
|
||||||
@@ -4261,19 +4224,32 @@
|
@@ -4261,19 +4228,32 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -425,7 +429,7 @@ Index: busybox-1.7.2/modutils/insmod.c
|
|||||||
/* Rest is options */
|
/* Rest is options */
|
||||||
options = xzalloc(1);
|
options = xzalloc(1);
|
||||||
optlen = 0;
|
optlen = 0;
|
||||||
@@ -4283,36 +4259,47 @@
|
@@ -4283,36 +4263,47 @@
|
||||||
optlen += sprintf(options + optlen, (strchr(*argv,' ') ? "\"%s\" " : "%s "), *argv);
|
optlen += sprintf(options + optlen, (strchr(*argv,' ') ? "\"%s\" " : "%s "), *argv);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user