URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [disk/] [tools/] [Makefile.run] - Rev 203
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Makefile to build a bootable disk, and either start the
# ECO32 simulator with a ROM monitor (goal: run an OS within
# the simulator) or start the serial line disk server (goal:
# run an OS on an FPGA board).
#
# NOTE: Please set SER_DEV to the serial line device on which
# the disk server should wait for commands!
#
BUILD = ..
SER_DEV = /dev/tty01
DSK_IMG = disk.img
RUN_LOG = run.log
all: $(DSK_IMG)
run-sim: $(DSK_IMG)
$(BUILD)/bin/sim -i -m 32 -c -t 2 \
-r $(BUILD)/monitor/simulator/monitor.bin \
-d $(DSK_IMG) -o $(RUN_LOG)
run-server: $(DSK_IMG)
$(BUILD)/bin/diskserv $(SER_DEV) $(DSK_IMG)
$(DSK_IMG):
$(BUILD)/bin/mkdisk $(DSK_IMG) 100M
$(BUILD)/bin/mkpart $(DSK_IMG) disk.part
$(MAKE) -C fs-EOS32 all
$(MAKE) -C fs-NetBSD all
clean:
$(MAKE) -C fs-EOS32 clean
$(MAKE) -C fs-NetBSD clean
rm -f *~ $(DSK_IMG) $(RUN_LOG)
Go to most recent revision | Compare with Previous | Blame | View Log