gator: Fix Makefile for DKMS
authorJon Medhurst <tixy@linaro.org>
Tue, 30 Jul 2013 14:35:40 +0000 (15:35 +0100)
committerJon Medhurst <tixy@linaro.org>
Tue, 8 Oct 2013 14:15:52 +0000 (15:15 +0100)
When building gator with DKMS then CONFIG_GATOR won't be defined (unless
the kernel was build with an in-tree copy of gator) this results in the
DKMS gator install failing.

Fix this by providing a default value for CONFIG_GATOR of 'm' so it is
built as a module.

Signed-off-by: Jon Medhurst <tixy@linaro.org>
drivers/gator/Makefile

index 5dadbacb30f491298316ff2ae0e2cbf6a920854a..7b877532b24b9ffda70846dc76d78ac55015cf24 100644 (file)
@@ -3,6 +3,7 @@ ifneq ($(KERNELRELEASE),)
 # Uncomment the following line to enable kernel stack unwinding within gator, or update gator_backtrace.c
 # EXTRA_CFLAGS +=      -DGATOR_KERNEL_STACK_UNWINDING
 
+CONFIG_GATOR ?= m
 obj-$(CONFIG_GATOR) := gator.o
 
 gator-y :=     gator_main.o \