OSDN Git Service

android-x86/build.git
11 years agoMerge "Install a unified fstab in the emulator image" into jb-mr2-dev
Ken Sumrall [Tue, 5 Mar 2013 03:14:26 +0000 (03:14 +0000)]
Merge "Install a unified fstab in the emulator image" into jb-mr2-dev

11 years agoInstall a unified fstab in the emulator image
Ken Sumrall [Fri, 1 Mar 2013 03:19:10 +0000 (19:19 -0800)]
Install a unified fstab in the emulator image

Also, modify the sdk.mk file to undo an earlier change
to add the unified fstab there, and move the include
of the emulator.mk file to after PRODUCT_COPY_FILES
is initially defined.

Change-Id: I7318ebefa1b3043f32e99a9e278fe4667f760aa8

11 years agoam 564c2b3e: Reconcile with jb-mr1.1-release - do not merge
The Android Open Source Project [Tue, 5 Mar 2013 00:56:08 +0000 (00:56 +0000)]
am 564c2b3e: Reconcile with jb-mr1.1-release - do not merge

* commit '564c2b3e4da71cfe4f1a0c8e15e2c9cec2415eea':
  JDQ39B

11 years agoReconcile with jb-mr1.1-release - do not merge
The Android Open Source Project [Mon, 4 Mar 2013 19:14:54 +0000 (11:14 -0800)]
Reconcile with jb-mr1.1-release - do not merge

Change-Id: Ic2017881546bd6488432b9a87196f1c8eb6e5819

11 years agoJDQ39B
The Android Automerger [Mon, 4 Mar 2013 19:08:59 +0000 (11:08 -0800)]
JDQ39B

11 years agoMerge "Allow to call dist-for-goals multiple times for the same file" into jb-mr2-dev
Ying Wang [Sat, 2 Mar 2013 01:43:28 +0000 (01:43 +0000)]
Merge "Allow to call dist-for-goals multiple times for the same file" into jb-mr2-dev

11 years agoAllow to call dist-for-goals multiple times for the same file
Ying Wang [Sat, 2 Mar 2013 00:45:35 +0000 (16:45 -0800)]
Allow to call dist-for-goals multiple times for the same file

You can dist the same file for multiple goals in multiple calls to
dist-for-goals. The first call will establish the real copy rule, while
the rest call just establishes the goals' dependency on the dest file.
This enable uss to remove the bizarre $(if ..) enclosing the droid and
sdk dist while avoiding make's multiple rules warning.

Change-Id: I76475db76a9e6167e0e606dd582b54e80dfcdd22

11 years agoAdd pseudolanguage codes to l10n builds
Dave Langemak [Fri, 1 Mar 2013 22:10:40 +0000 (14:10 -0800)]
Add pseudolanguage codes to l10n builds
bug: 8299925

Change-Id: Id4bab811bc3f6660f4ce0a21afb689366d80d795

11 years agoam 14567bb0: am 08d56b4a: Merge "CTS: work around ClassLoader limitation"
Kenny Root [Thu, 28 Feb 2013 17:48:59 +0000 (17:48 +0000)]
am 14567bb0: am 08d56b4a: Merge "CTS: work around ClassLoader limitation"

* commit '14567bb00754405fac535bc8be8e46fa8abd7c82':
  CTS: work around ClassLoader limitation

11 years agoam 08d56b4a: Merge "CTS: work around ClassLoader limitation"
Kenny Root [Thu, 28 Feb 2013 17:47:35 +0000 (09:47 -0800)]
am 08d56b4a: Merge "CTS: work around ClassLoader limitation"

* commit '08d56b4a1049fe4b4d3a01e2087f371fdeefaf84':
  CTS: work around ClassLoader limitation

11 years agoMerge "CTS: work around ClassLoader limitation"
Kenny Root [Thu, 28 Feb 2013 17:23:54 +0000 (17:23 +0000)]
Merge "CTS: work around ClassLoader limitation"

11 years agoCTS: work around ClassLoader limitation
Kenny Root [Thu, 28 Feb 2013 00:55:56 +0000 (16:55 -0800)]
CTS: work around ClassLoader limitation

Trying to use reflection on classes loaded from a different ClassLoader
than the system one caused SecurityException since you can't load
certain packages.

Adding them to the boot classpath forces them to be in the same
ClassLoader.

Change-Id: Id518ab0a99da6defac525c0ad430a63f600ce85f

11 years agoMerge "Run e2fsck only when building images with the target files." into jb-mr2-dev
Ying Wang [Thu, 28 Feb 2013 00:46:07 +0000 (00:46 +0000)]
Merge "Run e2fsck only when building images with the target files." into jb-mr2-dev

11 years agoInstall a unified fstab for the sdk image
Ken Sumrall [Thu, 28 Feb 2013 00:20:56 +0000 (16:20 -0800)]
Install a unified fstab for the sdk image

Change-Id: I95ed5ee83783dfce110c1f07b187d4624be9a735

11 years agoFix function call syntax error.
Ying Wang [Wed, 27 Feb 2013 23:23:42 +0000 (15:23 -0800)]
Fix function call syntax error.

Change-Id: Id40e059ade0c24b62ac407192ed3a67398dfa083

11 years agoMerge "Switch target java library dependency file from javalib.jar to classes.jar...
Ying Wang [Wed, 27 Feb 2013 23:10:12 +0000 (23:10 +0000)]
Merge "Switch target java library dependency file from javalib.jar to classes.jar" into jb-mr2-dev

11 years agoRun e2fsck only when building images with the target files.
Ying Wang [Wed, 27 Feb 2013 21:54:02 +0000 (13:54 -0800)]
Run e2fsck only when building images with the target files.

With this change, e2fsck is run only when you build the update.zip file,
which is built when "dist" is among the make command.

Bug: 7591683
Change-Id: I446b71d5aa9295aff3af622f115175f769746615

11 years agoSwitch target java library dependency file from javalib.jar to classes.jar
Ying Wang [Wed, 27 Feb 2013 19:54:42 +0000 (11:54 -0800)]
Switch target java library dependency file from javalib.jar to classes.jar

Previously, any target Java code that depends on framework.jar has to
wait for the library's javalib.jar.
To build javalib.jar we have to run dx, which is quite slow.
Actually when code links against framework.jar, only classes.jar is
needed.
This improves the potential parallelism of the build system.

Change-Id: I82c5926ef282a3a6096bbf49b54ef4f2a0c2c0e7

11 years agoam e2f7bd46: am c148cca6: Merge "Specify -msse3 on host as on target."
Ian Rogers [Wed, 27 Feb 2013 19:03:54 +0000 (19:03 +0000)]
am e2f7bd46: am c148cca6: Merge "Specify -msse3 on host as on target."

* commit 'e2f7bd46fc7b9aa746ae46e551727c4db0356d37':
  Specify -msse3 on host as on target.

11 years agoam c148cca6: Merge "Specify -msse3 on host as on target."
Ian Rogers [Wed, 27 Feb 2013 19:02:42 +0000 (11:02 -0800)]
am c148cca6: Merge "Specify -msse3 on host as on target."

* commit 'c148cca6611c167115458453c250dd9e81b03dda':
  Specify -msse3 on host as on target.

11 years agoMerge "Reduce RS build verbosity." into jb-mr2-dev
Stephen Hines [Wed, 27 Feb 2013 18:56:24 +0000 (18:56 +0000)]
Merge "Reduce RS build verbosity." into jb-mr2-dev

11 years agoMerge "Specify -msse3 on host as on target."
Ian Rogers [Wed, 27 Feb 2013 18:15:49 +0000 (18:15 +0000)]
Merge "Specify -msse3 on host as on target."

11 years agoReduce RS build verbosity.
Stephen Hines [Wed, 27 Feb 2013 08:51:08 +0000 (00:51 -0800)]
Reduce RS build verbosity.

Change-Id: I9d04198ed1b9025abd60080c5ef23b3ce5ef9e22

11 years agoam 50882118: am d9876348: am 6fc990df: am c5998412: am f8333457: Revert "docs: move...
Scott Main [Wed, 27 Feb 2013 02:21:38 +0000 (02:21 +0000)]
am 50882118: am d9876348: am 6fc990df: am c5998412: am f8333457: Revert "docs: move loading of google ref into doc load event to prevent error during load"

* commit '5088211890511a4dff5d068f8481abc9680a1795':
  Revert "docs: move loading of google ref into doc load event to prevent error during load"

11 years agoam d9876348: am 6fc990df: am c5998412: am f8333457: Revert "docs: move loading of...
Scott Main [Wed, 27 Feb 2013 02:18:34 +0000 (18:18 -0800)]
am d9876348: am 6fc990df: am c5998412: am f8333457: Revert "docs: move loading of google ref into doc load event to prevent error during load"

* commit 'd9876348e1533dbb04779fa4b0b5ccd1b46747fa':
  Revert "docs: move loading of google ref into doc load event to prevent error during load"

11 years agoam 6fc990df: am c5998412: am f8333457: Revert "docs: move loading of google ref into...
Scott Main [Wed, 27 Feb 2013 02:16:09 +0000 (18:16 -0800)]
am 6fc990df: am c5998412: am f8333457: Revert "docs: move loading of google ref into doc load event to prevent error during load"

* commit '6fc990dfe16fb6336457ef0e02a9befd8525082b':
  Revert "docs: move loading of google ref into doc load event to prevent error during load"

11 years agoam c5998412: am f8333457: Revert "docs: move loading of google ref into doc load...
Scott Main [Wed, 27 Feb 2013 02:14:14 +0000 (18:14 -0800)]
am c5998412: am f8333457: Revert "docs: move loading of google ref into doc load event to prevent error during load"

* commit 'c5998412fda760deacd5a408759f52820735effe':
  Revert "docs: move loading of google ref into doc load event to prevent error during load"

11 years agoam f8333457: Revert "docs: move loading of google ref into doc load event to prevent...
Scott Main [Wed, 27 Feb 2013 02:12:22 +0000 (18:12 -0800)]
am f8333457: Revert "docs: move loading of google ref into doc load event to prevent error during load"

* commit 'f8333457a5ee9abd3d16c9c0abfe0e19e032801f':
  Revert "docs: move loading of google ref into doc load event to prevent error during load"

11 years agoRevert "docs: move loading of google ref into doc load event to prevent error during...
Scott Main [Wed, 27 Feb 2013 02:10:20 +0000 (18:10 -0800)]
Revert "docs: move loading of google ref into doc load event to prevent error during load"

This reverts commit 578d6446eb1714e17a5ccf55a69379f064ec549a.

11 years agoSpecify -msse3 on host as on target.
Ian Rogers [Tue, 26 Feb 2013 23:10:22 +0000 (15:10 -0800)]
Specify -msse3 on host as on target.

Make the host and the target x86 build more uniform by using the same machine flags.
Its unlikely Android has ever been built on a machine without SSE3 support.

Bug: 8068608
Change-Id: I19635528b61bf2c6faf02c2e575b1d9bf8025d3a

11 years agoam 7a689113: am 0670acc9: am 690dc39c: am 79d08b2c: am 578d6446: docs: move loading...
Scott Main [Tue, 26 Feb 2013 22:58:34 +0000 (22:58 +0000)]
am 7a689113: am 0670acc9: am 690dc39c: am 79d08b2c: am 578d6446: docs: move loading of google ref into doc load event to prevent error during load

* commit '7a68911347f18cbbf890bef7f92b28b2872e8e31':
  docs: move loading of google ref into doc load event to prevent error during load

11 years agoam 0670acc9: am 690dc39c: am 79d08b2c: am 578d6446: docs: move loading of google...
Scott Main [Tue, 26 Feb 2013 22:56:00 +0000 (14:56 -0800)]
am 0670acc9: am 690dc39c: am 79d08b2c: am 578d6446: docs: move loading of google ref into doc load event to prevent error during load

* commit '0670acc9c38b498c2d1f3abb44304d81d42308ca':
  docs: move loading of google ref into doc load event to prevent error during load

11 years agoam 690dc39c: am 79d08b2c: am 578d6446: docs: move loading of google ref into doc...
Scott Main [Tue, 26 Feb 2013 22:54:30 +0000 (14:54 -0800)]
am 690dc39c: am 79d08b2c: am 578d6446: docs: move loading of google ref into doc load event to prevent error during load

* commit '690dc39c46604194a4f189841566e8313125e745':
  docs: move loading of google ref into doc load event to prevent error during load

11 years agoam 79d08b2c: am 578d6446: docs: move loading of google ref into doc load event to...
Scott Main [Tue, 26 Feb 2013 22:53:26 +0000 (14:53 -0800)]
am 79d08b2c: am 578d6446: docs: move loading of google ref into doc load event to prevent error during load

* commit '79d08b2cc185c0141ee7ec534b219242c827387f':
  docs: move loading of google ref into doc load event to prevent error during load

11 years agoam 578d6446: docs: move loading of google ref into doc load event to prevent error...
Scott Main [Tue, 26 Feb 2013 22:51:06 +0000 (14:51 -0800)]
am 578d6446: docs: move loading of google ref into doc load event to prevent error during load

* commit '578d6446eb1714e17a5ccf55a69379f064ec549a':
  docs: move loading of google ref into doc load event to prevent error during load

11 years agodocs: move loading of google ref into doc load event to prevent error during load
Scott Main [Tue, 26 Feb 2013 22:46:12 +0000 (14:46 -0800)]
docs: move loading of google ref into doc load event to prevent error during load

Change-Id: Ibe825c25e19f136b2cd58e8a096d13904720e3d2

11 years agoam bf13b892: am 8a0dc8e1: am ee98d0ed: (-s ours) am 53ed93f3: (-s ours) Merge from...
Jean-Baptiste Queru [Tue, 26 Feb 2013 22:43:15 +0000 (22:43 +0000)]
am bf13b892: am 8a0dc8e1: am ee98d0ed: (-s ours) am 53ed93f3: (-s ours) Merge from jb-mr1-dev - do not merge

* commit 'bf13b8923b7fad0d37b2dcccf2d4dc6b0d4ffff4':

11 years agoam 8a0dc8e1: am ee98d0ed: (-s ours) am 53ed93f3: (-s ours) Merge from jb-mr1-dev...
Jean-Baptiste Queru [Tue, 26 Feb 2013 22:30:41 +0000 (14:30 -0800)]
am 8a0dc8e1: am ee98d0ed: (-s ours) am 53ed93f3: (-s ours) Merge from jb-mr1-dev - do not merge

* commit '8a0dc8e13891678151d8e314a0259666835fed43':

11 years agoam ee98d0ed: (-s ours) am 53ed93f3: (-s ours) Merge from jb-mr1-dev - do not merge
Jean-Baptiste Queru [Tue, 26 Feb 2013 22:29:17 +0000 (14:29 -0800)]
am ee98d0ed: (-s ours) am 53ed93f3: (-s ours) Merge from jb-mr1-dev - do not merge

* commit 'ee98d0ed53aeffac2b1d1be2b24bb78f282af0b2':
  Drop official SDK 17
  JOP40G

11 years agoam 53ed93f3: (-s ours) Merge from jb-mr1-dev - do not merge
Jean-Baptiste Queru [Tue, 26 Feb 2013 22:28:07 +0000 (14:28 -0800)]
am 53ed93f3: (-s ours) Merge from jb-mr1-dev - do not merge

* commit '53ed93f3c47c454f14d1218e4b1b2cfab5308e43':
  Drop official SDK 17
  JOP40G

11 years agoMerge from jb-mr1-dev - do not merge
Jean-Baptiste Queru [Tue, 26 Feb 2013 22:20:43 +0000 (14:20 -0800)]
Merge from jb-mr1-dev - do not merge

11 years agoReconcile with jb-mr1-release - do not merge
Jean-Baptiste Queru [Tue, 26 Feb 2013 22:02:57 +0000 (14:02 -0800)]
Reconcile with jb-mr1-release - do not merge

11 years agoam 02f3e81e: am fb247b7e: am 386cbaeb: am 9f2971d1: docs: fix suggestions due to...
Scott Main [Tue, 26 Feb 2013 21:18:52 +0000 (21:18 +0000)]
am 02f3e81e: am fb247b7e: am 386cbaeb: am 9f2971d1: docs: fix suggestions due to file name change for js files

* commit '02f3e81e9ee93848d9805222d79a4a76ea2e898a':
  docs: fix suggestions due to file name change for js files

11 years agoam fb247b7e: am 386cbaeb: am 9f2971d1: docs: fix suggestions due to file name change...
Scott Main [Tue, 26 Feb 2013 21:16:22 +0000 (13:16 -0800)]
am fb247b7e: am 386cbaeb: am 9f2971d1: docs: fix suggestions due to file name change for js files

* commit 'fb247b7e5c1067038518e52aa62a1cbb54ac6fde':
  docs: fix suggestions due to file name change for js files

11 years agoam 386cbaeb: am 9f2971d1: docs: fix suggestions due to file name change for js files
Scott Main [Tue, 26 Feb 2013 21:13:44 +0000 (13:13 -0800)]
am 386cbaeb: am 9f2971d1: docs: fix suggestions due to file name change for js files

* commit '386cbaeb90fef0ea90695fac8faa407fbffa356a':
  docs: fix suggestions due to file name change for js files

11 years agoam 9f2971d1: docs: fix suggestions due to file name change for js files
Scott Main [Tue, 26 Feb 2013 21:10:04 +0000 (13:10 -0800)]
am 9f2971d1: docs: fix suggestions due to file name change for js files

* commit '9f2971d1f36e0bffd79033e946ff1378e6ceb309':
  docs: fix suggestions due to file name change for js files

11 years agodocs: fix suggestions due to file name change for js files
Scott Main [Tue, 26 Feb 2013 21:07:41 +0000 (13:07 -0800)]
docs: fix suggestions due to file name change for js files

Change-Id: I4037c80f79f37f7a80d0977b4e07f992e3de61e1

11 years agoam 70887ad4: am 2e639566: am 8429876f: am 7e447edf: docs: update search suggest with...
Scott Main [Tue, 26 Feb 2013 20:40:58 +0000 (20:40 +0000)]
am 70887ad4: am 2e639566: am 8429876f: am 7e447edf: docs: update search suggest with google services apis including some optimizations for loading javascript resources

* commit '70887ad43cb1dcdc3527a91b31e875964191edda':
  docs: update search suggest with google services apis including some optimizations for loading javascript resources

11 years agoam 2e639566: am 8429876f: am 7e447edf: docs: update search suggest with google servic...
Scott Main [Tue, 26 Feb 2013 19:27:37 +0000 (11:27 -0800)]
am 2e639566: am 8429876f: am 7e447edf: docs: update search suggest with google services apis including some optimizations for loading javascript resources

* commit '2e639566471841811ad29cd13a1f029d15b0dd85':
  docs: update search suggest with google services apis including some optimizations for loading javascript resources

11 years agoam 8429876f: am 7e447edf: docs: update search suggest with google services apis inclu...
Scott Main [Tue, 26 Feb 2013 19:25:22 +0000 (11:25 -0800)]
am 8429876f: am 7e447edf: docs: update search suggest with google services apis including some optimizations for loading javascript resources

* commit '8429876f53cbe617ea36d80a97454146f4b4b746':
  docs: update search suggest with google services apis including some optimizations for loading javascript resources

11 years agoam 7e447edf: docs: update search suggest with google services apis including some...
Scott Main [Tue, 26 Feb 2013 19:21:21 +0000 (11:21 -0800)]
am 7e447edf: docs: update search suggest with google services apis including some optimizations for loading javascript resources

* commit '7e447edffa935a3c94978304521099b9ac43b53d':
  docs: update search suggest with google services apis including some optimizations for loading javascript resources

11 years agodocs: update search suggest with google services apis
Scott Main [Wed, 20 Feb 2013 01:22:37 +0000 (17:22 -0800)]
docs: update search suggest with google services apis
including some optimizations for loading javascript resources

Change-Id: Idfea12bbb70a24a7853d997e8376e3db50e56760

11 years agoMerge "Use $(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES" into jb-mr2-dev
Ying Wang [Tue, 26 Feb 2013 02:13:23 +0000 (02:13 +0000)]
Merge "Use $(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES" into jb-mr2-dev

11 years agoUse $(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES
Ying Wang [Tue, 26 Feb 2013 02:12:11 +0000 (18:12 -0800)]
Use $(my_prefix)DEPENDENCIES_ON_SHARED_LIBRARIES

To disentangle the host/target shared library dependencies.

Change-Id: I3122b370a7c24425861ab6dba91e6d8d84b27249

11 years agoam 31428917: am 93cdbd0b: Merge "Run zipalign after classes.dex is removed from the...
Ying Wang [Tue, 26 Feb 2013 01:50:53 +0000 (01:50 +0000)]
am 31428917: am 93cdbd0b: Merge "Run zipalign after classes.dex is removed from the apk"

* commit '31428917bc781bbd802048c574488a9e9437c830':
  Run zipalign after classes.dex is removed from the apk

11 years agoam 93cdbd0b: Merge "Run zipalign after classes.dex is removed from the apk"
Ying Wang [Tue, 26 Feb 2013 01:49:28 +0000 (17:49 -0800)]
am 93cdbd0b: Merge "Run zipalign after classes.dex is removed from the apk"

* commit '93cdbd0b81e96649ebb789710429388c054bc377':
  Run zipalign after classes.dex is removed from the apk

11 years agoRun zipalign after classes.dex is removed from the apk
Ying Wang [Tue, 26 Feb 2013 00:02:42 +0000 (16:02 -0800)]
Run zipalign after classes.dex is removed from the apk

If LOCAL_DEX_PREOPT is enabled.

Change-Id: Ie2a706fbb77bc31c9fdb01c8435819c5de97ea28

11 years agoMerge "Run zipalign after classes.dex is removed from the apk"
Ying Wang [Tue, 26 Feb 2013 00:51:10 +0000 (00:51 +0000)]
Merge "Run zipalign after classes.dex is removed from the apk"

11 years agoMerge "Build rs_compatibility_jni_libs into product-specific dir" into jb-mr2-dev
Ying Wang [Tue, 26 Feb 2013 00:19:04 +0000 (00:19 +0000)]
Merge "Build rs_compatibility_jni_libs into product-specific dir" into jb-mr2-dev

11 years agoBuild rs_compatibility_jni_libs into product-specific dir
Ying Wang [Tue, 26 Feb 2013 00:06:42 +0000 (16:06 -0800)]
Build rs_compatibility_jni_libs into product-specific dir

They can't be shared across products.

Change-Id: I2e2b9126f2e78eb28866978d58cf6eb8c52f3d09

11 years agoRun zipalign after classes.dex is removed from the apk
Ying Wang [Tue, 26 Feb 2013 00:02:42 +0000 (16:02 -0800)]
Run zipalign after classes.dex is removed from the apk

If LOCAL_DEX_PREOPT is enabled.

Change-Id: Ie2a706fbb77bc31c9fdb01c8435819c5de97ea28

11 years agoam 757e212c: am 0426da29: Merge "Fixed error message for using OpenJDK."
Jean-Baptiste Queru [Mon, 25 Feb 2013 21:21:03 +0000 (21:21 +0000)]
am 757e212c: am 0426da29: Merge "Fixed error message for using OpenJDK."

* commit '757e212ca2eb5584efb1631c3b26241ffb06e3c6':
  Fixed error message for using OpenJDK.

11 years agoam 0426da29: Merge "Fixed error message for using OpenJDK."
Jean-Baptiste Queru [Mon, 25 Feb 2013 21:18:26 +0000 (13:18 -0800)]
am 0426da29: Merge "Fixed error message for using OpenJDK."

* commit '0426da292cc7cf4b7889e6105c8ef8aa9cee4ce3':
  Fixed error message for using OpenJDK.

11 years agoMerge "Fixed error message for using OpenJDK."
Jean-Baptiste Queru [Mon, 25 Feb 2013 21:01:48 +0000 (21:01 +0000)]
Merge "Fixed error message for using OpenJDK."

11 years agoFixed error message for using OpenJDK.
Tim Roes [Sat, 23 Feb 2013 19:25:00 +0000 (20:25 +0100)]
Fixed error message for using OpenJDK.

Output a meaningful error message, when OpenJDK is detected
instead of giving the "wrong java version" output.
That output confused several users (from experiences in IRC)
since it gives you an output like "You are using java
version 1.6.0, right version would be Java SE 1.6".

Change-Id: I31ceeb03f1f98524b2b7de9b8be45231985fdb9e
Signed-off-by: Tim Roes <tim.roes88@googlemail.com>
11 years agoam 89fbf2e2: am 3a588682: am 8d27d6d3: am 44281a1f: Add unified fstab support to...
Ken Sumrall [Sat, 23 Feb 2013 08:58:55 +0000 (00:58 -0800)]
am 89fbf2e2: am 3a588682: am 8d27d6d3: am 44281a1f: Add unified fstab support to release tools

* commit '89fbf2e2acfa5ad94308876abd86a14194fd02c1':
  Add unified fstab support to release tools

11 years agoam 3a588682: am 8d27d6d3: am 44281a1f: Add unified fstab support to release tools
Ken Sumrall [Sat, 23 Feb 2013 08:55:23 +0000 (00:55 -0800)]
am 3a588682: am 8d27d6d3: am 44281a1f: Add unified fstab support to release tools

* commit '3a58868258aea60d17abe7e4169a3a64bf1a0d21':
  Add unified fstab support to release tools

11 years agoam 8d27d6d3: am 44281a1f: Add unified fstab support to release tools
Ken Sumrall [Sat, 23 Feb 2013 08:53:10 +0000 (00:53 -0800)]
am 8d27d6d3: am 44281a1f: Add unified fstab support to release tools

* commit '8d27d6d378fffba4c4254ccad6a1872692839a8c':
  Add unified fstab support to release tools

11 years agoam 44281a1f: Add unified fstab support to release tools
Ken Sumrall [Sat, 23 Feb 2013 08:49:39 +0000 (00:49 -0800)]
am 44281a1f: Add unified fstab support to release tools

* commit '44281a1f3ec99d650595b01b34185e1ffb129c6f':
  Add unified fstab support to release tools

11 years agoam 3346da0a: am 33b190f6: Merge "build: update fs_config calls for capabilities change."
Nick Kralevich [Sat, 23 Feb 2013 02:31:43 +0000 (18:31 -0800)]
am 3346da0a: am 33b190f6: Merge "build: update fs_config calls for capabilities change."

* commit '3346da0a93f60a7039581e48182be347dcceabec':
  build: update fs_config calls for capabilities change.

11 years agoam 33b190f6: Merge "build: update fs_config calls for capabilities change."
Nick Kralevich [Sat, 23 Feb 2013 02:28:13 +0000 (18:28 -0800)]
am 33b190f6: Merge "build: update fs_config calls for capabilities change."

* commit '33b190f6c6653b3c3493c725a96ff340c4466604':
  build: update fs_config calls for capabilities change.

11 years agoMerge "Don't run cleanspecs if you are using mm/mmm."
Ying Wang [Sat, 23 Feb 2013 02:19:49 +0000 (02:19 +0000)]
Merge "Don't run cleanspecs if you are using mm/mmm."

11 years agoDon't run cleanspecs if you are using mm/mmm.
Ying Wang [Sat, 23 Feb 2013 02:15:29 +0000 (18:15 -0800)]
Don't run cleanspecs if you are using mm/mmm.

There is lurky bug in the previous logic I believe:
in rare cases, people saw almost all cleansteps rerun.
Anyway, it's very rare that you need to run cleansteps when you run mm/mmm.

Change-Id: I42e84b3bf01590712ba1b167fe9a500f4ae1ddde

11 years agoMerge "build: update fs_config calls for capabilities change."
Nick Kralevich [Sat, 23 Feb 2013 02:04:55 +0000 (02:04 +0000)]
Merge "build: update fs_config calls for capabilities change."

11 years agoMerge "Adding TARGET_CPU_VARIANT to config file."
Christopher Ferris [Sat, 23 Feb 2013 01:33:52 +0000 (01:33 +0000)]
Merge "Adding TARGET_CPU_VARIANT to config file."

11 years agoAdding TARGET_CPU_VARIANT to config file.
Christopher Ferris [Sat, 23 Feb 2013 01:24:25 +0000 (17:24 -0800)]
Adding TARGET_CPU_VARIANT to config file.

Adding this since all arm builds will require TARGET_CPU_VARIANT
to be set to a valid value in the near future.

Bug: 8005082
Change-Id: I5b945a36c10e0095bccbe453f7652da08ebc6162

11 years agoAdd unified fstab support to release tools
Ken Sumrall [Wed, 20 Feb 2013 01:35:29 +0000 (17:35 -0800)]
Add unified fstab support to release tools

Update the release tools to be able to handle the new unified fstab.

Change-Id: Id9d1810c89aba415e83ae2fc586520f148ec73ef

11 years agoMerge "Untwist the target/host shared library dependencies."
Ying Wang [Fri, 22 Feb 2013 23:27:54 +0000 (23:27 +0000)]
Merge "Untwist the target/host shared library dependencies."

11 years agoUntwist the target/host shared library dependencies.
Ying Wang [Fri, 22 Feb 2013 22:32:30 +0000 (14:32 -0800)]
Untwist the target/host shared library dependencies.

Before this, if there are duplicate module names in both the host and
target spaces, LOCAL_SHARED_LIBRARIES results in mixed dependencies.

Bug: 7026946
Change-Id: I5407e3d078a8903c94978cc6d3e256851c52340f

11 years agoam 33b8ce1b: (-s ours) Reconcile with jb-mr1-release - do not merge
The Android Open Source Project [Fri, 22 Feb 2013 21:42:02 +0000 (13:42 -0800)]
am 33b8ce1b: (-s ours) Reconcile with jb-mr1-release - do not merge

* commit '33b8ce1bfd7f8e70e28859951cc4fc48c31d671a':
  Drop official SDK 17
  JOP40G

11 years agoReconcile with jb-mr1-release - do not merge
The Android Open Source Project [Fri, 22 Feb 2013 21:39:36 +0000 (13:39 -0800)]
Reconcile with jb-mr1-release - do not merge

Change-Id: I652e19ace85b7b2be9c723b5ce1e7f36f7ae963f

11 years agoMerge "Revert "Remove ping.""
Geremy Condra [Fri, 22 Feb 2013 19:41:02 +0000 (19:41 +0000)]
Merge "Revert "Remove ping.""

11 years agoRevert "Remove ping."
Geremy Condra [Fri, 22 Feb 2013 19:37:38 +0000 (19:37 +0000)]
Revert "Remove ping."

This reverts commit 68007028fd6a8a27ff1bee05679862ebc7dc9051

Change-Id: I07ff0d756dff12472633e535c51a29b9062cc3fc

11 years agoresolved conflicts for merge of 40ab92d0 to master
Ying Wang [Fri, 22 Feb 2013 19:02:03 +0000 (11:02 -0800)]
resolved conflicts for merge of 40ab92d0 to master

Change-Id: I400c1655c57237687a21a017b9c2065d166e3097

11 years agoam 5cfe1c55: am 4703b491: Merge "We shouldn\'t use temporary variable in the build...
Ying Wang [Fri, 22 Feb 2013 18:52:49 +0000 (10:52 -0800)]
am 5cfe1c55: am 4703b491: Merge "We shouldn\'t use temporary variable in the build recipe."

* commit '5cfe1c55c70b69105c78c4ebc49e09ab3fa3d652':
  We shouldn't use temporary variable in the build recipe.

11 years agoam b303d5d7: Merge "[MIPS] Update build rules"
Ying Wang [Fri, 22 Feb 2013 18:50:21 +0000 (10:50 -0800)]
am b303d5d7: Merge "[MIPS] Update build rules"

* commit 'b303d5d7d461e7f9eca3fc058c6eed69bfed4094':
  [MIPS] Update build rules

11 years agoam 4703b491: Merge "We shouldn\'t use temporary variable in the build recipe."
Ying Wang [Fri, 22 Feb 2013 18:50:21 +0000 (10:50 -0800)]
am 4703b491: Merge "We shouldn\'t use temporary variable in the build recipe."

* commit '4703b491d73938f7861b874a5212b2214a74e988':
  We shouldn't use temporary variable in the build recipe.

11 years agoMerge "[MIPS] Update build rules"
Ying Wang [Fri, 22 Feb 2013 18:03:15 +0000 (18:03 +0000)]
Merge "[MIPS] Update build rules"

11 years agoMerge "We shouldn't use temporary variable in the build recipe."
Ying Wang [Fri, 22 Feb 2013 18:02:04 +0000 (18:02 +0000)]
Merge "We shouldn't use temporary variable in the build recipe."

11 years agoWe shouldn't use temporary variable in the build recipe.
Ying Wang [Fri, 22 Feb 2013 17:59:17 +0000 (09:59 -0800)]
We shouldn't use temporary variable in the build recipe.

Use $@ instead.

Change-Id: Ida0960a453b3701383a31f698c3163a297c4bce5

11 years agoMerge "We shouldn't use temporary variable in the build recipe."
Ying Wang [Fri, 22 Feb 2013 18:00:56 +0000 (18:00 +0000)]
Merge "We shouldn't use temporary variable in the build recipe."

11 years agoWe shouldn't use temporary variable in the build recipe.
Ying Wang [Fri, 22 Feb 2013 17:59:17 +0000 (09:59 -0800)]
We shouldn't use temporary variable in the build recipe.

Use $@ instead.

Change-Id: Ida0960a453b3701383a31f698c3163a297c4bce5

11 years agoMerge "Start producing target files using the unified fstab."
Ken Sumrall [Fri, 22 Feb 2013 06:23:02 +0000 (06:23 +0000)]
Merge "Start producing target files using the unified fstab."

11 years agoMerge "Support for ANDROID_BUILD_EVERYTHING_BY_DEFAULT"
Ying Wang [Fri, 22 Feb 2013 02:43:26 +0000 (02:43 +0000)]
Merge "Support for ANDROID_BUILD_EVERYTHING_BY_DEFAULT"

11 years agoSupport for ANDROID_BUILD_EVERYTHING_BY_DEFAULT
Ying Wang [Fri, 22 Feb 2013 02:41:51 +0000 (18:41 -0800)]
Support for ANDROID_BUILD_EVERYTHING_BY_DEFAULT

Set ANDROID_BUILD_EVERYTHING_BY_DEFAULT to true to build everything by
default. You can set it in your .bashrc or buildspec.mk.

Change-Id: I0bc2461d0e17c63a6f1c439cdfaaa94e36483a02

11 years agoMerge "Add unified fstab support to release tools"
Ken Sumrall [Fri, 22 Feb 2013 01:04:41 +0000 (01:04 +0000)]
Merge "Add unified fstab support to release tools"

11 years agoStart producing target files using the unified fstab.
Ken Sumrall [Fri, 22 Feb 2013 00:27:25 +0000 (16:27 -0800)]
Start producing target files using the unified fstab.

Change-Id: I6d9783fba3fcb4617323071bf924f50b66ad6935

11 years agoAdd unified fstab support to release tools
Ken Sumrall [Wed, 20 Feb 2013 01:35:29 +0000 (17:35 -0800)]
Add unified fstab support to release tools

Update the release tools to be able to handle the new unified fstab.

Change-Id: Id9d1810c89aba415e83ae2fc586520f148ec73ef

11 years agoam 540bad2a: am 10bbe830: am 121a4a3e: am d6cb8fac: docs: fix padding for left-figure...
Scott Main [Thu, 21 Feb 2013 23:20:07 +0000 (15:20 -0800)]
am 540bad2a: am 10bbe830: am 121a4a3e: am d6cb8fac: docs: fix padding for left-figure class

* commit '540bad2add395bf0ba67c31609cb91024e66c551':
  docs: fix padding for left-figure class

11 years agoam 3c205c4f: am 4edc153f: am 245a4f64: am 0e69c3e4: Merge "docs: add image frame...
Scott Main [Thu, 21 Feb 2013 23:20:06 +0000 (15:20 -0800)]
am 3c205c4f: am 4edc153f: am 245a4f64: am 0e69c3e4: Merge "docs: add image frame style and left-float figure box" into jb-mr1-dev

* commit '3c205c4fef400c6fce60d9d1f425491a0b5ea3c5':
  docs: add image frame style and left-float figure box