forked from buildroot/buildroot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinux-ext-fbtft.mk
28 lines (24 loc) · 948 Bytes
/
linux-ext-fbtft.mk
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
################################################################################
# Linux fbtft extensions
#
# Patch the linux kernel with fbtft extension
################################################################################
ifeq ($(BR2_LINUX_KERNEL_EXT_FBTFT),y)
# Add dependency to fbtft package (download helper for the fbtft source)
LINUX_DEPENDENCIES += fbtft
# for linux >= 3.15 install to drivers/video/fbdev/fbtft
# for linux < 3.15 install to drivers/video/fbtft
define FBTFT_PREPARE_KERNEL
if [ -e $(LINUX_DIR)/drivers/video/fbdev ]; then \
dest=$(LINUX_DIR)/drivers/video/fbdev ; \
else \
dest=$(LINUX_DIR)/drivers/video/ ; \
fi ; \
mkdir -p $${dest}/fbtft; \
cp -dpfr $(FBTFT_DIR)/* $${dest}/fbtft/ ; \
echo 'source "drivers/video/fbdev/fbtft/Kconfig"' \
>> $${dest}/Kconfig ; \
echo 'obj-y += fbtft/' >> $${dest}/Makefile
endef
LINUX_PRE_PATCH_HOOKS += FBTFT_PREPARE_KERNEL
endif #BR2_LINUX_KERNEL_EXT_FBTFT