X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/raggedstone/blobdiff_plain/48eafd87cee5102f0ab7db730c049276c7c8a7bb..da252321c44334af25d637d17c6dfdfcd113f07b:/dhwk/Makefile diff --git a/dhwk/Makefile b/dhwk/Makefile index 5f836c9..b96c0bb 100644 --- a/dhwk/Makefile +++ b/dhwk/Makefile @@ -1,5 +1,5 @@ PROJECT := dhwk -CLEANFILES := dhwk_fifo_* +CLEANFILES := dhwk_fifo* fifo_generator_* param.opt dhwk_all: ip all @@ -15,4 +15,10 @@ dhwk_fifo.ngc: fifo.xco coregen -b $< -rmdir -p tmp/_cg +test: + grep -q dhwk /proc/modules || (cd driver; ./build; sudo insmod dhwk.ko) + dd if=/dev/urandom of=/tmp/in bs=1024 count=1024 + (dd if=/dev/dhwk of=/tmp/out bs=1024 count=1024; md5sum /tmp/in /tmp/out)& + dd if=/tmp/in of=/dev/dhwk bs=1024 count=1024 + include ../common/Makefile.common