22 lines
616 B
BlitzBasic
22 lines
616 B
BlitzBasic
# Copyright (C) 2017-2018 Digi International
|
|
|
|
SUMMARY = "Kernel loadable module for Vivante GPU"
|
|
DESCRIPTION = "Builds the Vivante GPU kernel driver as a loadable kernel module, \
|
|
allowing flexibility to use a newer graphics release with an older kernel."
|
|
|
|
inherit module
|
|
require recipes-kernel/linux/linux-dey-src.inc
|
|
|
|
PV .= "+git${SRCPV}"
|
|
|
|
SRC_URI .= \
|
|
";subpath=drivers/mxc/gpu-viv;destsuffix=git/src \
|
|
file://Add-makefile.patch \
|
|
"
|
|
|
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6"
|
|
|
|
EXTRA_OEMAKE += "CONFIG_MXC_GPU_VIV=m"
|
|
|
|
KERNEL_MODULE_AUTOLOAD = "galcore"
|