diff options
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/Makefile | 4 | ||||
| -rw-r--r-- | examples/stubs.c | 2 | 
2 files changed, 5 insertions, 1 deletions
| diff --git a/examples/Makefile b/examples/Makefile index 423a79b2d..e9b4974be 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -86,10 +86,14 @@ BIN	+= sched.bin  endif  ifeq ($(ARCH),blackfin) +ifneq ($(BOARD),bf537-stamp) +ifneq ($(BOARD),bf537-pnav)  ELF	+= smc91111_eeprom  SREC	+= smc91111_eeprom.srec  BIN 	+= smc91111_eeprom.bin  endif +endif +endif  # The following example is pretty 8xx specific...  ifeq ($(CPU),mpc8xx) diff --git a/examples/stubs.c b/examples/stubs.c index ffd314e6b..26df6e06a 100644 --- a/examples/stubs.c +++ b/examples/stubs.c @@ -132,7 +132,7 @@ gd_t *global_data;   */  #define EXPORT_FUNC(x)			\  	asm volatile (			\ -"       .globl " #x "\n"		\ +"       .globl _" #x "\n_"		\  #x ":\n"				\  "	P0 = [P5 + %0]\n"		\  "	P0 = [P0 + %1]\n"		\ |