initial Target byte array with 0xff (all bytes are 0xff in this array)in GetTargetLun...
[edk2.git] / BuildNotes2.txt
blob693e3b8ba1383ca85b1e982b6d99d6ef27d1067c
1 Intel(R) Platform Innovation Framework for EFI\r
2 EFI Development Kit II (EDK II)\r
3 Root Package 1.00\r
4 2008-05-22\r
5 \r
6 Intel is a trademark or registered trademark of Intel Corporation or its\r
7 subsidiaries in the United States and other countries.\r
8 * Other names and brands may be claimed as the property of others.\r
9 Copyright (c) 2007 - 2008, Intel Corporation  All rights reserved.\r
11 EDK II packages are in the development phase. They consist of:\r
13   BuildNotes2.txt         - The build notes for this package\r
14   BaseTools               - Build -specific tools that are designed to help the\r
15                             developer create and modify drivers and libraries\r
16   DuetPkg                 - UEFI 2.1.PI 1.0 boot image creation platform\r
17   EdkShellBinPkg          - Binaries of full shell, minimum shell and commands\r
18   FatBinPkg               - Binaries built from the FatPkg \r
19   IntelFrameworkPkg       - Tiano/Framework Includes and Libraries\r
20   IntelFrameworkModulePKg - Tiano/Framework Includes and Libraries\r
21   MdeModulePkg            - UEFI 2.1/PI 1.0 compliant modules\r
22   MdePkg                  - Industry-standard headers and libraries\r
23   Nt32Pkg                 - UEFI 2.1/PI 1.0 emulation environment for Windows\r
24   OptionRomPkg            - UEFI 2.1 peripheral drivers\r
25   UnixPkg                 - UEFI 2.1/PI 1.0 emulation environment for Unix\r
28 -------------------------------------------------------------------------------\r
29 The most recent version of the setup instructions is available on the EDK II\r
30 web-site:\r
31   https://edk2.tianocore.org/installation.html\r
34 -------------------------------------------------------------------------------\r
35 Quick Start (Windows Development Platform)\r
36 -----------\r
38 In a command prompt window, change to the top-level directory of the EDK II \r
39 source.\r
41 Note:\r
42   The first time the edksetup script is executed, it creates three files in the\r
43   %WORKSPACE%\Conf directory. The files: tools_def.txt, target.txt and\r
44   build_rule.txt, are only created if they do not exist, if they exist, they\r
45   are not touched.\r
47 First, set up your project workspace. If you have previously initialized this\r
48 WORKSPACE, and a newer version of the *.template files in\r
49 WORKSPACE\BaseTools\Conf exists, remove the *.txt files in the WORKSPACE\Conf\r
50 directory prior to running the edksetup script.\r
52 For the reference build of the Nt32 Platform emulation environment, use the \r
53 edksetup.bat option: --nt32. For building other platforms or modules, this\r
54 option is not required, as Visual Studio standard includes, libraries and/or\r
55 dlls are not required for normal development.\r
57     c:\MyWork\edk2\> edksetup --nt32\r
59 The default tool chain (named MYTOOLS) is pre-configured to use VS2005 for IA32\r
60 and X64 target architectures and the DDK for IPF target architectures. To use a\r
61 different tool chain, either modify the tools_def.txt file's MYTOOLS entries,\r
62 or modify the %WORKSPACE%\Conf\target.txt file's TOOL_CHAIN_TAG. The pre-defined\r
63 tags are listed near the top of the %WORKSPACE%\Conf\tools_def.txt file, below\r
64 the Supported Tool Chains comment.\r
65 Alternatively, you may use the build command's -t option to specify a different\r
66 tool chain tag name: build -t VS2003 ... , for example.  Using this method will\r
67 require that you always use the build command's -t option.\r
70 Next, go to the module directory and begin to build.  This example is for the\r
71 HelloWorld application.\r
73     c:\MyWork\edk2\> cd MdeModulePkg\Application\HelloWorld\r
74     c:\MyWork\edk2\> build\r
76 If you want to build the a module in another package (for example, \r
77 MdePkg\Library\BaseLib\BaseLib.inf), please edit the file,\r
78 %WORKSPACE%\Conf\Target.txt, first.\r
80 Change the following line\r
81     ACTIVE_PLATFORM       = MdeModulePkg/MdeModulePkg.dsc\r
82 to\r
83     ACTIVE_PLATFORM       = MdePkg/MdePkg.dsc\r
85 Then go to MdePkg\Library\BaseLib directory and type build:\r
86     c:\MyWork\edk2\> cd MdePkg\Library\BaseLib\r
87     c:\MyWork\edk2\> build\r
89 If you want build a platform, ACTIVE_PLATFORM must be set to your desired\r
90 platform dsc file, go to directory which must be not a module's directory, and\r
91 run "build" command.\r
93 Instead of changing Target.txt, you can specify platform, module and/or\r
94 architecture on command line.\r
95 For example, if you want to build NT32 platform, you can just type \r
97     c:\MyWork\edk2\> build -p Nt32Pkg\Nt32Pkg.dsc -a IA32\r
99 and if you want to build HelloWorld module, you can just type\r
101     c:\MyWork\edk2\> build -p Nt32Pkg\Nt32Pkg.dsc -a IA32 -m MdeModulePkg\Application\HelloWorld\HelloWorld.inf\r
103 Other helpful command line options of build tool include "-v" and "-d".\r
104 The "-v" option is used to turn on the verbose build, which provide more\r
105 information during the build. "-d <debug level 0-9>" option is used to\r
106 turn on the debug information which is helpful debugging build tools.\r
108 For more information on build options, please try "build -h" on command line.\r
110 Note:\r
111   The Windows style help option "/?" is not a valid option for the build\r
112   command.\r
115 -------------------------------------------------------------------------------\r
116 Supported build targets\r
117 -----------------------\r
119 all       - Build whole platform or module. It can be ignored.\r
120 genc      - Generate AutoGen.c, AutoGen.h and <ModuleName>.depex files only.\r
121 genmake   - Generate makefiles in addition to files generated by "genc" target.\r
122 clean     - Clean intermediate files\r
123 cleanall  - Clean all generated files and directories during build, except the\r
124             generated Makefile files (top level and module makefiles)\r
125 cleanlib  - Clean all generated files and directories during library build\r
126 run       - Launch NT32 shell (only valid for NT32 platform)\r
128 -------------------------------------------------------------------------------\r
129 Tools in Python\r
130 ---------------\r
132 * Run buld tool written in Python from source\r
133   The build tool written in Python can be executed from its source directly as\r
134   long as you have the Python interpreter (version 2.5) installed. The source\r
135   of Python code is locating at:\r
137     https://buildtools.tianocore.org/svn/buildtools/trunk/BaseTools/Source/Python\r
139   where:\r
141     build/build.py      - The entry tool of build tools\r
143   "build.py" steps:\r
144     1. Run "edksetup.bat"\r
145     2. set PYTHONPATH to the local directory of above source\r
146        (BaseTools/Source/Python)\r
147     3. Set ACTIVE_PLATFORM in WORKSPACE\Conf\r
148     4. Go to platform or module directory\r
149     5. Run "<python_interpreter.exe> <python_source_dir>/build/build.py" or\r
150        "<python_source_dir>/build/build.py" directly.\r
152 * Convert Python source to exe file\r
153   The tools written in Python can be coverted into executable program which can\r
154   be executed without Python interpreter. One of the conversion tools is called\r
155   cx_Freeze, available at: \r
157     http://sourceforge.net/projects/cx-freeze/\r
159   If you have installed cx_Freeze at c:\cx_Freeze-3.0.3. Use the following\r
160   command lines to convert MyBuild.py to a Windows executable.\r
162     set PYTHONPATH=<buildtools>\BaseTools\Source\Python\r
163     c:\cx_Freeze-3.0.3\FreezePython.exe --include-modules=encodings.cp437,encodings.gbk,encodings.utf_16,encodings.utf_8 --install-dir=.\mybuild MyBuild.py\r
165   The generated .exe files are put in "mybuild" subdirectory.\r