Update limine to v4.x

usermode
Asya 2022-12-17 10:25:42 +03:00
parent 25afe9fec7
commit 0880391dde
Signed by: asya
GPG Key ID: 4679BF7DCC044783
1 changed files with 2 additions and 2 deletions

View File

@ -83,11 +83,11 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
// Create disk directory
fs::create_dir("./disk").unwrap();
// Clone limine 3.X binaries
// Clone limine 4.x binaries
Command::new("git")
.arg("clone")
.arg("https://github.com/limine-bootloader/limine.git")
.arg("--branch=v3.0-branch-binary")
.arg("--branch=v4.x-branch-binary")
.arg("--depth=1")
.status()
.unwrap();