我有一个Alexa设备,我正在使用esp8266从echo点获取请求。我可以在电脑上醒来,但这还不够。我的电脑上有windows和Linux,所以我想"我需要一些代码在启动前运行,这样我就可以和我的esp8266通信,知道应该启动witch操作系统"。所以我开始到处寻找解决方案,我觉得我真的很接近它。我所做的是把efishell作为主引导,让它执行startup.nsh。在这个startup.nsh中,我想启动我的efi应用程序,它可以和esp8266通信。这是做这件事的正确方法吗?我应该做点别的吗?问题是我无法对此应用程序进行编码。我不知道如何使用协议,以及哪些协议是解决方案。应用程序应该向esp发送一个简单的字符,让它知道计算机已准备好获取引导指令。esp对于windows应该回复"1",对于Linux应该回复"2"。有人能给我一些建议吗?这是正确的方式还是我做了很多无用的事情?也许存在更好的方式
以下是如何使用EDK2加载和启动UEFI应用程序的示例,将其移植到gnu efi应该是一项简单的任务,包装所有gBS->与uefi_call_wrapper通话。
根据来自esp8266的响应,您必须启动Linux或Windows加载程序应用程序。
我发布了一个UDP样本作为你第一个问题的答案。
#include <Uefi.h>
#include <LibraryUefiLib.h>
#include <ProtocolLoadedImage.h>
#include <ProtocolDevicePath.h>
#include <LibraryDevicePathLib.h>
#ifndef LOG
#define LOG(fmt, ...) AsciiPrint(fmt, __VA_ARGS__)
#endif
#ifndef TRACE
#define TRACE(status) LOG("Status: '%r', Function: '%a', File: '%a', Line: '%d'rn", status, __FUNCTION__, __FILE__, __LINE__)
#endif
extern EFI_BOOT_SERVICES *gBS;
/*
Configuration
*/
static CHAR16 gFilePath[] = L"\Tools\Udp4Sample.efi";
EFI_STATUS
EFIAPI
UefiMain(
IN EFI_HANDLE ImageHandle,
IN EFI_SYSTEM_TABLE *SystemTable)
{
EFI_STATUS Status;
EFI_LOADED_IMAGE *LoadedImageProtocol = NULL;
EFI_DEVICE_PATH_PROTOCOL *AppDevicePath = NULL;
EFI_HANDLE AppHandle = NULL;
/*
Step 1: Handle the LoadedImageProtocol of the current application
*/
Status = gBS->HandleProtocol(
ImageHandle,
&gEfiLoadedImageProtocolGuid,
&LoadedImageProtocol);
if (EFI_ERROR(Status)) {
TRACE(Status);
// Error handling
return Status;
}
/*
Step 2: Create a device path that points to the application, the application must be located on the same device (partition) as this one
*/
AppDevicePath = FileDevicePath(LoadedImageProtocol->DeviceHandle, gFilePath);
if (!AppDevicePath) {
TRACE(EFI_INVALID_PARAMETER);
// Error handling
return EFI_INVALID_PARAMETER;
}
/*
Step 3: Load the application
*/
Status = gBS->LoadImage(
FALSE,
ImageHandle,
AppDevicePath,
NULL,
0,
&AppHandle);
gBS->FreePool(AppDevicePath);
if (EFI_ERROR(Status)) {
TRACE(Status);
// Error handling
return Status;
}
/*
Step 4: Start the application
*/
Status = gBS->StartImage(
AppHandle,
NULL,
NULL);
if (EFI_ERROR(Status)) {
TRACE(Status);
// Error handling
return Status;
}
return EFI_SUCCESS;
}