We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
in summary of a node where the cpu as 4 x unknown declared. Is it possible for pimox to detect the BCM2711 from Pi4?
With best regards, techsolo12
The text was updated successfully, but these errors were encountered:
You can patch the proxmoxlib.js to dont show unknown
@@ -897,6 +896,9 @@ render_cpu_model: function(cpu) { let socketText = cpu.sockets > 1 ? gettext('Sockets') : gettext('Socket'); + if (cpu.model === "unknown") { + return `${cpu.cpus} x Cortex-A72 (ARM v8) 64-bit SoC @ 2.00GHz (${cpu.sockets.toString()} ${socketText})`; + } return `${cpu.cpus} x ${cpu.model} (${cpu.sockets.toString()} ${socketText})`; },
Sorry, something went wrong.
Thank you for your help. Its a workaround till the port detect the cpu from it self.
No branches or pull requests
Hello,
in summary of a node where the cpu as 4 x unknown declared.
Is it possible for pimox to detect the BCM2711 from Pi4?
With best regards,
techsolo12
The text was updated successfully, but these errors were encountered: