11 lines
163 B
Text
11 lines
163 B
Text
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
if ! which genromfs >/dev/null 2>&1; then
|
||
|
echo "genromfs not installed; cannot test romfs."
|
||
|
exit 77
|
||
|
fi
|
||
|
|
||
|
"@builddir@/grub-fs-tester" romfs
|