diff --git a/common-0.0.1.js b/common-0.0.1.js
index bdcfef1..c07af54 100644
--- a/common-0.0.1.js
+++ b/common-0.0.1.js
@@ -107,7 +107,7 @@ function trademarks(x) { return x.replace(/\(R\)/g, '®').replace(/\(TM\)/g,
function format(format) { var args = Array.prototype.slice.call(arguments, 1); return format.replace(/{(\d+)}/g, function (match, number) { return typeof args[number] != 'undefined' ? args[number] : match; }); };
// Returns a UEFI boot parameter in binary
-function makeUefiBootParam(type, data, len) {
+function makeUefiBootParam(type, data, len, vendorid) {
if (typeof data == 'number') { if (len == 1) { data = String.fromCharCode(data & 0xFF); } if (len == 2) { data = ShortToStrX(data); } if (len == 4) { data = IntToStrX(data); } }
- return ShortToStrX(0x8086) + ShortToStrX(type) + IntToStrX(data.length) + data;
+ return ShortToStrX(vendorid ? vendorid : 0x8086) + ShortToStrX(type) + IntToStrX(data.length) + data;
}
\ No newline at end of file
diff --git a/index.html b/index.html
index 16e90ac..2cd397d 100644
--- a/index.html
+++ b/index.html
@@ -10798,6 +10798,7 @@
if (actionTaken.length > 1) { x += (format('
' + "Select the actions to take:" + '