mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
12 lines
280 B
Bash
12 lines
280 B
Bash
|
#!/bin/sh
|
||
|
# SPDX-License-Identifier: GPL-2.0
|
||
|
# Runs blackhole-dev test using blackhole-dev kernel module
|
||
|
|
||
|
if /sbin/modprobe -q test_blackhole_dev ; then
|
||
|
/sbin/modprobe -q -r test_blackhole_dev;
|
||
|
echo "test_blackhole_dev: ok";
|
||
|
else
|
||
|
echo "test_blackhole_dev: [FAIL]";
|
||
|
exit 1;
|
||
|
fi
|