forked from crashniels/aura-gpu
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile
100 lines (82 loc) · 2.34 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# For building for the current running version of Linux
ifndef TARGET
TARGET = $(shell uname -r)
endif
# Or specific version
#TARGET = 2.6.33.5
CONFIG_MODULE_SIG=n
CONFIG_STACK_VALIDATION=n
DRIVER = aura-gpu
SRCS = \
asic/asic-polaris.c \
asic/asic-vega.c \
asic/asic-navi.c \
atom/atom.c \
aura-gpu-reg.c \
aura-gpu-i2c.c \
aura-gpu-bios.c \
aura-gpu-hw.c \
main.c
KERNEL_MODULES = /lib/modules/$(TARGET)
ifneq ("","$(wildcard /usr/src/linux-headers-$(TARGET)/*)")
# Ubuntu
KERNEL_BUILD = /usr/src/linux-headers-$(TARGET)
else
ifneq ("","$(wildcard /usr/src/kernels/$(TARGET)/*)")
# Fedora
KERNEL_BUILD = /usr/src/kernels/$(TARGET)
else
KERNEL_BUILD = $(KERNEL_MODULES)/build
endif
endif
ifneq ("","$(wildcard .git/*)")
DRIVER_VERSION := $(shell echo "$(shell git rev-list --count HEAD).$(shell git rev-parse --short HEAD)")
else
ifneq ("", "$(wildcard VERSION)")
DRIVER_VERSION := $(shell cat VERSION)
else
DRIVER_VERSION := unknown
endif
endif
# DKMS
DKMS_ROOT_PATH=/usr/src/$(DRIVER)-$(DRIVER_VERSION)
MODPROBE_OUTPUT=$(shell lsmod | grep ${DRIVER})
# Directory below /lib/modules/$(TARGET)/kernel into which to install
# the module:
MOD_SUBDIR = drivers/hwmon
MODDESTDIR=$(KERNEL_MODULES)/kernel/$(MOD_SUBDIR)
OBJS = $(SRCS:.c=.o)
all:
$(MAKE) -C $(KERNEL_BUILD) M=$(CURDIR) modules EXTRA_CFLAGS="-g -DDEBUG -I$(CURDIR)/../include -I$(CURDIR)/.."
clean:
@$(MAKE) -C $(KERNEL_BUILD) M=$(CURDIR) $@
ifeq ($(KERNELRELEASE),)
dkms:
@sed -i -e '/^PACKAGE_VERSION=/ s/=.*/=\"$(DRIVER_VERSION)\"/' dkms.conf
@echo "$(DRIVER_VERSION)" >VERSION
@mkdir -p $(DKMS_ROOT_PATH)
@cp `pwd`/dkms.conf $(DKMS_ROOT_PATH)
@cp `pwd`/VERSION $(DKMS_ROOT_PATH)
@cp `pwd`/Makefile $(DKMS_ROOT_PATH)
# copy c-files
@cp -r `pwd`/*.c $(DKMS_ROOT_PATH)
@cp -r `pwd`/asic $(DKMS_ROOT_PATH)
@cp -r `pwd`/atom $(DKMS_ROOT_PATH)
# also copy headers
@cp -r `pwd`/include $(DKMS_ROOT_PATH)
@cp *.h $(DKMS_ROOT_PATH)
dkms add -m $(DRIVER) -v $(DRIVER_VERSION)
dkms build -m $(DRIVER) -v $(DRIVER_VERSION) --kernelsourcedir=$(KERNEL_BUILD)
dkms install --force -m $(DRIVER) -v $(DRIVER_VERSION)
@modprobe $(DRIVER)
dkms_clean:
@if [ ! -z "$(MODPROBE_OUTPUT)" ]; then \
rmmod $(DRIVER);\
fi
@dkms remove -m $(DRIVER) -v $(DRIVER_VERSION) --all
@rm -rf $(DKMS_ROOT_PATH)
else
obj-m := $(DRIVER).o
$(DRIVER)-y := $(OBJS)
endif
.PHONY: all clean dkms dkms_clean