diff options
author | Kenneth Johansson <kenneth@southpole.se> | 2008-05-29 16:32:33 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2008-06-03 20:36:18 +0200 |
commit | 2918eb9d42bc705fcbd18c9fcc39d15ff2843c65 (patch) | |
tree | 13b8ed3bffaf76f007e36eb810fef06802290464 /nand_spl/board/amcc/kilauea | |
parent | 3c1de1a6d36be9eee284a6c596a86e94f19cc5b2 (diff) |
Remove shell variable UNDEF_SYM.
UNDEF_SYM is a shell variable in the main Makefile used to force the
linker to add all u-boot commands to the final image. It has no use here.
Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
Diffstat (limited to 'nand_spl/board/amcc/kilauea')
-rw-r--r-- | nand_spl/board/amcc/kilauea/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nand_spl/board/amcc/kilauea/Makefile b/nand_spl/board/amcc/kilauea/Makefile index a0293ee2b5..0667fc1a54 100644 --- a/nand_spl/board/amcc/kilauea/Makefile +++ b/nand_spl/board/amcc/kilauea/Makefile @@ -50,7 +50,7 @@ $(nandobj)u-boot-spl.bin: $(nandobj)u-boot-spl $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ $(nandobj)u-boot-spl: $(OBJS) - cd $(LNDIR) && $(LD) $(LDFLAGS) $$UNDEF_SYM $(__OBJS) \ + cd $(LNDIR) && $(LD) $(LDFLAGS) $(__OBJS) \ -Map $(nandobj)u-boot-spl.map \ -o $(nandobj)u-boot-spl |