Module Name:    src
Committed By:   hannken
Date:           Thu Dec 23 17:13:13 UTC 2021

Modified Files:
        src/sys/arch/amd64/conf: ALL
        src/sys/arch/i386/conf: ALL

Log Message:
Disable amdgpu as it uses floating point arithmetics and subr_kcov
doesnt handle it.

Ok: riastradh@


To generate a diff of this commit:
cvs rdiff -u -r1.168 -r1.169 src/sys/arch/amd64/conf/ALL
cvs rdiff -u -r1.499 -r1.500 src/sys/arch/i386/conf/ALL

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/amd64/conf/ALL
diff -u src/sys/arch/amd64/conf/ALL:1.168 src/sys/arch/amd64/conf/ALL:1.169
--- src/sys/arch/amd64/conf/ALL:1.168	Thu Nov 25 02:36:35 2021
+++ src/sys/arch/amd64/conf/ALL	Thu Dec 23 17:13:13 2021
@@ -1,4 +1,4 @@
-# $NetBSD: ALL,v 1.168 2021/11/25 02:36:35 ryo Exp $
+# $NetBSD: ALL,v 1.169 2021/12/23 17:13:13 hannken Exp $
 # From NetBSD: GENERIC,v 1.787 2006/10/01 18:37:54 bouyer Exp
 #
 # ALL machine description file
@@ -17,7 +17,7 @@ include 	"arch/amd64/conf/std.amd64"
 
 options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
 
-#ident		"ALL-$Revision: 1.168 $"
+#ident		"ALL-$Revision: 1.169 $"
 
 maxusers	64		# estimated number of users
 
@@ -530,8 +530,9 @@ intelfb*	at intelfbbus?
 radeon* 	at pci? dev ? function ?
 radeondrmkmsfb* at radeonfbbus?
 
-amdgpu* 	at pci? dev ? function ?
-amdgpufb* 	at amdgpufbbus?
+# XXX disable amdgpu as it uses floating point arithmetics unsupported by KCOV.
+#amdgpu* 	at pci? dev ? function ?
+#amdgpufb* 	at amdgpufbbus?
 
 nouveau*	at pci? dev ? function ?
 nouveaufb*	at nouveaufbbus?

Index: src/sys/arch/i386/conf/ALL
diff -u src/sys/arch/i386/conf/ALL:1.499 src/sys/arch/i386/conf/ALL:1.500
--- src/sys/arch/i386/conf/ALL:1.499	Tue Jun 29 10:22:36 2021
+++ src/sys/arch/i386/conf/ALL	Thu Dec 23 17:13:13 2021
@@ -1,4 +1,4 @@
-# $NetBSD: ALL,v 1.499 2021/06/29 10:22:36 nia Exp $
+# $NetBSD: ALL,v 1.500 2021/12/23 17:13:13 hannken Exp $
 # From NetBSD: GENERIC,v 1.787 2006/10/01 18:37:54 bouyer Exp
 #
 # ALL machine description file
@@ -17,7 +17,7 @@ include 	"arch/i386/conf/std.i386"
 
 options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
 
-#ident		"ALL-$Revision: 1.499 $"
+#ident		"ALL-$Revision: 1.500 $"
 
 maxusers	64		# estimated number of users
 
@@ -605,8 +605,9 @@ intelfb*	at intelfbbus?
 radeon* 	at pci? dev ? function ?
 radeondrmkmsfb* at radeonfbbus?
 
-amdgpu* 	at pci? dev ? function ?
-amdgpufb* 	at amdgpufbbus?
+# XXX disable amdgpu as it uses floating point arithmetics.
+#amdgpu* 	at pci? dev ? function ?
+#amdgpufb* 	at amdgpufbbus?
 
 nouveau*	at pci? dev ? function ?
 nouveaufb*	at nouveaufbbus?

Reply via email to