aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/depmod.pl6
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`;
116warn "\nMODULE = $tgtname\n" if $verbose; 116warn "\nMODULE = $tgtname\n" if $verbose;
117build_ref_tables($tgtname, \@output, $exp, $dep); 117build_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
122foreach my $module (keys %$dep) { 122foreach 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
227The purpose of this script is to automagically generate a list of of kernel 227The purpose of this script is to automagically generate a list of of kernel
228module dependancies. This script produces dependancy lists that should be 228module dependencies. This script produces dependency lists that should be
229identical to the depmod program from the modutils package. Unlike the depmod 229identical to the depmod program from the modutils package. Unlike the depmod
230binary, however, depmod.pl is designed to be run on your host system, not 230binary, however, depmod.pl is designed to be run on your host system, not
231on your target system. 231on your target system.