| Anonymous | Login | Signup for a new account | 11-10-2008 11:05 PST |
| Main | My View | View Issues | Change Log | Docs |
| Viewing Issue Simple Details [ Jump to Notes ] | [ View Advanced ] [ Issue History ] [ Print ] | ||||||||
| ID | Category | Severity | Reproducibility | Date Submitted | Last Update | ||||
| 0001007 | [BusyBox] Kernel Module Support | minor | always | 08-24-06 13:14 | 11-21-06 06:13 | ||||
| Reporter | jhks | View Status | public | ||||||
| Assigned To | integrator | ||||||||
| Priority | normal | Resolution | fixed | ||||||
| Status | closed | Product Version | 1.1.x | ||||||
| Summary | 0001007: Module kernel version length limited to 32 characters | ||||||||
| Description |
When loading a module with a kernel version string greater than 32 characters, the version check will fail. The following patch increases the limit to 64 characters: --- busybox-1.1.3/modutils/insmod.c 2006-06-19 17:14:19.000000000 -0400 +++ busybox-1.1.3/modutils/insmod.c 2006-08-24 10:59:06.000000000 -0400 @@ -699,7 +699,7 @@ #define _PATH_MODULES "/lib/modules" -enum { STRVERSIONLEN = 32 }; +enum { STRVERSIONLEN = 64 }; /*======================================================================*/ |
||||||||
| Additional Information | |||||||||
| Attached Files | |||||||||
|
|
|||||||||
| Copyright © 2000 - 2006 Mantis Group |