diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2020-06-08 04:48:17 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2020-06-08 04:48:17 +0000 |
commit | 999f0686e0633f8b7bb9b76a14e47f5c20d2ea36 (patch) | |
tree | dbe3cb52b25db114fa92d119c4d7489e1632683b /sys/arch/arm64/conf | |
parent | 8f362563d8e3edaf51e661f18685f44716781993 (diff) |
update drm to linux 5.7
adds kernel support for
amdgpu: vega20, raven2, renoir, navi10, navi14
inteldrm: icelake, tigerlake
Thanks to the OpenBSD Foundation for sponsoring this work, kettenis@ for
helping, patrick@ for helping adapt rockchip drm and many developers for
testing.
Diffstat (limited to 'sys/arch/arm64/conf')
-rw-r--r-- | sys/arch/arm64/conf/Makefile.arm64 | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/arch/arm64/conf/Makefile.arm64 b/sys/arch/arm64/conf/Makefile.arm64 index 62dc0df522e..f35a39e412d 100644 --- a/sys/arch/arm64/conf/Makefile.arm64 +++ b/sys/arch/arm64/conf/Makefile.arm64 @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.arm64,v 1.35 2019/11/07 20:42:28 guenther Exp $ +# $OpenBSD: Makefile.arm64,v 1.36 2020/06/08 04:47:58 jsg Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -36,7 +36,10 @@ INCLUDES= -nostdinc -I$S -I${.OBJDIR} -I$S/arch \ -I$S/dev/pci/drm/amd/powerplay/hwmgr \ -I$S/dev/pci/drm/amd/display/dc/inc \ -I$S/dev/pci/drm/amd/display/dc/inc/hw \ - -I$S/dev/pci/drm/amd/display/modules/inc + -I$S/dev/pci/drm/amd/display/dc/clk_mgr \ + -I$S/dev/pci/drm/amd/display/modules/inc \ + -I$S/dev/pci/drm/amd/display/modules/hdcp \ + -I$S/dev/pci/drm/amd/display/dmub/inc CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL -D__${_mach}__ -MD -MP CWARNFLAGS= -Werror -Wall -Wimplicit-function-declaration \ -Wno-uninitialized -Wno-pointer-sign \ |