You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
11 lines
203 B
Bash
11 lines
203 B
Bash
|
|
#!/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
|