summaryrefslogtreecommitdiffstats
path: root/BaseTools/Source/C/GenFw
diff options
context:
space:
mode:
authorYonghong Zhu <yonghong.zhu@intel.com>2018-07-13 11:28:33 +0800
committerYonghong Zhu <yonghong.zhu@intel.com>2018-07-23 10:53:05 +0800
commit1794b98f72fb087f012602c4d1450762dd62906d (patch)
tree77c8f6cfae4d34d118fca5b8bbfd4ffb2ed7e8e4 /BaseTools/Source/C/GenFw
parent10944bc390f52fcd418670fe0171da1d4f3b05cc (diff)
downloadedk2-1794b98f72fb087f012602c4d1450762dd62906d.tar.gz
edk2-1794b98f72fb087f012602c4d1450762dd62906d.tar.bz2
edk2-1794b98f72fb087f012602c4d1450762dd62906d.zip
BaseTools: ElfConvert Tool update VerboseMsg to same with the comment
Fixes: https://bugzilla.tianocore.org/show_bug.cgi?id=994 Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'BaseTools/Source/C/GenFw')
-rw-r--r--BaseTools/Source/C/GenFw/Elf32Convert.c2
-rw-r--r--BaseTools/Source/C/GenFw/Elf64Convert.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/BaseTools/Source/C/GenFw/Elf32Convert.c b/BaseTools/Source/C/GenFw/Elf32Convert.c
index af5ff9396e..3d7de6d5c1 100644
--- a/BaseTools/Source/C/GenFw/Elf32Convert.c
+++ b/BaseTools/Source/C/GenFw/Elf32Convert.c
@@ -690,7 +690,7 @@ WriteSections32 (
//
// Ignore for unkown section type.
//
- VerboseMsg ("%s unknown section type %x. We directly copy this section into Coff file", mInImageName, (unsigned)Shdr->sh_type);
+ VerboseMsg ("%s unknown section type %x. We ignore this unknown section type.", mInImageName, (unsigned)Shdr->sh_type);
break;
}
}
diff --git a/BaseTools/Source/C/GenFw/Elf64Convert.c b/BaseTools/Source/C/GenFw/Elf64Convert.c
index 15da89c755..469979c3b1 100644
--- a/BaseTools/Source/C/GenFw/Elf64Convert.c
+++ b/BaseTools/Source/C/GenFw/Elf64Convert.c
@@ -824,7 +824,7 @@ WriteSections64 (
//
// Ignore for unkown section type.
//
- VerboseMsg ("%s unknown section type %x. We directly copy this section into Coff file", mInImageName, (unsigned)Shdr->sh_type);
+ VerboseMsg ("%s unknown section type %x. We ignore this unknown section type.", mInImageName, (unsigned)Shdr->sh_type);
break;
}
}