Browse Source

lang/fw-build.sh: fix padding calculation

Yuri D'Elia 2 years ago
parent
commit
0e75bc9d8e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lang/fw-build.sh

+ 1 - 1
lang/fw-build.sh

@@ -201,7 +201,7 @@ if [ -e lang_nl.bin ]; then cat lang_nl.bin >> lang.bin; fi
 # Check that the language data doesn't exceed the reserved XFLASH space
 echo " checking language data size:"
 lang_size=$(wc -c lang.bin | cut -f1 -d' ')
-lang_size_pad=$(($lang_size / 4096 * 4096 + 4096))
+lang_size_pad=$(( ($lang_size+4096-1) / 4096 * 4096 ))
 
 # TODO: hard-coded! get value by preprocessing LANG_SIZE from xflash_layout.h!
 lang_reserved=249856