diff options
author | Carsey, Jaben </o=Intel/ou=Americas01/cn=Workers/cn=Carsey, Jaben> | 2018-05-09 00:01:35 +0800 |
---|---|---|
committer | Yonghong Zhu <yonghong.zhu@intel.com> | 2018-05-10 08:33:20 +0800 |
commit | 1dc287c3a3f1f090ef6b8ff80f7b3b3725071471 (patch) | |
tree | 7a7a464d4a9ca249d9cdee1905adc4c8ba91f090 /BaseTools/Source/Python/GenFds | |
parent | 13e3f8c03339ebc8cd25c454fca1abde098fe7ed (diff) | |
download | edk2-1dc287c3a3f1f090ef6b8ff80f7b3b3725071471.tar.gz edk2-1dc287c3a3f1f090ef6b8ff80f7b3b3725071471.tar.bz2 edk2-1dc287c3a3f1f090ef6b8ff80f7b3b3725071471.zip |
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>
Diffstat (limited to 'BaseTools/Source/Python/GenFds')
-rw-r--r-- | BaseTools/Source/Python/GenFds/FvImageSection.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BaseTools/Source/Python/GenFds/FvImageSection.py b/BaseTools/Source/Python/GenFds/FvImageSection.py index eb84b44bbe..57ecea0377 100644 --- a/BaseTools/Source/Python/GenFds/FvImageSection.py +++ b/BaseTools/Source/Python/GenFds/FvImageSection.py @@ -1,7 +1,7 @@ ## @file
# 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
# 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 >= 0x100000:
#The max alignment supported by FFS is 16M.
- if MaxFvAlignment >=1000000:
+ if MaxFvAlignment >= 0x1000000:
self.Alignment = "16M"
else:
self.Alignment = str(MaxFvAlignment / 0x100000) + "M"
|