├── README.md ├── pages ├── bootmgr │ └── bootmgr.md ├── section1 │ ├── firmwaremenu-nolegacymode.jpg │ ├── firmwaremenu-securebootfactorykeys.jpg │ └── uefi-image-types.jpg ├── section2 │ ├── edk2-build-workflow.png │ ├── firmwaremenu-disableSB.jpg │ ├── firmwaremenu-efishell.jpg │ ├── firmwaremenu-usbboot.jpg │ ├── gnuefi-build-workflow.png │ ├── gnuefi-build-workflow2.png │ └── section2.md ├── section3 │ └── section3.md └── section4 │ └── section4.md └── src ├── edk2projs └── HelloPkgMin │ ├── HelloPkgMin.dsc │ ├── HelloWorldMin.c │ └── HelloWorldMin.inf └── gnuefi └── HelloWorld ├── Makefile └── main.c /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safayetahmedatge/efitutorial/HEAD/README.md -------------------------------------------------------------------------------- /pages/bootmgr/bootmgr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safayetahmedatge/efitutorial/HEAD/pages/bootmgr/bootmgr.md -------------------------------------------------------------------------------- /pages/section1/firmwaremenu-nolegacymode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safayetahmedatge/efitutorial/HEAD/pages/section1/firmwaremenu-nolegacymode.jpg -------------------------------------------------------------------------------- /pages/section1/firmwaremenu-securebootfactorykeys.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safayetahmedatge/efitutorial/HEAD/pages/section1/firmwaremenu-securebootfactorykeys.jpg -------------------------------------------------------------------------------- /pages/section1/uefi-image-types.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safayetahmedatge/efitutorial/HEAD/pages/section1/uefi-image-types.jpg -------------------------------------------------------------------------------- /pages/section2/edk2-build-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safayetahmedatge/efitutorial/HEAD/pages/section2/edk2-build-workflow.png -------------------------------------------------------------------------------- /pages/section2/firmwaremenu-disableSB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safayetahmedatge/efitutorial/HEAD/pages/section2/firmwaremenu-disableSB.jpg -------------------------------------------------------------------------------- /pages/section2/firmwaremenu-efishell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safayetahmedatge/efitutorial/HEAD/pages/section2/firmwaremenu-efishell.jpg -------------------------------------------------------------------------------- /pages/section2/firmwaremenu-usbboot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safayetahmedatge/efitutorial/HEAD/pages/section2/firmwaremenu-usbboot.jpg -------------------------------------------------------------------------------- /pages/section2/gnuefi-build-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safayetahmedatge/efitutorial/HEAD/pages/section2/gnuefi-build-workflow.png -------------------------------------------------------------------------------- /pages/section2/gnuefi-build-workflow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safayetahmedatge/efitutorial/HEAD/pages/section2/gnuefi-build-workflow2.png -------------------------------------------------------------------------------- /pages/section2/section2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safayetahmedatge/efitutorial/HEAD/pages/section2/section2.md -------------------------------------------------------------------------------- /pages/section3/section3.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/section4/section4.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/edk2projs/HelloPkgMin/HelloPkgMin.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safayetahmedatge/efitutorial/HEAD/src/edk2projs/HelloPkgMin/HelloPkgMin.dsc -------------------------------------------------------------------------------- /src/edk2projs/HelloPkgMin/HelloWorldMin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safayetahmedatge/efitutorial/HEAD/src/edk2projs/HelloPkgMin/HelloWorldMin.c -------------------------------------------------------------------------------- /src/edk2projs/HelloPkgMin/HelloWorldMin.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safayetahmedatge/efitutorial/HEAD/src/edk2projs/HelloPkgMin/HelloWorldMin.inf -------------------------------------------------------------------------------- /src/gnuefi/HelloWorld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safayetahmedatge/efitutorial/HEAD/src/gnuefi/HelloWorld/Makefile -------------------------------------------------------------------------------- /src/gnuefi/HelloWorld/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safayetahmedatge/efitutorial/HEAD/src/gnuefi/HelloWorld/main.c --------------------------------------------------------------------------------