forked from commaai/panda
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
socketcan: usb bulk mode for rx (commaai#584)
- Loading branch information
1 parent
5778c0a
commit 0ca5ad7
Showing
3 changed files
with
67 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,24 @@ | ||
VERSION=0.0.1 | ||
obj-m+=panda.o | ||
|
||
link: | ||
sudo dkms add `pwd` | ||
all: build install | ||
|
||
build: | ||
sudo dkms build panda/$(VERSION) | ||
|
||
install: | ||
sudo dkms install panda/$(VERSION) | ||
|
||
all: build install | ||
remove: | ||
sudo dkms remove panda/$(VERSION) --all | ||
|
||
uninstall: | ||
sudo dkms uninstall panda/$(VERSION) | ||
sudo dkms remove panda/$(VERSION) --all | ||
|
||
clean: remove | ||
|
||
link: | ||
sudo dkms add `pwd` | ||
|
||
unload: | ||
sudo rmmod panda |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters