Updated files

This commit is contained in:
Alex 2022-09-29 02:07:12 +03:00
parent bc094b39c7
commit 5f96473b20
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD
3 changed files with 2675 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
gnu-efi
include

2659
Doxyfile Normal file

File diff suppressed because it is too large Load Diff

14
Makefile Normal file
View File

@ -0,0 +1,14 @@
GNUEFI_RELEASE_VERSION=3.0.14
gnuefi:
wget https://archive.org/download/gnu-efi-$(GNUEFI_RELEASE_VERSION).tar/gnu-efi-$(GNUEFI_RELEASE_VERSION).tar.bz2
tar -xf gnu-efi-$(GNUEFI_RELEASE_VERSION).tar.bz2
rm gnu-efi-$(GNUEFI_RELEASE_VERSION).tar.bz2
mv ./gnu-efi-$(GNUEFI_RELEASE_VERSION) ./gnu-efi
mkdir -p include
cp -a ./gnu-efi/inc/. ./include
make -C gnu-efi
prepare: gnuefi
clean: