[syslinux:firmware] com32: Fix merge botch

syslinux-bot for Matt Fleming matt.fleming at intel.com
Fri Jan 4 09:42:02 PST 2013


Commit-ID:  7c40be9a942b9c1be14617239bc1f184f832f1b6
Gitweb:     http://www.syslinux.org/commit/7c40be9a942b9c1be14617239bc1f184f832f1b6
Author:     Matt Fleming <matt.fleming at intel.com>
AuthorDate: Wed, 2 Jan 2013 13:17:03 +0000
Committer:  Matt Fleming <matt.fleming at intel.com>
CommitDate: Wed, 2 Jan 2013 13:32:36 +0000

com32: Fix merge botch

Somehow to the printf() statement that warns about undefined symbols
when loading modules was deleted when syslinux-5.00 was merged, so
restore it.

Signed-off-by: Matt Fleming <matt.fleming at intel.com>

---
 com32/lib/sys/module/common.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/com32/lib/sys/module/common.c b/com32/lib/sys/module/common.c
index 5b0d9ee..2ecc9e5 100644
--- a/com32/lib/sys/module/common.c
+++ b/com32/lib/sys/module/common.c
@@ -368,6 +368,7 @@ int check_symbols(struct elf_module *module)
 			if (strong_count == 0 && weak_count == 0)
 			{
 				DBG_PRINT("Symbol %s is undefined\n", crt_name);
+				printf("Undef symbol FAIL: %s\n",crt_name);
 				return -1;
 			}
 		}


More information about the Syslinux-commits mailing list