Commit 323bfa8f436dc3bc57187c9b1488bc3146ff1522
1 parent
37837828d8
Exists in
master
and in
55 other branches
Remove BOARDLIBS usage completely
Signed-off-by: Stefan Roese <sr@denx.de>
Showing 9 changed files with 5 additions and 22 deletions Side-by-side Diff
Makefile
... | ... | @@ -197,6 +197,9 @@ |
197 | 197 | ifdef SOC |
198 | 198 | LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a |
199 | 199 | endif |
200 | +ifeq ($(CPU),ixp) | |
201 | +LIBS += cpu/ixp/npe/libnpe.a | |
202 | +endif | |
200 | 203 | LIBS += lib_$(ARCH)/lib$(ARCH).a |
201 | 204 | LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \ |
202 | 205 | fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a |
... | ... | @@ -219,7 +222,6 @@ |
219 | 222 | LIBS += $(shell if [ -d post/board/$(BOARDDIR) ]; then echo \ |
220 | 223 | "post/board/$(BOARDDIR)/libpost$(BOARD).a"; fi) |
221 | 224 | LIBS += common/libcommon.a |
222 | -LIBS += $(BOARDLIBS) | |
223 | 225 | |
224 | 226 | LIBS := $(addprefix $(obj),$(LIBS)) |
225 | 227 | .PHONY : $(LIBS) |
board/ixdp425/config.mk
board/mpc8360emds/config.mk
board/nc650/config.mk
board/prodrive/pdnb3/config.mk
cpu/ixp/npe/Makefile
doc/README.nand
... | ... | @@ -192,12 +192,7 @@ |
192 | 192 | to only board-specific files and - unfortunately - to the DoC code |
193 | 193 | (see below). A new configuration variable has been introduced: |
194 | 194 | CFG_NAND_LEGACY, which has to be defined in the board config file if |
195 | -that board uses legacy code. If CFG_NAND_LEGACY is defined, the board | |
196 | -specific config.mk file should also have "BOARDLIBS = | |
197 | -drivers/nand_legacy/libnand_legacy.a". For boards using the new NAND | |
198 | -approach (PPChameleon and netstar at the moment) no variable is | |
199 | -necessary, but the config.mk should have "BOARDLIBS = | |
200 | -drivers/nand/libnand.a". | |
195 | +that board uses legacy code. | |
201 | 196 | |
202 | 197 | The necessary changes have been made to all affected boards, and no |
203 | 198 | build breakage has been introduced, except for NETTA and NETTA_ISDN |
include/configs/delta.h
include/configs/zylonite.h