include $(INCLUDE_DIR)/kernel.mk
define cc
- $(HOSTCC) $(HOST_CFLAGS) -include endian.h $(HOST_LDFLAGS) -o $(HOST_BUILD_DIR)/bin/$(firstword $(1)) $(foreach src,$(1),src/$(src).c) $(2)
+ $(HOSTCC) \
+ $(HOST_CFLAGS) \
+ -Wno-unused-parameter \
+ -include endian.h $(HOST_LDFLAGS) \
+ -o $(HOST_BUILD_DIR)/bin/$(firstword $(1)) \
+ $(foreach src,$(1),src/$(src).c) \
+ $(2)
endef
define Host/Compile
$(call cc,mkzynfw)
$(call cc,lzma2eva,-lz)
$(call cc,mkcasfw)
- $(call cc,mkfwimage,-lz -Wall)
+ $(call cc,mkfwimage,-lz -Wall -Werror -Wextra)
$(call cc,mkfwimage2,-lz)
$(call cc,imagetag imagetag_cmdline cyg_crc32)
$(call cc,add_header)
static void print_image_info(const image_info_t* im)
{
- int i = 0;
+ unsigned int i = 0;
+
INFO("Firmware version: '%s'\n"
"Output file: '%s'\n"
"Part count: %u\n",
}
}
-
-
static u_int32_t filelength(const char* file)
{
FILE *p;
*/
static int validate_image_layout(image_info_t* im)
{
- int i;
+ unsigned int i;
if (im->part_count == 0 || im->part_count > MAX_SECTIONS)
{
char* ptr;
u_int32_t mem_size;
FILE* f;
- int i;
+ unsigned int i;
// build in-memory buffer
mem_size = sizeof(header_t);