An open API service indexing awesome lists of open source software.

https://github.com/vmfunc/linux-selftest

kernel-space deterministic validation for architectural security primitives
https://github.com/vmfunc/linux-selftest

Last synced: about 1 month ago
JSON representation

kernel-space deterministic validation for architectural security primitives

Awesome Lists containing this project

README

          

## Building

```bash
# Debian/Ubuntu
sudo apt-get install linux-headers-$(uname -r)
# Fedora
sudo dnf install kernel-devel
# Arch
sudo pacman -S linux-headers
# Gentoo
sudo emerge sys-kernel/linux-headers

# Build
make
```

## Installation

```bash
sudo make install
sudo modprobe selftest
```

## Usage

1. Through sysfs:
```bash
cat /sys/kernel/selftest/test_results
```

2. Through debugfs:
```bash
cat /sys/kernel/debug/selftest/results
```

## Uninstalling

```bash
sudo rmmod selftest
```