From 5d004b00389661e7ce8ca5efa4a7b109559cf6cb Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Tue, 11 Jun 2019 17:39:20 +0200 Subject: [PATCH] SMBIOS: followup: allow now 512 characters for full format string to acutally allow to set the values requested by #2190 we need to alter the limit a bit, as else the requested values cannot be save. Just double it to 512, which should be really enough for this, else go complain to your software vendor for needing such _hacks_ in the first place.. Signed-off-by: Thomas Lamprecht --- PVE/QemuServer.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index c6d95e5..341e0b0 100644 --- a/PVE/QemuServer.pm +++ b/PVE/QemuServer.pm @@ -592,7 +592,7 @@ EODESCR smbios1 => { description => "Specify SMBIOS type 1 fields.", type => 'string', format => 'pve-qm-smbios1', - maxLength => 256, + maxLength => 512, optional => 1, }, protection => { -- 2.39.2