]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Add support for a RELASE build
authorandrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524>
Thu, 28 Jan 2010 23:45:38 +0000 (23:45 +0000)
committerandrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524>
Thu, 28 Jan 2010 23:45:38 +0000 (23:45 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9858 6f19259b-4bc3-4df7-8a09-765794883524

BeagleBoardPkg/BeagleBoardPkg.dsc
BeagleBoardPkg/BeagleBoardPkg.fdf
BeagleBoardPkg/Sec/Sec.c
BeagleBoardPkg/build.sh

index ee23520ffb5344cc6b1a015e71e167751ce0599f..5d113465b713168708369ae202301492074af615 100644 (file)
 
 
 [LibraryClasses.common]
-!if TARGET_HACK == DEBUG
   DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
-!else
-  DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
-!endif
-
+#  DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
 
   ArmLib|ArmPkg/Library/ArmLib/ArmCortexA/ArmCortexArmLib.inf
   MemoryAllocationLib|MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf
   XCODE:*_*_ARM_ARCHCC_FLAGS     == -arch armv6 -march=armv6
   XCODE:*_*_ARM_ARCHASM_FLAGS    == -arch armv6
   XCODE:*_*_ARM_ARCHDLINK_FLAGS  == -arch armv6
+  XCODE:RELEASE_*_*_CC_FLAGS     = -DMDEPKG_NDEBUG 
 
-  RVCT:*_*_ARM_ARCHCC_FLAGS     == --cpu Cortex-A8
-  RVCT:*_*_ARM_ARCHASM_FLAGS    == --cpu Cortex-A8
+  RVCT:*_*_ARM_ARCHCC_FLAGS == --cpu Cortex-A8 
+  RVCT:RELEASE_*_*_CC_FLAGS = -DMDEPKG_NDEBUG 
 
 ################################################################################
 #
index d75a6a94e6f2120898f09eb7b439930b34ab76d8..d291894a10c2a039bfefbd4c6c011145ded97102 100644 (file)
@@ -70,8 +70,8 @@ FV = FVMAIN_COMPACT
 
 [FV.FvMain]
 BlockSize          = 0x40
-NumBlocks          = 0x9000
-FvAlignment        = 8         #FV alignment and FV attributes setting.
+NumBlocks          = 0         # This FV gets compressed so make it just big enough
+FvAlignment        = 8         # FV alignment and FV attributes setting.
 ERASE_POLARITY     = 1
 MEMORY_MAPPED      = TRUE
 STICKY_WRITE       = TRUE
@@ -88,6 +88,8 @@ READ_STATUS        = TRUE
 READ_LOCK_CAP      = TRUE
 READ_LOCK_STATUS   = TRUE
 
+  INF MdeModulePkg/Core/Dxe/DxeMain.inf 
+
   #
   # PI DXE Drivers producing Architectural Protocols (EFI Services) 
   #
@@ -194,7 +196,7 @@ READ_LOCK_CAP      = TRUE
 READ_LOCK_STATUS   = TRUE
 
   INF BeagleBoardPkg/Sec/Sec.inf
-  INF MdeModulePkg/Core/Dxe/DxeMain.inf 
+#  INF MdeModulePkg/Core/Dxe/DxeMain.inf 
 
   FILE FV_IMAGE = 9E21FD93-9C72-4c15-8C4B-E77F1DB2D792 {
     SECTION GUIDED EE4E5898-3914-4259-9D6E-DC7BD79403CF PROCESSING_REQUIRED = TRUE {
@@ -260,10 +262,8 @@ READ_LOCK_STATUS   = TRUE
 
 [Rule.Common.DXE_CORE]
   FILE DXE_CORE = $(NAMED_GUID) {
-    GUIDED EE4E5898-3914-4259-9D6E-DC7BD79403CF PROCESSING_REQUIRED = TRUE {
-      PE32     PE32           |.efi
-      UI       STRING="$(MODULE_NAME)" Optional
-    }
+    PE32     PE32           |.efi
+    UI       STRING="$(MODULE_NAME)" Optional
   }
 
 
index 537475204ca99728de6bb161e2266d5d93fa65ad..a87ff6d65dc64d1fed27ef2ef6b2bcb0f2fbfa6d 100755 (executable)
@@ -260,6 +260,8 @@ CEntryPoint (
   ExtractGuidedSectionLibConstructor();\r
   LzmaDecompressLibConstructor();\r
 \r
+  DecompressFirstFv ();\r
+\r
   // Load the DXE Core and transfer control to it\r
   LoadDxeCoreFromFv(NULL, 0);\r
   \r
index ba2d06c59aa49d7c2c2f422114cd8bd547a0baed..8eaa1dbdfd14192359a1da99e72d0dacd3073090 100755 (executable)
@@ -73,7 +73,15 @@ case `uname` in
       ;;
 esac
 
-BUILD_ROOT=$WORKSPACE/Build/BeagleBoard/DEBUG_"$TARGET_TOOLS"
+TARGET=DEBUG
+for arg in "$@"
+do
+  if [[ $arg == RELEASE ]]; then
+    TARGET=RELEASE
+  fi
+done
+
+BUILD_ROOT=$WORKSPACE/Build/BeagleBoard/"$TARGET"_"$TARGET_TOOLS"
 GENERATE_IMAGE=$WORKSPACE/BeagleBoardPkg/Tools/generate_image
 FLASH_BOOT=$BUILD_ROOT/FV/BeagleBoard_EFI_flashboot.fd
 
@@ -89,7 +97,7 @@ fi
 #
 # Build the edk2 BeagleBoard code
 #
-build -p $WORKSPACE/BeagleBoardPkg/BeagleBoardPkg.dsc -a ARM -t $TARGET_TOOLS $1 $2 $3 $4 $5 $6 $7 $8
+build -p $WORKSPACE/BeagleBoardPkg/BeagleBoardPkg.dsc -a ARM -t $TARGET_TOOLS -b $TARGET $1 $2 $3 $4 $5 $6 $7 $8
 
 for arg in "$@"
 do