2020-09-02 10:55:56 +03:00
|
|
|
#include <lib/term.h>
|
2019-05-31 06:47:13 +03:00
|
|
|
#include <lib/real.h>
|
2020-01-22 07:02:12 +03:00
|
|
|
#include <lib/blib.h>
|
2020-03-25 23:05:14 +03:00
|
|
|
#include <lib/libc.h>
|
2020-04-15 14:21:44 +03:00
|
|
|
#include <lib/part.h>
|
2020-01-22 09:13:19 +03:00
|
|
|
#include <lib/config.h>
|
2020-11-15 19:56:10 +03:00
|
|
|
#include <lib/trace.h>
|
2020-09-18 21:02:10 +03:00
|
|
|
#include <sys/e820.h>
|
2020-10-15 12:35:49 +03:00
|
|
|
#include <sys/a20.h>
|
2020-05-10 01:38:27 +03:00
|
|
|
#include <lib/print.h>
|
2020-04-14 06:20:55 +03:00
|
|
|
#include <fs/file.h>
|
2020-03-25 03:04:18 +03:00
|
|
|
#include <lib/elf.h>
|
2020-09-20 13:03:44 +03:00
|
|
|
#include <mm/pmm.h>
|
2020-09-27 18:39:30 +03:00
|
|
|
#include <mm/mtrr.h>
|
2020-03-25 23:05:14 +03:00
|
|
|
#include <protos/stivale.h>
|
2020-08-11 18:43:39 +03:00
|
|
|
#include <protos/stivale2.h>
|
2020-04-19 11:14:49 +03:00
|
|
|
#include <protos/linux.h>
|
2020-05-06 18:00:41 +03:00
|
|
|
#include <protos/chainload.h>
|
2020-06-05 21:27:52 +03:00
|
|
|
#include <menu.h>
|
2020-11-05 03:37:45 +03:00
|
|
|
#include <pxe/pxe.h>
|
|
|
|
#include <pxe/tftp.h>
|
2020-04-21 19:27:05 +03:00
|
|
|
|
2021-03-02 01:38:55 +03:00
|
|
|
__attribute__((section(".stage3_build_id")))
|
|
|
|
uint64_t stage3_build_id = BUILD_ID;
|
2021-02-25 13:28:14 +03:00
|
|
|
|
|
|
|
__attribute__((noreturn))
|
|
|
|
__attribute__((section(".stage3_entry")))
|
2021-02-26 03:30:27 +03:00
|
|
|
void stage3_entry(int boot_from) {
|
2021-03-02 01:38:55 +03:00
|
|
|
mtrr_save();
|
|
|
|
|
2021-02-26 03:30:27 +03:00
|
|
|
switch (boot_from) {
|
|
|
|
case BOOT_FROM_HDD:
|
|
|
|
case BOOT_FROM_CD: {
|
|
|
|
struct volume boot_volume;
|
|
|
|
volume_get_by_coord(&boot_volume, boot_drive, -1);
|
|
|
|
struct volume part = boot_volume;
|
|
|
|
for (int i = 0; ; i++) {
|
|
|
|
if (!init_config_disk(&part)) {
|
|
|
|
print("Config file found and loaded.\n");
|
|
|
|
boot_partition = i - 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
int ret = part_get(&part, &boot_volume, i);
|
|
|
|
switch (ret) {
|
|
|
|
case INVALID_TABLE:
|
|
|
|
case END_OF_TABLE:
|
|
|
|
panic("Config file not found.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case BOOT_FROM_PXE:
|
|
|
|
pxe_init();
|
|
|
|
if (init_config_pxe()) {
|
|
|
|
panic("Failed to load config file");
|
|
|
|
}
|
|
|
|
print("Config loaded via PXE\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-17 01:31:03 +03:00
|
|
|
char *cmdline;
|
|
|
|
char *config = menu(&cmdline);
|
2020-09-02 10:55:56 +03:00
|
|
|
|
2020-11-27 21:33:34 +03:00
|
|
|
char *proto = config_get_value(config, 0, "PROTOCOL");
|
|
|
|
if (proto == NULL) {
|
2020-11-01 12:31:35 +03:00
|
|
|
panic("PROTOCOL not specified");
|
2020-04-25 21:33:26 +03:00
|
|
|
}
|
2020-01-22 03:55:40 +03:00
|
|
|
|
2020-09-02 11:31:39 +03:00
|
|
|
if (!strcmp(proto, "stivale")) {
|
2020-11-17 01:31:03 +03:00
|
|
|
stivale_load(config, cmdline);
|
2020-09-02 11:31:39 +03:00
|
|
|
} else if (!strcmp(proto, "stivale2")) {
|
2021-02-25 06:06:14 +03:00
|
|
|
stivale2_load(config, cmdline, booted_from_pxe);
|
2020-09-02 11:31:39 +03:00
|
|
|
} else if (!strcmp(proto, "linux")) {
|
2020-11-17 01:31:03 +03:00
|
|
|
linux_load(config, cmdline);
|
2020-09-02 11:31:39 +03:00
|
|
|
} else if (!strcmp(proto, "chainload")) {
|
2020-11-17 01:31:03 +03:00
|
|
|
chainload(config);
|
2020-03-25 23:05:14 +03:00
|
|
|
} else {
|
2020-04-24 19:26:08 +03:00
|
|
|
panic("Invalid protocol specified");
|
2020-03-25 23:05:14 +03:00
|
|
|
}
|
2021-02-25 13:28:14 +03:00
|
|
|
|
|
|
|
for (;;);
|
2020-04-15 14:21:44 +03:00
|
|
|
}
|