diff --git a/components/partition_table/Makefile.projbuild b/components/partition_table/Makefile.projbuild index db60ee738..71e26868b 100644 --- a/components/partition_table/Makefile.projbuild +++ b/components/partition_table/Makefile.projbuild @@ -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 diff --git a/components/partition_table/parttool.py b/components/partition_table/parttool.py index 145fb8d3c..83c5ce9d9 100755 --- a/components/partition_table/parttool.py +++ b/components/partition_table/parttool.py @@ -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))