#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include extern uint64_t stage3_build_id; struct volume *boot_volume; #if defined (bios) bool stage3_loaded = false; extern symbol stage3_addr; extern symbol limine_sys_size; static bool stage3_init(struct volume *part) { struct file_handle stage3; if (fopen(&stage3, part, "/limine.sys") && fopen(&stage3, part, "/boot/limine.sys")) { return false; } if (stage3.size != (size_t)limine_sys_size) { print("limine.sys size incorrect.\n"); return false; } fread(&stage3, stage3_addr, (uintptr_t)stage3_addr - 0x8000, stage3.size - ((uintptr_t)stage3_addr - 0x8000)); if (BUILD_ID != stage3_build_id) { print("limine.sys build ID mismatch.\n"); return false; } stage3_loaded = true; return true; } enum { BOOTED_FROM_HDD, BOOTED_FROM_PXE, BOOTED_FROM_CD }; __attribute__((noreturn)) void entry(uint8_t boot_drive, int boot_from) { term_textmode(); print("Limine " LIMINE_VERSION "\n\n"); if (!a20_enable()) panic("Could not enable A20 line"); init_e820(); init_memmap(); disk_create_index(); if (boot_from == BOOTED_FROM_HDD || boot_from == BOOTED_FROM_CD) { boot_volume = volume_get_by_coord(boot_drive, -1); } volume_iterate_parts(boot_volume, if (stage3_init(_PART)) { break; } ); if (!stage3_loaded) panic("Failed to load stage 3.\n"); __attribute__((noreturn)) void (*stage3)(int boot_from) = (void *)stage3_addr; stage3(boot_from); } #endif