fcoe-uefi/parse-uefifcoe.sh: fixed parameter generation from UEFI

"fcoe=" was missing for the parameter specifying the interface
master
Harald Hoyer 2014-05-20 11:22:26 +02:00
parent 056a3f2427
commit 1427102692
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ print_fcoe_uefi_conf()
esac
fi
# fcoe=eth0:nodcb
printf "%s\n" "$dev:nodcb"
printf "fcoe=%s\n" "$dev:nodcb"
return 0
}