[Bug 135] insmod cannot load modules under mipsle (AR7)

bugzilla at busybox.net bugzilla at busybox.net
Tue Mar 3 18:02:47 UTC 2009


https://bugs.busybox.net/show_bug.cgi?id=135





--- Comment #7 from Denys Vlasenko <vda.linux at googlemail.com>  2009-03-03 18:02:47 UTC ---
insmod requires full path now because this is the compatible behavior.

This is how "standard" insmod does this:

# strace insmod wazoo
execve("/sbin/insmod", ["insmod", "wazoo"], [/* 54 vars */]) = 0
...
munmap(0x7f71f375d000, 155067)          = 0
brk(0)                                  = 0x1407000
brk(0x1428000)                          = 0x1428000
open("wazoo", O_RDONLY)                 = -1 ENOENT (No such file or directory)
write(2, "insmod: can\'t read \'wazoo\': No s"..., 54insmod: can't read
'wazoo': No such file or directory
) = 54
exit_group(1)                           = ?

See? it just tries to open given file by name.


-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


More information about the busybox-cvs mailing list