UEFI support/uefi-rs crate implementation #1172
-
Hey. I am planning to run the OS on my UEFI laptop so I was wondering how can I add support for UEFI. As I understood, in the released version of the blog_os the whole kernel work only on BIOS. Although, I saw the uefi-rs crate on the monthly update and the name of uefi-rs crate appears from time to time in the blog_os "ecosystem", I didn’t found any specific posts about this crate implementation. Can somebody explain to me how can I implement this crate to my fork of the blog_os? P.S. Thanks for your blog, I really appreciate what u guys are doing |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
A third edition is in the works which uses a new version of bootloader that supports both bios and uefi. Note that the bootloader crate calls ExitBootServices before passing control to the OS, so you won't be able to interact with UEFI from the OS, but it does allow booting using UEFI. |
Beta Was this translation helpful? Give feedback.
A third edition is in the works which uses a new version of bootloader that supports both bios and uefi. Note that the bootloader crate calls ExitBootServices before passing control to the OS, so you won't be able to interact with UEFI from the OS, but it does allow booting using UEFI.