summaryrefslogtreecommitdiffstats
path: root/AppPkg/AppPkg.dsc
diff options
context:
space:
mode:
authordarylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524>2012-01-26 22:04:41 +0000
committerdarylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524>2012-01-26 22:04:41 +0000
commitb410d6e4ce58c177569d42b51772f7bb239a24a3 (patch)
tree479b6367165e6d14a64d3b9d78deed74aad18485 /AppPkg/AppPkg.dsc
parent87bd924782405a4ab605679f47aaefe3b34c7510 (diff)
downloadedk2-b410d6e4ce58c177569d42b51772f7bb239a24a3.tar.gz
edk2-b410d6e4ce58c177569d42b51772f7bb239a24a3.tar.bz2
edk2-b410d6e4ce58c177569d42b51772f7bb239a24a3.zip
AppPkg/Applications/Python: Get Python startup process fully working for EDK II.
AppPkg.dsc: Clean up and add Socket support. Applications/Python/PythonCore.inf: Re-order source files. Applications/Python/Efi/config.c: Add all mandatory modules. Disable remaining. Applications/Python/Efi/edk2module.c: EDK II port of posixmodule.c. Applications/Python/Efi/getpath.c: Determine initial module search path. Applications/Python/Ia32/pyconfig.h: Configuration macros for Ia32. Applications/Python/Ipf/pyconfig.h: Configuration macros for Ipf. Applications/Python/PyMod-2.7.2/Include/osdefs.h: Select appropriate directory and path separators for UEFI. Applications/Python/PyMod-2.7.2/Lib/ntpath.py: Allow multi-character device names to left of colon. Applications/Python/PyMod-2.7.2/Lib/os.py: Add edk2 as a supported OS. Applications/Python/PyMod-2.7.2/Lib/site.py: UEFI-specific path and environment setup. Applications/Python/PyMod-2.7.2/Modules/errnomodule.c: Sync with errno.h. Applications/Python/PyMod-2.7.2/Modules/selectmodule.c: Add UEFI support. Applications/Python/PyMod-2.7.2/Modules/socketmodule.h: Add UEFI support. Applications/Python/PyMod-2.7.2/Modules/zlib/zutil.h: Add UEFI support. Applications/Python/PyMod-2.7.2/Python/getcopyright.c: Add Intel copyright. Applications/Python/X64/pyconfig.h: Configuration macros for X64. Signed-off-by: darylm503 Reviewed-by: geekboy15a Reviewed-by: jljusten Reviewed-by: lpleahy Reviewed-by: leegrosenbaum git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12957 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'AppPkg/AppPkg.dsc')
-rw-r--r--AppPkg/AppPkg.dsc37
1 files changed, 10 insertions, 27 deletions
diff --git a/AppPkg/AppPkg.dsc b/AppPkg/AppPkg.dsc
index 43a93369b9..60ff05fa41 100644
--- a/AppPkg/AppPkg.dsc
+++ b/AppPkg/AppPkg.dsc
@@ -71,6 +71,8 @@
SortLib|ShellPkg/Library/UefiSortLib/UefiSortLib.inf
PathLib|ShellPkg/Library/BasePathLib/BasePathLib.inf
+ CacheMaintenanceLib|MdePkg/Library/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.inf
+
###################################################################################################
#
# Components Section - list of the modules and components that will be processed by compilation
@@ -100,37 +102,18 @@
#### After extracting the Python distribution, un-comment the following line to build Python.
# AppPkg/Applications/Python/PythonCore.inf
-##########
-# Socket Applications - LibC based
-##########
-# AppPkg/Applications/Sockets/DataSink/DataSink.inf
-# AppPkg/Applications/Sockets/DataSource/DataSource.inf
-# SocketPkg/Application/FtpNew/FTP.inf
-# AppPkg/Applications/Sockets/GetHostByAddr/GetHostByAddr.inf
-# AppPkg/Applications/Sockets/GetHostByDns/GetHostByDns.inf
-# AppPkg/Applications/Sockets/GetHostByName/GetHostByName.inf
-# AppPkg/Applications/Sockets/GetNetByAddr/GetNetByAddr.inf
-# AppPkg/Applications/Sockets/GetNetByName/GetNetByName.inf
-# AppPkg/Applications/Sockets/GetServByName/GetServByName.inf
-# AppPkg/Applications/Sockets/GetServByPort/GetServByPort.inf
-# AppPkg/Applications/Sockets/RecvDgram/RecvDgram.inf
-# SocketPkg/Application/route/route.inf
-# AppPkg/Applications/Sockets/SetHostName/SetHostName.inf
-# AppPkg/Applications/Sockets/SetSockOpt/SetSockOpt.inf
-# AppPkg/Applications/Sockets/TftpServer/TftpServer.inf
-# AppPkg/Applications/Sockets/WebServer/WebServer.inf {
-# <PcdsFixedAtBuild>
-# gStdLibTokenSpaceGuid.WebServer_HttpPort|80
-# }
##############################################################################
#
-# Include Boilerplate text required for building with the Standard Libraries.
-#
-##############################################################################
# Specify whether we are running in an emulation environment, or not.
-# Define EMULATE if we are.
+# Define EMULATE if we are, else keep the DEFINE commented out.
#
-#DEFINE EMULATE = 1
+# DEFINE EMULATE = 1
+##############################################################################
+#
+# Include Boilerplate text required for building with the Standard Libraries.
+#
+##############################################################################
!include StdLib/StdLib.inc
+!include AppPkg/Applications/Sockets/Sockets.inc