]> git.proxmox.com Git - mirror_edk2.git/blobdiff - QuarkPlatformPkg/Readme.md
MdePkg: introduce standalone MM entry point library implementation
[mirror_edk2.git] / QuarkPlatformPkg / Readme.md
index f925f9ef2766811fe970bacfe9fa541ab018cdeb..126de6937bb3bedd6240d7e88d9d56c005172944 100644 (file)
   - Install\r
 * ASL compiler: Available from http://www.acpica.org\r
   - Install into ```C:\ASL``` to match default tools_def.txt configuration.\r
+* Python 2.7: Available from http://www.python.org\r
 \r
 Create a new directory for an EDK II WORKSPACE.\r
 \r
 The code block below shows the GIT clone operations required to pull the EDK II\r
-source tree, the FatPkg sources, the pre-built versions of BaseTools as WIN32\r
-binaries, and the edk2-non-osi repository that provides a binary file for the\r
+source tree and the edk2-non-osi repository that provides a binary file for the\r
 Quark Remote Management Unit (RMU).\r
 \r
 Next it sets environment variables that must be set before running\r
@@ -60,6 +60,8 @@ the EDK II [Multiple Workspace](
 https://github.com/tianocore/tianocore.github.io/wiki/Multiple_Workspace)\r
 feature is used.\r
 \r
+Next, the EDK II BaseTools required to build firmware images are built.\r
+\r
 Next, the ```edksetup.bat``` file is run to complete the initialization of an\r
 EDK II build environment.  Two example build commands are shown.  The first one\r
 in ```QuarkPlatformPlg/Quark.dsc``` builds a full UEFI firmware image that is\r
@@ -69,16 +71,17 @@ image that is useful for initial power-on and debug of new features.
 \r
 ```cmd\r
 git clone https://github.com/tianocore/edk2.git\r
-git clone https://github.com/tianocore/edk2-FatPkg.git FatPkg\r
-git clone https://github.com/tianocore/edk2-BaseTools-win32.git\r
 git clone https://github.com/tianocore/edk2-non-osi.git\r
 \r
+set PYTHON_HOME=c:\Python27\r
 set WORKSPACE=%CD%\r
-set PACKAGES_PATH=%WORKSPACE%\edk2;%WORKSPACE%\edk2-non-osi\r
-set EDK_TOOLS_BIN=%WORKSPACE%\edk2-BaseTools-win32\r
+set PACKAGES_PATH=%WORKSPACE%\edk2;%WORKSPACE%\edk2-non-osi\Silicon\Intel\r
+set EDK_TOOLS_PATH=%WORKSPACE%\edk2\BaseTools\r
+cd %WORKSPACE%\edk2\r
 \r
-cd edk2\r
-edksetup.bat\r
+BaseTools\toolsetup.bat Rebuild\r
+\r
+edksetup.bat Rebuild\r
 \r
 build -a IA32 -t VS2015x86 -p QuarkPlatformPkg/Quark.dsc\r
 build -a IA32 -t VS2015x86 -p QuarkPlatformPkg/QuarkMin.dsc\r
@@ -91,12 +94,13 @@ build -a IA32 -t VS2015x86 -p QuarkPlatformPkg/QuarkMin.dsc
 * GIT client\r
 * GCC 4.9 compiler\r
 * ASL compiler: Available from http://www.acpica.org.\r
+* Python 2.7\r
 \r
 Create a new directory for an EDK II WORKSPACE.\r
 \r
 The code block below shows the GIT clone operations required to pull the EDK II\r
-source tree, the FatPkg sources, and the edk2-non-osi repository that provides a\r
-binary file for the Quark Remote Management Unit (RMU).\r
+source tree and the edk2-non-osi repository that provides a binary file for the\r
+Quark Remote Management Unit (RMU).\r
 \r
 Next it sets environment variables that must be set before running\r
 ```edksetup.bat```. Since content is being pulled from multiple repositories,\r
@@ -106,7 +110,7 @@ feature is used.
 \r
 Next, the EDK II BaseTools required to build firmware images are built.\r
 \r
-Next, the ```edksetup.bat``` file is run to complete the initialization of an\r
+Next, the ```edksetup.sh``` file is run to complete the initialization of an\r
 EDK II build environment.  Two example build commands are shown.  The first one\r
 in ```QuarkPlatformPlg/Quark.dsc``` builds a full UEFI firmware image that is\r
 able to boot the built-in UEFI Shell and Linux from a micro SD FLASH card.  The\r
@@ -115,17 +119,15 @@ image that is useful for initial power-on and debug of new features.
 \r
 ```sh\r
 git clone https://github.com/tianocore/edk2.git\r
-git clone https://github.com/tianocore/edk2-FatPkg.git FatPkg\r
 git clone https://github.com/tianocore/edk2-non-osi.git\r
 \r
 export WORKSPACE=$PWD\r
-export PACKAGES_PATH=$WORKSPACE/edk2:$WORKSPACE/edk2-non-osi\r
+export PACKAGES_PATH=$WORKSPACE/edk2:$WORKSPACE/edk2-non-osi/Silicon/Intel\r
 export EDK_TOOLS_PATH=$WORKSPACE/edk2/BaseTools\r
-\r
-make -C edk2/BaseTools\r
-\r
 cd $WORKSPACE/edk2\r
 \r
+make -C BaseTools\r
+\r
 . edksetup.sh BaseTools\r
 \r
 build -a IA32 -t GCC49 -p QuarkPlatformPkg/Quark.dsc\r
@@ -242,8 +244,7 @@ Enable UEFI Secure Boot features:
 \r
 Enable UEFI Secure Boot and Measured Boot using Atmel I2C TPM hardware device:\r
 \r
-```build -a IA32 -t VS2015x86 -p QuarkPlatformPkg/Quark.dsc -D UEFI_SECURE_BOOT\r
--D MEASURED_BOOT_ENABLE -D TPM_12_HARDWARE=ATMEL_I2C```\r
+```build -a IA32 -t VS2015x86 -p QuarkPlatformPkg/Quark.dsc -D UEFI_SECURE_BOOT -D MEASURED_BOOT_ENABLE -D TPM_12_HARDWARE=ATMEL_I2C```\r
 \r
 ## **FLASH Update using DediProg SF100**\r
 \r