vanjeff | e4d8dbc | 2007-06-25 11:16:31 +0000 | [diff] [blame^] | 1 | Intel(R) Platform Innovation Framework for EFI
|
| 2 | EFI Development Kit II Prime (EDK II Prime)
|
| 3 | Root Package 1.00
|
| 4 | 2007-06-25
|
| 5 |
|
| 6 | Intel is a trademark or registered trademark of Intel Corporation or its
|
| 7 | subsidiaries in the United States and other countries.
|
| 8 | * Other names and brands may be claimed as the property of others.
|
| 9 | Copyright (c) 2007, Intel Corporation
|
| 10 |
|
| 11 | EDK 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 |
|
| 20 | Currently, only module build supported, and only IA32 architecture supported.
|
| 21 |
|
| 22 |
|
| 23 | -------------------------------------------------------------------------------
|
| 24 | Quick Start
|
| 25 | -----------
|
| 26 |
|
| 27 | NOTE: Please confirm you have already installed Python on your machine.
|
| 28 |
|
| 29 | In a command window, change to the top-level directory of the EDK II source.
|
| 30 |
|
| 31 | First, set up your workspace
|
| 32 | c:\MyWork\edk2\> edksetup newbuild
|
| 33 |
|
| 34 | Second, go to the module directory (For example, MdeModulePkg\Application\HelloWorld),
|
| 35 | and then begin to build
|
| 36 | c:\MyWork\edk2\> cd MdeModulePkg\Application\HelloWorld
|
| 37 | c:\MyWork\edk2\> build
|
| 38 |
|
| 39 | If 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 |
|
| 42 | change the following line
|
| 43 | ACTIVE_PLATFORM = MdeModulePkg/MdeModulePkg.dsc
|
| 44 | to
|
| 45 | ACTIVE_PLATFORM = MdePkg/MdePkg.dsc
|
| 46 |
|
| 47 | and then go to MdePkg\Library\BaseLib directory and build
|
| 48 | c:\MyWork\edk2\> cd MdePkg\Library\BaseLib
|
| 49 | c:\MyWork\edk2\> build
|
| 50 |
|
| 51 |
|