cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

test_blackhole_dev.sh (280B)


      1#!/bin/sh
      2# SPDX-License-Identifier: GPL-2.0
      3# Runs blackhole-dev test using blackhole-dev kernel module
      4
      5if /sbin/modprobe -q test_blackhole_dev ; then
      6	/sbin/modprobe -q -r test_blackhole_dev;
      7	echo "test_blackhole_dev: ok";
      8else
      9	echo "test_blackhole_dev: [FAIL]";
     10	exit 1;
     11fi