svn commit: r367004 - head/sys/conf

Kyle Evans kevans at FreeBSD.org
Sat Oct 24 15:38:05 UTC 2020


Author: kevans
Date: Sat Oct 24 15:38:04 2020
New Revision: 367004
URL: https://svnweb.freebsd.org/changeset/base/367004

Log:
  backlight(9): compile with COMPAT_LINUXKPI as well
  
  This would be more accurately expressed as COMPAT_LINUXKPI implying or
  requiring backlight, but config(8) doesn't really have a way to express
  that. This fixes the build with COMPAT_LINUXKPI specified in one's kernel
  config.

Modified:
  head/sys/conf/files

Modified: head/sys/conf/files
==============================================================================
--- head/sys/conf/files	Sat Oct 24 14:46:38 2020	(r367003)
+++ head/sys/conf/files	Sat Oct 24 15:38:04 2020	(r367004)
@@ -1312,8 +1312,8 @@ dev/ath/ath_rate/sample/sample.c	optional ath_rate_sam
 dev/ath/ath_dfs/null/dfs_null.c	optional ath \
 	compile-with "${NORMAL_C} -I$S/dev/ath"
 #
-dev/backlight/backlight_if.m		optional backlight
-dev/backlight/backlight.c		optional backlight
+dev/backlight/backlight_if.m		optional backlight | compat_linuxkpi
+dev/backlight/backlight.c		optional backlight | compat_linuxkpi
 dev/bce/if_bce.c			optional bce
 dev/bfe/if_bfe.c			optional bfe
 dev/bge/if_bge.c			optional bge


More information about the svn-src-all mailing list