EFI Application Erorr Write Protected
问题 I tried to do some write/read operations on filesystems that I have enumerated for. The problem is when I want to write to other volumes rather than my self (fs0), it will return WRITE PROTECTED Error. ... Enumerated and opened all available volumes successfuly efiStatus = root->Open(root, &token, L"xxx", EFI_FILE_MODE_READ | EFI_FILE_MODE_WRITE | EFI_FILE_MODE_CREATE, 0); if (efiStatus == EFI_SUCCESS) { char* myStr = "Sample Content"; UINTN myStrSize = strlenEx(myStr); efiStatus = token-