소스 검색

lang/fw-build.sh: fix padding calculation

Yuri D'Elia 2 년 전
부모
커밋
0e75bc9d8e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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