Make the following changes to compile SD4L on Ubuntu 11.10
and possibly on other systems with 3.0 series kernel.
1) In the main Makefile, in the "drv:" section, change the line
elif test "$(MINOR)" = "6"; then \
to
elif test "$(MINOR)" = "6" -o "$(MAJOR)" = "3"; then \
2) In the "driver" folder Makefile, replace the line
ifeq ($(MINOR),6)
with lines:
KERNEL_GT_26 = ($(MAJOR) >= 3) || ($(MINOR) > 6)
ifneq ($(KERNEL_GT_26),0)
Then, just run "make deb" and install the resulting Debian
package.
|