From dca61a4c7f37d698424716b7f2e8935d9765f302 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Wed, 11 Jul 2018 15:15:07 +0200 Subject: [PATCH] build: don't use capital letters as arguments to dd (closes #271) --- SConscript.firmware | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConscript.firmware b/SConscript.firmware index 5175dac851..189c6090d3 100644 --- a/SConscript.firmware +++ b/SConscript.firmware @@ -431,5 +431,5 @@ program_bin = env.Command( '$CAT ${TARGET}.p1 ${TARGET}.p2 > $TARGET', '$BINCTL $TARGET -h', '$BINCTL $TARGET -s 1:2 `$KEYCTL sign firmware $TARGET 4747474747474747474747474747474747474747474747474747474747474747 4848484848484848484848484848484848484848484848484848484848484848`' if ARGUMENTS.get('PRODUCTION', '0') == '0' else '', - '$DD if=$TARGET of=${TARGET}.p1 skip=0 bs=128K count=6', + '$DD if=$TARGET of=${TARGET}.p1 skip=0 bs=128k count=6', ], )