aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-05-26 01:48:17 +0000
committerMike Frysinger <vapier@gentoo.org>2006-05-26 01:48:17 +0000
commitfa6c4844b2fef07def6b739c8f28ec50c2612208 (patch)
tree971b38f45cc2c30f693cc6cc650f4c280d11babd /examples
parent9c03cb920acdb19595e4a670cf4081b0631b7b52 (diff)
downloadbusybox-fa6c4844b2fef07def6b739c8f28ec50c2612208.tar.gz
fix spelling mistakes
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`;
warn "\nMODULE = $tgtname\n" if $verbose;
build_ref_tables($tgtname, \@output, $exp, $dep);
-# resolve the dependancies for each module
-# reduce dependancies: remove unresolvable and resolved from vmlinux/System.map
+# resolve the dependencies for each module
+# reduce dependencies: remove unresolvable and resolved from vmlinux/System.map
# remove duplicates
foreach my $module (keys %$dep) {
warn "reducing module: $module\n" if $verbose;
@@ -225,7 +225,7 @@ Example:
=head1 DESCRIPTION
The purpose of this script is to automagically generate a list of of kernel
-module dependancies. This script produces dependancy lists that should be
+module dependencies. This script produces dependency lists that should be
identical to the depmod program from the modutils package. Unlike the depmod
binary, however, depmod.pl is designed to be run on your host system, not
on your target system.