File biostest_sh.patch of Package firmwarekit
--- biostest.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) Index: firmwarekit/biostest.sh =================================================================== --- /dev/null +++ firmwarekit/biostest.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +DIR="/usr/lib/firmwarekit" +export OUTPUT_DIR="/var/log/firmwarekit" + +if [ ! -d "$DIR" ];then + echo "Could not find directory $DIR" + exit 1 +fi + + +pushd "$DIR" +./biostest "$@" +popd +