| Summary: | Change the name of *_saver.ko to saver_*.ko | ||
|---|---|---|---|
| Product: | Base System | Reporter: | Riccardo Torrini <riccardo> |
| Component: | kern | Assignee: | freebsd-bugs (Nobody) <bugs> |
| Status: | Closed FIXED | ||
| Severity: | Affects Only Me | ||
| Priority: | Normal | ||
| Version: | 5.0-CURRENT | ||
| Hardware: | Any | ||
| OS: | Any | ||
State Changed From-To: open->closed No comment after 13 months indicates to me that this isn't likely to get any consideration without patches, and probably wouldn't be done anyway, due to the upheval it would cause. |
Please change the names of the saver modules to uniform names under /modules (now /boot/kernel, but I think final version will go to /boot/modules instead) from actual *_saver.ko to saver_*.ko as interfaces (if_*.ko), sound (snd_*.ko), splash (splash_*.ko) and netgraph (ng_*.ko). Fix: Rename during installkernel phase in the meantime, after changing line in /etc/rc.i386 from: kldstat -v | grep -q _saver || kldload ${saver}_saver to: kldstat -v | grep -q saver_ || kldload saver_${saver} How-To-Repeat: For 5.0-CURRENT: # cd /boot/kernel && ls *_* For previous versions: # cd /modules && ls *_*