X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=ArmPkg%2FFilesystem%2FSemihostFs%2FArm%2FSemihostFs.c;h=aae9582a6aa5a71221f3e1b2e5e73b258d0ee614;hb=d276ac10f184aea06b5b484c8eeef88c5d6df881;hp=447ab5631a3e311576f6312cf9b6d1e96460a9e7;hpb=228fdff4bece78e53f44c79f5478dde7d51a8250;p=mirror_edk2.git diff --git a/ArmPkg/Filesystem/SemihostFs/Arm/SemihostFs.c b/ArmPkg/Filesystem/SemihostFs/Arm/SemihostFs.c index 447ab5631a..aae9582a6a 100644 --- a/ArmPkg/Filesystem/SemihostFs/Arm/SemihostFs.c +++ b/ArmPkg/Filesystem/SemihostFs/Arm/SemihostFs.c @@ -2,7 +2,7 @@ Support a Semi Host file system over a debuggers JTAG Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.
- Portions copyright (c) 2011 - 2013, ARM Ltd. All rights reserved.
+ Portions copyright (c) 2011 - 2014, ARM Ltd. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License @@ -544,7 +544,9 @@ FileSetInfo ( if (CompareGuid (InformationType, &gEfiFileSystemInfoGuid) != 0) { //Status = SetFilesystemInfo (Fcb, BufferSize, Buffer); } else if (CompareGuid (InformationType, &gEfiFileInfoGuid) != 0) { - //Status = SetFileInfo (Fcb, BufferSize, Buffer); + // Semihosting does not give us access to setting file info, but + // if we fail here we cannot create new files. + Status = EFI_SUCCESS; } else if (CompareGuid (InformationType, &gEfiFileSystemVolumeLabelInfoIdGuid) != 0) { if (StrSize (Buffer) > 0) { FreePool (mSemihostFsLabel);