Disable RAS input plugin on specific Linux architectures: mips64, mips64le, ppc64le, riscv64 (#8317)
This commit is contained in:
parent
0e31020836
commit
14e81f479d
|
|
@ -1,6 +1,6 @@
|
||||||
# RAS Daemon Input Plugin
|
# RAS Daemon Input Plugin
|
||||||
|
|
||||||
This plugin is only available on Linux.
|
This plugin is only available on Linux (only for `386`, `amd64`, `arm` and `arm64` architectures).
|
||||||
|
|
||||||
The `RAS` plugin gathers and counts errors provided by [RASDaemon](https://github.com/mchehab/rasdaemon).
|
The `RAS` plugin gathers and counts errors provided by [RASDaemon](https://github.com/mchehab/rasdaemon).
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
// +build linux,!mips,!mipsle,!s390x
|
// +build linux
|
||||||
|
// +build 386 amd64 arm arm64
|
||||||
|
|
||||||
package ras
|
package ras
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
// +build !linux mips mipsle s390x
|
// +build !linux linux,!386,!amd64,!arm,!arm64
|
||||||
|
|
||||||
package ras
|
package ras
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
// +build linux,!mips,!mipsle,!s390x
|
// +build linux
|
||||||
|
// +build 386 amd64 arm arm64
|
||||||
|
|
||||||
package ras
|
package ras
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue