]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - scripts/extract-ikconfig
Merge branch 'master' into upstream
[karo-tx-linux.git] / scripts / extract-ikconfig
index be2e579774198a01a45d22a2bae32e9439f0091e..8187e6f0dc2fe6da060f99f9980dbf90707c02cf 100755 (executable)
@@ -21,7 +21,7 @@ function dump_config {
     let start="$start + 8"
     let size="$end - $start"
 
-    head --bytes="$end" "$file" | tail --bytes="$size" | zcat
+    dd if="$file" ibs=1 skip="$start" count="$size" 2>/dev/null | zcat
 
     clean_up
     exit 0