BusyBox Bug and Patch Tracking
BusyBox
  

Viewing Issue Simple Details Jump to Notes ] View Advanced ] Issue History ] Print ]
ID Category Severity Reproducibility Date Submitted Last Update
0000655 [BusyBox] Kernel Module Support minor always 01-23-06 02:07 06-26-06 14:00
Reporter bachmark View Status public  
Assigned To BusyBox
Priority normal Resolution fixed  
Status closed   Product Version svn
Summary 0000655: Kernel26 modprobe '-' in module names
Description Wrong error message "module allready loaded" if '-' is in the name of a used module.
Additional Information The Patch to handle '-' in module names is in wrong direction.

In already_loaded is implementet
for( p = buffer; ENABLE_FEATURE_2_6_MODULES && *p; p++ ) {
 *p = ((*p)=='-')?'_':*p;
}

Must be
for( p = buffer; ENABLE_FEATURE_2_6_MODULES && *p; p++ ) {
 *p = ((*p)=='_')?'-':*p;
}
Attached Files

- Relationships
has duplicate 0000836closed BusyBox on-demand module loading with 2.6.X and modprobe with '-' in module names 

- Notes
(0001450)
integrator
06-26-06 12:58

Reminder sent to: bachmark

"bachmark",

Could you please check svn head to confirm this is fixed?

I want this bug closed before the 1.2.0 release.
 
(0001454)
bernhardf
06-26-06 14:00

Closed by reference of Yann E. MORIN via http://busybox.net/lists/busybox/2006-June/022765.html [^]

Please let us know if you still encounter problems.
 

- Issue History
Date Modified Username Field Change
01-23-06 02:07 bachmark New Issue
01-23-06 02:07 bachmark Status new => assigned
01-23-06 02:07 bachmark Assigned To  => BusyBox
06-11-06 10:15 bernhardf Relationship added has duplicate 0000836
06-26-06 12:58 integrator Note Added: 0001450
06-26-06 12:58 integrator Issue Monitored: integrator
06-26-06 14:00 bernhardf Status assigned => closed
06-26-06 14:00 bernhardf Note Added: 0001454
06-26-06 14:00 bernhardf Resolution open => fixed
06-26-06 14:00 bernhardf Fixed in Version  => svn


Copyright © 2000 - 2006 Mantis Group
Powered by Mantis Bugtracker