Skip to content

Commit cf22346

Browse files
committed
Further improvements/fixes to setup-env.sh + friends
1 parent dbef134 commit cf22346

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ makestuff
1111
migen
1212
misoc
1313
*.pyc
14-
14+
*.pnm

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ endif
1717
help:
1818
@echo "Targets avaliable:"
1919
@echo " make gateware"
20-
@echo " make load_gateware"
21-
@echo " make load_firmware (OR) make load_firmware_alt"
20+
@echo " make load-gateware"
21+
@echo " make load-lm32-firmware"
2222
@echo " make clean"
2323
@echo ""
2424
@echo "Environment:"

firmware/lm32/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# XXX remove this
2-
MSCDIR=../../misoc
2+
MSCDIR=../../build/misoc
33
include $(MSCDIR)/software/common.mak
44

55
OBJECTS=isr.o processor.o dvisampler.o edid.o pll.o ci.o config.o encoder.o main.o

scripts/setup-env.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ if [ ! -z $MISOC_ENV ]; then
2020
exit 1
2121
fi
2222

23-
export LD_LIBRARY_PATH=$TOP_DIR/../makestuff/libs/libfpgalink/lin.x64/rel:$LD_LIBRARY_PATH
24-
export PYTHONPATH=$TOP_DIR/migen:$TOP_DIR/misoc:$TOP_DIR/../makestuff/libs/libfpgalink/examples/python/:$PYTHONPATH
23+
export LD_LIBRARY_PATH=$TOP_DIR/makestuff/libs/libfpgalink/lin.x64/rel:$LD_LIBRARY_PATH
24+
export PYTHONPATH=$TOP_DIR/migen:$TOP_DIR/misoc:$TOP_DIR/makestuff/libs/libfpgalink/examples/python/:$PYTHONPATH
2525
export PATH=$TOP_DIR/gnu/output/bin:/opt/Xilinx/14.7/ISE_DS/ISE/bin/lin64/:$PATH
2626

2727
alias python=python3

0 commit comments

Comments
 (0)