diff options
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/depmod.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/depmod.pl b/examples/depmod.pl index 3211c8a64..0e66ee3eb 100755 --- a/examples/depmod.pl +++ b/examples/depmod.pl | |||
@@ -116,8 +116,8 @@ my @output = $kernelsyms ? `cat $kernelsyms` : `nm $kernel`; | |||
116 | warn "\nMODULE = $tgtname\n" if $verbose; | 116 | warn "\nMODULE = $tgtname\n" if $verbose; |
117 | build_ref_tables($tgtname, \@output, $exp, $dep); | 117 | build_ref_tables($tgtname, \@output, $exp, $dep); |
118 | 118 | ||
119 | # resolve the dependancies for each module | 119 | # resolve the dependencies for each module |
120 | # reduce dependancies: remove unresolvable and resolved from vmlinux/System.map | 120 | # reduce dependencies: remove unresolvable and resolved from vmlinux/System.map |
121 | # remove duplicates | 121 | # remove duplicates |
122 | foreach my $module (keys %$dep) { | 122 | foreach my $module (keys %$dep) { |
123 | warn "reducing module: $module\n" if $verbose; | 123 | warn "reducing module: $module\n" if $verbose; |
@@ -225,7 +225,7 @@ Example: | |||
225 | =head1 DESCRIPTION | 225 | =head1 DESCRIPTION |
226 | 226 | ||
227 | The purpose of this script is to automagically generate a list of of kernel | 227 | The purpose of this script is to automagically generate a list of of kernel |
228 | module dependancies. This script produces dependancy lists that should be | 228 | module dependencies. This script produces dependency lists that should be |
229 | identical to the depmod program from the modutils package. Unlike the depmod | 229 | identical to the depmod program from the modutils package. Unlike the depmod |
230 | binary, however, depmod.pl is designed to be run on your host system, not | 230 | binary, however, depmod.pl is designed to be run on your host system, not |
231 | on your target system. | 231 | on your target system. |