depmod.pl: output correct dep format according to kernel version
authorSonic Zhang <sonic.zhang@analog.com>
Fri, 9 Sep 2011 16:58:08 +0000 (18:58 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Fri, 9 Sep 2011 16:58:08 +0000 (18:58 +0200)
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@analog.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
examples/depmod.pl

index f324b12..809dc08 100755 (executable)
@@ -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') {