diff options
author | Martijn Zilverschoon <martijn@friedzombie.com> | 2014-11-30 16:41:48 +0100 |
---|---|---|
committer | Martijn Zilverschoon <martijn@friedzombie.com> | 2014-11-30 18:10:15 +0100 |
commit | 1f9485a89444fa2d8274e8bff06727ac045807db (patch) | |
tree | 6fd6cdbd68f5d518b04fb70a827beac7f8b8f9a0 /libs/dmx_usb_module/patches | |
parent | 34b96ab26e0a027d19e78f3a362c625288110ad4 (diff) |
dmx_usb_module: new package added
dmx_usb_module is a kernel module that is needed to controll FTDI485 based DMX modules.
Signed-off-by: Martijn Zilverschoon <martijn@friedzombie.com>
Diffstat (limited to 'libs/dmx_usb_module/patches')
-rw-r--r-- | libs/dmx_usb_module/patches/001-dmx_usb_Makefile.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libs/dmx_usb_module/patches/001-dmx_usb_Makefile.patch b/libs/dmx_usb_module/patches/001-dmx_usb_Makefile.patch new file mode 100644 index 000000000..2a03d9484 --- /dev/null +++ b/libs/dmx_usb_module/patches/001-dmx_usb_Makefile.patch @@ -0,0 +1,13 @@ +--- a/Makefile ++++ b/Makefile +@@ -12,8 +12,7 @@ KDIR := /lib/modules/$(shell uname -r)/build + PWD := $(shell pwd) + + default: +- $(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules +- gcc -O2 -pipe -Wall dmx_usb_test.c -o dmx_usb_test ++ $(MAKE) -C $(KERNELPATH) SUBDIRS=$(PWD) modules + + endif + + |