The XDAndroid Project is no longer active.
This site provides archived information from while the project was under development. Some links may no longer function.

Difference between revisions of "Build Configuration"

From The XDAndroid Project
Jump to navigation Jump to search
[checked revision][checked revision]
m (Reverted edits by Ocyjytu (talk) to last revision by Stinebd)
(Update for Gingerbread changes.)
Line 1: Line 1:
With the XDAndroid source checked out, the build system must be configured to build an XDAndroid product for one of the [[Supported Devices|supported targets]]. Build system configuration is done via a single file in the root of the XDAndroid source tree whose name is <tt>buildspec.mk</tt>. The following configuration documentation applies to <tt>froyo</tt> and later branches.
+
With the XDAndroid source checked out, the build system must be configured to build an XDAndroid product for one of the [[Supported Devices|supported targets]]. Build system configuration is done via a single file in the root of the XDAndroid source tree whose name is <tt>buildspec.mk</tt>. The following configuration documentation applies to <tt>gingerbread</tt> and later branches.
  
 +
<div class="warning">'''NOTE''' For build configuration options for the <tt>froyo</tt> branch, please see [[Froyo Build Configuration]].</div>
 
<div class="warning">'''NOTE''' For build configuration options for the <tt>eclair</tt> branch, please see [[Eclair Build Configuration]].</div>
 
<div class="warning">'''NOTE''' For build configuration options for the <tt>eclair</tt> branch, please see [[Eclair Build Configuration]].</div>
  
Line 12: Line 13:
 
To instruct the build system to generate an XDAndroid system image, the following variables '''must''' be defined in <tt>buildspec.mk</tt>...
 
To instruct the build system to generate an XDAndroid system image, the following variables '''must''' be defined in <tt>buildspec.mk</tt>...
  
<syntaxhighlight lang="make"># Configure for an XDAndroid release engineering target.
+
<syntaxhighlight lang="make"># Configure for an XDAndroid user-debugging target.
 
TARGET_PRODUCT := full_msm
 
TARGET_PRODUCT := full_msm
TARGET_BUILD_VARIANT := eng
+
TARGET_BUILD_VARIANT := userdebug
 
TARGET_BUILD_TYPE := release
 
TARGET_BUILD_TYPE := release
 
TARGET_USERIMAGES_USE_EXT2 := true</syntaxhighlight>
 
TARGET_USERIMAGES_USE_EXT2 := true</syntaxhighlight>

Revision as of 03:41, 5 February 2011

With the XDAndroid source checked out, the build system must be configured to build an XDAndroid product for one of the supported targets. Build system configuration is done via a single file in the root of the XDAndroid source tree whose name is buildspec.mk. The following configuration documentation applies to gingerbread and later branches.

NOTE For build configuration options for the froyo branch, please see Froyo Build Configuration.
NOTE For build configuration options for the eclair branch, please see Eclair Build Configuration.

The Android build system will use buildspec.mk to pass a variety of variables to the make program which parses all of the Makefile recipes that comprise the build system. Most of the variables supported by buildspec.mk are self-explanatory, especially after becoming familiar with the basics of an Android system.

Build System Configuration

Simply create a blank plain-text file in the root of your XDAndroid source tree. Name the file buildspec.mk and edit it with your preferred text editor.

Variables are each defined on their own single line. Similar to other configuration files, anything which proceeds a pound sign (#) is ignored as a comment.

To instruct the build system to generate an XDAndroid system image, the following variables must be defined in buildspec.mk...

# Configure for an XDAndroid user-debugging target.
TARGET_PRODUCT := full_msm
TARGET_BUILD_VARIANT := userdebug
TARGET_BUILD_TYPE := release
TARGET_USERIMAGES_USE_EXT2 := true

The final line in the above example, which enables TARGET_USERIMAGES_USE_EXT2, will have the Android build system generate ext2 filesystems. On the live device, these filesystems are mounted writable. The XDAndroid boot process supports an ext2-based system partition image, named system.ext2 on the SD card. This is highly recommended.

After completing the build configuration and saving the buildspec.mk file, you can proceed with Building and Packaging the system.