Bootloader allow installation when BANAN_ARCH=i686

This commit is contained in:
2024-04-02 12:48:35 +03:00
parent 2106a9e373
commit b35cad0c2e
3 changed files with 20 additions and 10 deletions

View File

@@ -81,7 +81,7 @@ bool ELFFile::validate_elf_header() const
#if ARCH(x86_64)
if (elf_header.e_ident[EI_CLASS] != ELFCLASS64)
#elif ARCH(i386)
#elif ARCH(i686)
if (elf_header.e_ident[EI_CLASS] != ELFCLASS32)
#endif
{