merge another batch of code from michael buesch's wireless-dev tree, fix up extpci...
[openwrt.git] / target / linux / rb532-2.6 / base-files / sbin / cf2nand
index f8576be..3f3352f 100755 (executable)
@@ -6,13 +6,8 @@ copy_kernel() {
        local output="$2"
        local cmdline="$3"
        size="$(echo -n "$cmdline" | wc -c)"
        local output="$2"
        local cmdline="$3"
        size="$(echo -n "$cmdline" | wc -c)"
-       dd if="$input" bs=3M count=1 | (
-               dd bs=4112 count=1
-               echo -n "$cmdline"
-               dd if=/dev/zero bs="$((512 - $size))" count=1
-               dd bs=512 count=1 of=/dev/null
-               cat
-       ) > "$output"
+       dd if="$input" bs=3M count=1 > "$output"
+       /sbin/patch-cmdline "$output" "$cmdline"
 }
 
 fstype="$(mount | grep ' / ' | awk '{print $5}')"
 }
 
 fstype="$(mount | grep ' / ' | awk '{print $5}')"
This page took 0.020851 seconds and 4 git commands to generate.