mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-04 00:47:43 +00:00
busybox: add 1.23.1 patch to fix modinfo
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
4b41073b65
commit
f583f2bf8f
17
package/busybox/0005-modinfo.patch
Normal file
17
package/busybox/0005-modinfo.patch
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
Fix broken modinfo.
|
||||||
|
|
||||||
|
From upstream: http://busybox.net/downloads/fixes-1.23.1/busybox-1.23.1-modinfo.patch
|
||||||
|
|
||||||
|
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
|
||||||
|
|
||||||
|
--- busybox-1.23.1/modutils/modinfo.c
|
||||||
|
+++ busybox-1.23.1-modinfo/modutils/modinfo.c
|
||||||
|
@@ -154,7 +154,7 @@ int modinfo_main(int argc UNUSED_PARAM,
|
||||||
|
if (colon == NULL)
|
||||||
|
continue;
|
||||||
|
*colon = '\0';
|
||||||
|
- filename2modname(tokens[0], name);
|
||||||
|
+ filename2modname(bb_basename(tokens[0]), name);
|
||||||
|
for (i = 0; argv[i]; i++) {
|
||||||
|
if (fnmatch(argv[i], name, 0) == 0) {
|
||||||
|
modinfo(tokens[0], uts.release, &env);
|
Loading…
x
Reference in New Issue
Block a user