mirror of
https://git.busybox.net/busybox
synced 2026-01-31 16:43:21 +00:00
Christian Ostheimer writes:
Hello, function build_dep in modprobe.c assumes that dependencies of one module have not more than 255 chars; that is not sufficient in kernel 2.6.7 (alsa sound modules). - Below is a diff that solves the problem for me. With regards, Christian Ostheimer
This commit is contained in:
parent
9940e081c9
commit
beaef16315
1 changed files with 1 additions and 1 deletions
|
|
@ -115,7 +115,7 @@ static struct dep_t *build_dep ( void )
|
|||
struct utsname un;
|
||||
struct dep_t *first = 0;
|
||||
struct dep_t *current = 0;
|
||||
char buffer[256];
|
||||
char buffer[2048];
|
||||
char *filename = buffer;
|
||||
int continuation_line = 0;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue