aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorvapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-05-26 01:48:17 +0000
committervapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-05-26 01:48:17 +0000
commitd0f373f060aa076e25fb18966c80f523e13b97d1 (patch)
tree971b38f45cc2c30f693cc6cc650f4c280d11babd /examples
parent145bc9b116a5b3a317605ca6e9c8d06228e05e0d (diff)
downloadbusybox-w32-d0f373f060aa076e25fb18966c80f523e13b97d1.tar.gz
busybox-w32-d0f373f060aa076e25fb18966c80f523e13b97d1.tar.bz2
busybox-w32-d0f373f060aa076e25fb18966c80f523e13b97d1.zip
fix spelling mistakes
git-svn-id: svn://busybox.net/trunk/busybox@15177 69ca8d6d-28ef-0310-b511-8ec308f3f277
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.