minerva: Return failed if module not found inside Nyx

This commit is contained in:
CTCaer 2020-11-15 13:40:13 +02:00
parent 68d57861cd
commit 93b4514343

View file

@ -48,7 +48,7 @@ u32 minerva_init()
u32 ep_addr = ianos_loader("bootloader/sys/libsys_minerva.bso", DRAM_LIB, (void *)mtc_cfg);
minerva_cfg = (void *)ep_addr;
return 0;
return !minerva_cfg ? 1 : 0;
}
else
{