Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 388f7b1d6e8ca06762e2454d28d6c3c55ad0fe95 authored by Linus Torvalds on 07 February 2016, 23:38:30 UTC
Linux 4.5-rc3
Tip revision: 388f7b1
printf.sh
#!/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
back to top