Samsung / TizenRT

TizenRT is a lightweight RTOS-based platform to support low-end IoT devices
Apache License 2.0
562 stars 561 forks source link

os/tools/check_package_header.py: Fix non-signing build error #6204

Closed jylee9613 closed 1 month ago

jylee9613 commented 1 month ago

SIGNING_SIZE is the header size of signing user binary. But if CONFIG_USER_SIGN_PREPEND_SIZE is not set, SIGNING_SIZE value is 'None'. so it causes build error when directly convert SIGNING_SIZE type from string to int. This commit adds the process when the SIGNING_SIZE is none.