summaryrefslogtreecommitdiff
path: root/BuildNotes2.txt
diff options
context:
space:
mode:
authorvanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2007-06-25 11:16:31 +0000
committervanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2007-06-25 11:16:31 +0000
commite4d8dbc920d22408bdb6c272eb17d03bc27be8ec (patch)
tree2c12c70eac694299553150a7b6e4013e6b7d6549 /BuildNotes2.txt
parent769ead154b848a39e84fe118440831a3f564f178 (diff)
add BuildNotes2.txt for EDK II Prime.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2731 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'BuildNotes2.txt')
-rw-r--r--BuildNotes2.txt51
1 files changed, 51 insertions, 0 deletions
diff --git a/BuildNotes2.txt b/BuildNotes2.txt
new file mode 100644
index 000000000..200bf820e
--- /dev/null
+++ b/BuildNotes2.txt
@@ -0,0 +1,51 @@
+Intel(R) Platform Innovation Framework for EFI
+EFI Development Kit II Prime (EDK II Prime)
+Root Package 1.00
+2007-06-25
+
+Intel is a trademark or registered trademark of Intel Corporation or its
+subsidiaries in the United States and other countries.
+* Other names and brands may be claimed as the property of others.
+Copyright (c) 2007, Intel Corporation
+
+EDK II Prime packages are in the development phase. They consist of:
+
+ BuildNotes2.txt - The build notes for this package
+ MdePkg - Industry-standard headers and libraries
+ BaseTools - Build -specific tools that are designed to help the
+ developer create and modify drivers and libraries
+ IntelFrameworkPkg - Framework headers and libraries
+ MdeModulePkg - Reference drivers
+
+Currently, only module build supported, and only IA32 architecture supported.
+
+
+-------------------------------------------------------------------------------
+Quick Start
+-----------
+
+NOTE: Please confirm you have already installed Python on your machine.
+
+In a command window, change to the top-level directory of the EDK II source.
+
+First, set up your workspace
+ c:\MyWork\edk2\> edksetup newbuild
+
+Second, go to the module directory (For example, MdeModulePkg\Application\HelloWorld),
+and then begin to build
+ c:\MyWork\edk2\> cd MdeModulePkg\Application\HelloWorld
+ c:\MyWork\edk2\> build
+
+If you want to build the modules in other packages
+(For example, MdePkg\Library\BaseLib\BaseLib.inf), please edit open the BaseTools\Conf\Target.txt firstly,
+
+change the following line
+ ACTIVE_PLATFORM = MdeModulePkg/MdeModulePkg.dsc
+to
+ ACTIVE_PLATFORM = MdePkg/MdePkg.dsc
+
+and then go to MdePkg\Library\BaseLib directory and build
+ c:\MyWork\edk2\> cd MdePkg\Library\BaseLib
+ c:\MyWork\edk2\> build
+
+