Kernel  |  4.4

下载     查看原文件
Bash程序  |  11行  |  203 B
#!/bin/sh
# Runs printf infrastructure using test_printf kernel module

if /sbin/modprobe -q test_printf; then
	/sbin/modprobe -q -r test_printf
	echo "printf: ok"
else
	echo "printf: [FAIL]"
	exit 1
fi