Use yboot2 (My new rust-based EFI loader)

This commit is contained in:
Mark 2020-09-17 23:53:56 +03:00
parent fa743391a4
commit 7438ee768f
4 changed files with 6 additions and 2 deletions

3
.gitmodules vendored
View File

@ -0,0 +1,3 @@
[submodule "boot/yboot2"]
path = boot/yboot2
url = https://git.alnyan.me/yggdrasil/yboot2.git

View File

@ -1,6 +1,6 @@
#include <config.h>
// For loader magic
#include <yboot/include/protocol.h>
#include <yboot2/include/protocol.h>
.section .text
.global _entry_yboot

1
boot/yboot2 Submodule

@ -0,0 +1 @@
Subproject commit 052d08f1b21cce3b5e0c2708a59770537b97879c

View File

@ -1,4 +1,4 @@
#pragma once
#include "yboot/include/protocol.h"
#include <yboot2/include/protocol.h>
extern struct yboot_v1 yboot_data;