[bootloader] Mark Epsilon 23.2.6 as safe and change the warning a bit the error message

This commit is contained in:
Yaya-Cout
2024-10-19 18:29:01 +02:00
parent d3513a0763
commit 89def884f7
2 changed files with 4 additions and 4 deletions

View File

@@ -105,7 +105,7 @@ void Boot::bootSlot(Bootloader::Slot s) {
if (!s.userlandHeader()->isOmega() && !s.userlandHeader()->isUpsilon()) {
// We are trying to boot epsilon, so we check the version and show an advertisement if needed
const char * version = s.userlandHeader()->version();
const char * min = "23.1.1";
const char * min = "23.2.6";
int versionSum = Utility::versionSum(version, strlen(version));
int minimalVersionTrigger = Utility::versionSum(min, strlen(min));
if (versionSum >= minimalVersionTrigger) {