--- ../temp/busybox-1.00/examples/depmod.pl Mon Mar 15 08:28:33 2004 +++ busybox-1.00/examples/depmod.pl Thu Mar 10 16:12:41 2005 @@ -82,7 +82,7 @@ warn "MODULE = $tgtname\n" if $verbose; # get a list of symbols - @output=`nm $obj`; + @output=`$ENV{CROSS_COMPILE}nm $obj`; $ksymtab=grep m/ __ksymtab/, @output; # gather the exported symbols @@ -144,6 +144,9 @@ print OFILE join(" \\\n\t",@sorted); print OFILE "\n\n"; } + `touch $basedir/modules.usbmap`; + `touch $basedir/modules.pcimap`; + `touch $basedir/modules.ieee1394map`; }