diff options
author | Daryl McDaniel <daryl.mcdaniel@intel.com> | 2015-01-13 23:35:33 +0000 |
---|---|---|
committer | darylm503 <darylm503@Edk2> | 2015-01-13 23:35:33 +0000 |
commit | 6a013e50b3f63598e07030325d9469e2444a17a6 (patch) | |
tree | 21c2a24e7d722740834b9fa290ac78603739dc6e /StdLib/LibC | |
parent | 45aee4c87aeb2d24398741cf4a36da7c49ad2cbd (diff) | |
download | edk2-platforms-6a013e50b3f63598e07030325d9469e2444a17a6.tar.xz |
StdLib: Move libraries from ShellPkg into MdeModulePkg and MdePkg.
The following libraries are being migrated out of ShellPkg in order to make
their functionality more widely available.
• PathLib: Incorporate into MdePkg/Library/BaseLib
• FileHandleLib: MdePkg/Library/UefiFileHandleLib
• BaseSortLib: MdeModulePkg/Library/BaseSortLib
• UefiSortLib: MdeModulePkg/Library/UefiSortLib
AppPkg.dsc:
StdLib.dsc:
StdLib.inc:
Delete PathLib LibraryClass description.
Update FileHandleLib LibraryClass description to reflect its new location.
Update SortLib LibraryClass description to reflect its new location.
StdLib.inf:
Delete PathLib from LibraryClasses.
realpath.c:
Delete include of PathLib.h.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Daryl McDaniel <daryl.mcdaniel@intel.com>
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
Reviewed-by: Lee Rosenbaum <lee.g.rosenbaum@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16608 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'StdLib/LibC')
-rw-r--r-- | StdLib/LibC/StdLib/StdLib.inf | 1 | ||||
-rw-r--r-- | StdLib/LibC/StdLib/realpath.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/StdLib/LibC/StdLib/StdLib.inf b/StdLib/LibC/StdLib/StdLib.inf index ce1c3052cb..ffc54b562e 100644 --- a/StdLib/LibC/StdLib/StdLib.inf +++ b/StdLib/LibC/StdLib/StdLib.inf @@ -55,7 +55,6 @@ LibC
LibCType
LibSignal
- PathLib
################################################################
#
diff --git a/StdLib/LibC/StdLib/realpath.c b/StdLib/LibC/StdLib/realpath.c index a7186184c9..6d75f17a39 100644 --- a/StdLib/LibC/StdLib/realpath.c +++ b/StdLib/LibC/StdLib/realpath.c @@ -13,7 +13,6 @@ #include <LibConfig.h>
#include <Library/BaseLib.h>
#include <Library/MemoryAllocationLib.h>
-#include <Library/PathLib.h>
#include <errno.h>
/** The realpath() function shall derive, from the pathname pointed to by
|