Removed MEM_INIT symilinks

Signed-off-by: Joshua Fife <jpfife17@gmail.com>
This commit is contained in:
Joshua Fife 2021-08-12 12:13:06 -06:00
parent 052c10e2f2
commit d4742b8c7f
2 changed files with 1 additions and 8 deletions

View File

@ -48,11 +48,6 @@ all: ${BOARD_BUILDDIR}/${TOP}.bit
${BOARD_BUILDDIR}:
mkdir -p ${BOARD_BUILDDIR}
#Check if design includes initialization files for memory
ifneq (${MEM_INIT},)
#if there are memory initialization files link them to the build/board_type directory
ln -s ${MEM_INIT} ${BOARD_BUILDDIR}
endif
${BOARD_BUILDDIR}/${TOP}.eblif: | ${BOARD_BUILDDIR}
cd ${BOARD_BUILDDIR} && symbiflow_synth -t ${TOP} -v ${SOURCES} -d ${BITSTREAM_DEVICE} -p ${PARTNAME} ${XDC_CMD} 2>&1 > /dev/null

View File

@ -2,9 +2,7 @@ current_dir := ${CURDIR}
TOP := top
SOURCES := ${current_dir}/baselitex_arty.v \
${current_dir}/VexRiscv_Linux.v
MEM_INIT := ${current_dir}/mem.init \
${current_dir}/mem_1.init \
${current_dir}/mem_2.init
PCF := ${current_dir}/arty.pcf
SDC := ${current_dir}/arty.sdc
XDC := ${current_dir}/arty.xdc