Remove trailing spaces from parttool.py output

This commit is contained in:
Deomid Ryabkov 2018-09-18 15:10:03 +03:00
parent 3276a1316f
commit d40bfd21dc
2 changed files with 3 additions and 3 deletions

View File

@ -65,8 +65,8 @@ all_binaries: $(PARTITION_TABLE_BIN) partition_table_get_info
partition_table_get_info: $(PARTITION_TABLE_BIN)
$(eval PHY_DATA_OFFSET:=$(shell $(GET_PART_INFO) --type data --subtype phy --offset $(PARTITION_TABLE_BIN)))
$(eval APP_OFFSET:=$(shell $(GET_PART_INFO) --default-boot-partition --offset $(PARTITION_TABLE_BIN)))
$(eval OTA_DATA_SIZE := $(shell $(GET_PART_INFO) --type data --subtype ota --size $(PARTITION_TABLE_BIN) || echo 0) )
$(eval OTA_DATA_OFFSET := $(shell $(GET_PART_INFO) --type data --subtype ota --offset $(PARTITION_TABLE_BIN)) )
$(eval OTA_DATA_SIZE := $(shell $(GET_PART_INFO) --type data --subtype ota --size $(PARTITION_TABLE_BIN) || echo 0))
$(eval OTA_DATA_OFFSET := $(shell $(GET_PART_INFO) --type data --subtype ota --offset $(PARTITION_TABLE_BIN)))
export APP_OFFSET
export PHY_DATA_OFFSET

View File

@ -107,7 +107,7 @@ def main():
return 1 # nothing found
if args.offset:
print('0x%x ' % (found_partition.offset))
print('0x%x' % (found_partition.offset))
if args.size:
print('0x%x' % (found_partition.size))