-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installing under Debian and derivatives: suggested patch #41
Comments
That's smart, will test it out on both Debian and non-Debian systems to make sure it works smoothly. Thanks |
Or alternatively, place a "-" in front of the modules_install line so it doesn't interrupt the installation if it fails. |
Ah, I was looking at the current version of the Makefile, which already has depmod on its own line. I assumed, perhaps incorrectly, that this is intended for those systems where Best wishes! |
Sorry, I'm not familiar with the (I'm only using Arch Linux these past few days so haven't been able to test the exact behavior of the depmod stuff for Debian-like OSes. Thanks a lot for your input.) |
@jlam55555 It's Makefile syntax: writing
instead of
in a Makefile means "execute command, but don't exit with an error if the command fails". So it is sort of equivalent to writing
Best wishes! |
Thanks for writing this driver!
Since Debian and derivatives don't have a System.map file, the install step fails. As has been pointed out in other bug reports, running depmod manually solves it.
So could I suggest that the
modules_install
line in Makefile is modified to read:That should make it build on more systems without manual tweaking.
Best wishes!
The text was updated successfully, but these errors were encountered: