mkdir edk2/ShellPkg/Application/ShellHello
目录内容如下:

- /* edk2/ShellPkg/Application/ShellHello/ShellHello.c*/
- #include
- #include
- #include
- #include
-
- EFI_STATUS
- EFIAPI
- ShellHelloMain (
- IN EFI_HANDLE ImageHandle,
- IN EFI_SYSTEM_TABLE *SystemTable
- )
- {
- SystemTable->ConOut->OutputString(SystemTable->ConOut, L"Hello world");
-
- return EFI_SUCCESS;
- }
- /* edk2/ShellPkg/Application/ShellHello/ShellHello.inf */
- [Defines]
- INF_VERS