Skip to content

Commit

Permalink
[bootloader] Mark Epsilon 24.0.1 as safe
Browse files Browse the repository at this point in the history
  • Loading branch information
Yaya-Cout committed Dec 27, 2024
1 parent deda748 commit a0f8c8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bootloader/boot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ void Boot::patchKernel(const Slot & s) {
void Boot::bootSlot(Bootloader::Slot s) {
config()->setSlot(&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
// We are trying to boot epsilon, so we check the version and show a warning if needed
const char * version = s.userlandHeader()->version();
const char * min = "23.2.6";
const char * min = "24.0.2";
int versionSum = Utility::versionSum(version, strlen(version));
int minimalVersionTrigger = Utility::versionSum(min, strlen(min));
if (versionSum >= minimalVersionTrigger) {
Expand Down

0 comments on commit a0f8c8b

Please sign in to comment.