Disable RAS input plugin on specific Linux architectures: mips64, mips64le, ppc64le, riscv64 (#8317)

This commit is contained in:
Paweł Żak 2020-10-26 22:33:26 +01:00 committed by GitHub
parent 0e31020836
commit 14e81f479d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# 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).

View File

@ -1,4 +1,5 @@
// +build linux,!mips,!mipsle,!s390x
// +build linux
// +build 386 amd64 arm arm64
package ras

View File

@ -1,3 +1,3 @@
// +build !linux mips mipsle s390x
// +build !linux linux,!386,!amd64,!arm,!arm64
package ras

View File

@ -1,4 +1,5 @@
// +build linux,!mips,!mipsle,!s390x
// +build linux
// +build 386 amd64 arm arm64
package ras