[bootloader] Mark Epsilon 21.1.1 as safe

This commit is contained in:
Yaya-Cout
2023-08-29 11:54:31 +02:00
parent a945fc1025
commit f89ffc9b00

View File

@@ -107,7 +107,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 = "20.4.1";
const char * min = "21.1.2";
int versionSum = Utility::versionSum(version, strlen(version));
int minimalVersionTrigger = Utility::versionSum(min, strlen(min));
if (versionSum >= minimalVersionTrigger) {