#!/bin/sh

if [ -f /usr/bin/efibootmgr ] 
then
    /usr/bin/efibootmgr -v > $1 2>/dev/null
else
    exit 200
fi
