Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 5771a8c08880cdca3bfb4a3fc6d309d6bba20877 authored by Linus Torvalds on 15 July 2017, 22:22:10 UTC
Linux v4.13-rc1
Tip revision: 5771a8c
printf.sh
#!/bin/sh
# Runs printf infrastructure using test_printf kernel module
if ! /sbin/modprobe -q -n test_printf; then
	echo "printf: [SKIP]"
	exit 77
fi

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