Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/6c2f4f388e8181655ea8b69343ea00b68aa6e8d0 You should set ROOT_URL correctly, otherwise the web may not work correctly.

[ppc4xx] Individual handling of sdram.c for bamboo_nand build

Bamboo has a file sdram.c which needs special treatment when building in
separate directory. It has to be linked to build directory otherwise it is
not seen.

Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
master
Grzegorz Bernacki 18 years ago
parent 978aec12fa
commit 6c2f4f388e
  1. 6
      nand_spl/board/amcc/bamboo/Makefile

@ -84,6 +84,12 @@ $(obj)nand_ecc.c:
@rm -f $(obj)nand_ecc.c
ln -s $(SRCTREE)/drivers/nand/nand_ecc.c $(obj)nand_ecc.c
ifneq ($(OBJTREE), $(SRCTREE))
$(obj)sdram.c:
@rm -f $(obj)sdram.c
ln -s $(SRCTREE)/nand_spl/board/$(BOARDDIR)/sdram.c $(obj)sdram.c
endif
#########################################################################
$(obj)%.o: $(obj)%.S

Loading…
Cancel
Save