Here is a small patch needed to make modprobe (big) work with
  Ubuntu's 2.6.27-11 kernel.

      Loïc
Index: modutils/modutils.c
===================================================================
--- modutils/modutils.c	(revision 25642)
+++ modutils/modutils.c	(working copy)
@@ -123,7 +123,7 @@
 	/* Use the 2.6 way */
 	image = xmalloc_open_zipped_read_close(filename, &len);
 	if (image) {
-		if (init_module(image, len, options) != 0)
+		if (init_module(image, len, options ? options : "") != 0)
 			rc = errno;
 		else
 			rc = 0;
_______________________________________________
busybox mailing list
[email protected]
http://lists.busybox.net/mailman/listinfo/busybox

Reply via email to