blob: 200bf820e9056da1c61244b0f611434692be1e23 [file] [log] [blame]
vanjeffe4d8dbc2007-06-25 11:16:31 +00001Intel(R) Platform Innovation Framework for EFI
2EFI Development Kit II Prime (EDK II Prime)
3Root Package 1.00
42007-06-25
5
6Intel is a trademark or registered trademark of Intel Corporation or its
7subsidiaries in the United States and other countries.
8* Other names and brands may be claimed as the property of others.
9Copyright (c) 2007, Intel Corporation
10
11EDK II Prime packages are in the development phase. They consist of:
12
13 BuildNotes2.txt - The build notes for this package
14 MdePkg - Industry-standard headers and libraries
15 BaseTools - Build -specific tools that are designed to help the
16 developer create and modify drivers and libraries
17 IntelFrameworkPkg - Framework headers and libraries
18 MdeModulePkg - Reference drivers
19
20Currently, only module build supported, and only IA32 architecture supported.
21
22
23-------------------------------------------------------------------------------
24Quick Start
25-----------
26
27NOTE: Please confirm you have already installed Python on your machine.
28
29In a command window, change to the top-level directory of the EDK II source.
30
31First, set up your workspace
32 c:\MyWork\edk2\> edksetup newbuild
33
34Second, go to the module directory (For example, MdeModulePkg\Application\HelloWorld),
35and then begin to build
36 c:\MyWork\edk2\> cd MdeModulePkg\Application\HelloWorld
37 c:\MyWork\edk2\> build
38
39If you want to build the modules in other packages
40(For example, MdePkg\Library\BaseLib\BaseLib.inf), please edit open the BaseTools\Conf\Target.txt firstly,
41
42change the following line
43 ACTIVE_PLATFORM = MdeModulePkg/MdeModulePkg.dsc
44to
45 ACTIVE_PLATFORM = MdePkg/MdePkg.dsc
46
47and then go to MdePkg\Library\BaseLib directory and build
48 c:\MyWork\edk2\> cd MdePkg\Library\BaseLib
49 c:\MyWork\edk2\> build
50
51