[git commit] depmod.pl: output correct dep format according to kernel version

Denys Vlasenko vda.linux at googlemail.com
Fri Sep 9 16:58:08 UTC 2011


commit: http://git.busybox.net/busybox/commit/?id=880eec8f33843d00142d2639dfe7d807dc125cf9
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

All kernel version except for 2.4 has the same dep output format.
(Possibly related to era of kernels 3.0+)

Signed-off-by: Sonic Zhang <sonic.zhang at analog.com>
Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 examples/depmod.pl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/examples/depmod.pl b/examples/depmod.pl
index f324b12..809dc08 100755
--- a/examples/depmod.pl
+++ b/examples/depmod.pl
@@ -199,7 +199,7 @@ if ($stdout == 0) {
     open(STDOUT, ">$basedir/modules.dep")
                              or die "cannot open $basedir/modules.dep: $!";
 }
-my $kseries = $basedir =~ m,/2\.6\.[^/]*, ? '2.6' : '2.4';
+my $kseries = $basedir =~ m,/2\.4\.[^/]*, ? '2.4' : 'others';
 
 foreach my $module ( keys %$mod ) {
     if($kseries eq '2.4') {
-- 
1.7.3.4



More information about the busybox-cvs mailing list