19 lines
616 B
Plaintext
19 lines
616 B
Plaintext
|
SRC_URI_append = " file://platform-top.h"
|
||
|
SRC_URI += "file://bsp.cfg"
|
||
|
|
||
|
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
|
||
|
|
||
|
do_configure_append () {
|
||
|
if [ "${U_BOOT_AUTO_CONFIG}" = "1" ]; then
|
||
|
install ${WORKDIR}/platform-auto.h ${S}/include/configs/
|
||
|
install ${WORKDIR}/platform-top.h ${S}/include/configs/
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
do_configure_append_microblaze () {
|
||
|
if [ "${U_BOOT_AUTO_CONFIG}" = "1" ]; then
|
||
|
install -d ${B}/source/board/xilinx/microblaze-generic/
|
||
|
install ${WORKDIR}/config.mk ${B}/source/board/xilinx/microblaze-generic/
|
||
|
fi
|
||
|
}
|