diff options
| author | Ladislav Michl <Ladislav.Michl@seznam.cz> | 2010-02-17 21:29:45 -0500 | 
|---|---|---|
| committer | Tom Rix <Tom.Rix@windriver.com> | 2010-03-07 12:36:35 -0600 | 
| commit | 5c97a1de196fdcbe9d098948ecf4fccfbea23b78 (patch) | |
| tree | b86c39bee4ab477134ef07d9ab58f3d2017b9c71 /board/voiceblue/eeprom_start.S | |
| parent | a32c1e0ecd563c65c617b0eb9080a10d286bb0b4 (diff) | |
| download | olio-uboot-2014.01-5c97a1de196fdcbe9d098948ecf4fccfbea23b78.tar.xz olio-uboot-2014.01-5c97a1de196fdcbe9d098948ecf4fccfbea23b78.zip | |
VoiceBlue: fix linker errors
linking eeprom with libgeneric.a is not really needed and causes following
error:
../../lib_generic/libgeneric.a(string.o): In function `strcmp':
/home/ladis/src/u-boot-ti/lib_generic/string.c:152: multiple definition of `strcmp'
../../examples/standalone/libstubs.a(stubs.o):include/_exports.h:24: first defined here
make[1]: *** [eeprom.srec] Error 1
Fix undefined reference to memset generated by some versions of gcc
to zero out initialized structure on the stack:
eeprom.o: In function `eeprom':
board/voiceblue/eeprom.c:152: undefined reference to `memset'
make[1]: *** [eeprom] Error 1
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
Diffstat (limited to 'board/voiceblue/eeprom_start.S')
| -rw-r--r-- | board/voiceblue/eeprom_start.S | 11 | 
1 files changed, 0 insertions, 11 deletions
| diff --git a/board/voiceblue/eeprom_start.S b/board/voiceblue/eeprom_start.S deleted file mode 100644 index 8f88de5c3..000000000 --- a/board/voiceblue/eeprom_start.S +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright (c) 2005  2N Telekomunikace - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * version 2 as published by the Free Software Foundation. - * - */ - -.globl	_start -_start:	b	eeprom |