BaseTools: incorrect calculation for 16M

the "0x" was missing.

Cc: Liming Gao <liming.gao@intel.com>
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Jaben Carsey <jaben.carsey@intel.com>
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
This commit is contained in:
Carsey, Jaben
2018-05-09 00:01:35 +08:00
committed by Yonghong Zhu
parent 13e3f8c033
commit 1dc287c3a3

View File

@ -1,7 +1,7 @@
## @file ## @file
# process FV image section generation # process FV image section generation
# #
# Copyright (c) 2007 - 2017, Intel Corporation. All rights reserved.<BR> # Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
# #
# This program and the accompanying materials # This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License # are licensed and made available under the terms and conditions of the BSD License
@ -83,7 +83,7 @@ class FvImageSection(FvImageSectionClassObject):
if MaxFvAlignment >= 0x400: if MaxFvAlignment >= 0x400:
if MaxFvAlignment >= 0x100000: if MaxFvAlignment >= 0x100000:
#The max alignment supported by FFS is 16M. #The max alignment supported by FFS is 16M.
if MaxFvAlignment >=1000000: if MaxFvAlignment >= 0x1000000:
self.Alignment = "16M" self.Alignment = "16M"
else: else:
self.Alignment = str(MaxFvAlignment / 0x100000) + "M" self.Alignment = str(MaxFvAlignment / 0x100000) + "M"