diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2006-03-24 06:15:56 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-24 10:33:21 -0500 |
commit | 008accbbae6b2f18c2039d563f28d46ff4388d36 (patch) | |
tree | af4ce5fd57dfa3b8a5a5f0b0654d3f45a4c51f08 /scripts | |
parent | ff45e99dcd31e1810a9892ce28190bff262e4e12 (diff) |
[PATCH] extract-ikconfig: don't use --long-options
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/extract-ikconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/extract-ikconfig b/scripts/extract-ikconfig index be2e57977419..8187e6f0dc2f 100755 --- a/scripts/extract-ikconfig +++ b/scripts/extract-ikconfig | |||
@@ -21,7 +21,7 @@ function dump_config { | |||
21 | let start="$start + 8" | 21 | let start="$start + 8" |
22 | let size="$end - $start" | 22 | let size="$end - $start" |
23 | 23 | ||
24 | head --bytes="$end" "$file" | tail --bytes="$size" | zcat | 24 | dd if="$file" ibs=1 skip="$start" count="$size" 2>/dev/null | zcat |
25 | 25 | ||
26 | clean_up | 26 | clean_up |
27 | exit 0 | 27 | exit 0 |