Skip to content

Commit

Permalink
Merge c1801fe on remote branch
Browse files Browse the repository at this point in the history
Change-Id: Icbe59491f71bbfe8bb2b973f9f03d66f9853ed05
  • Loading branch information
Linux Build Service Account committed Aug 24, 2017
2 parents e6c6087 + c1801fe commit dcbbfde
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 7 deletions.
2 changes: 1 addition & 1 deletion core/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2383,7 +2383,7 @@ endif
ifeq ($(PRODUCT_FULL_TREBLE),true)
@# Metadata for compatibility verification.
$(hide) cp $(BUILT_SYSTEM_MANIFEST) $(zip_root)/META/system_manifest.xml
$(hide) cp $(BUILT_SYSTEM_COMPATIBILITY_MATRIX) $(zip_root)/META/system_compatibility_matrix.xml
$(hide) cp $(BUILT_SYSTEM_COMPATIBILITY_MATRIX) $(zip_root)/META/system_matrix.xml
ifdef BUILT_VENDOR_MANIFEST
$(hide) cp $(BUILT_VENDOR_MANIFEST) $(zip_root)/META/vendor_manifest.xml
endif
Expand Down
22 changes: 17 additions & 5 deletions core/build_id.mk
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,21 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
# BUILD_ID is usually used to specify the branch name
# (like "MAIN") or a branch name and a release candidate
# (like "CRB01"). It must be a single word, and is
# capitalized by convention.
# BUILD_ID is of the form NPM1.YYMMDD.nnn
#
# N - dessert designator
# P - vertical, or category of release
# M1 - release abbreviation
# YY - year
# MM - month
# DD - day
# nnn - the patch sequence, starting at 001 for the initial snap
#
# OPAT.161221.002
#
# See also:
#
# https://docs.google.com/document/d/17eqVTxMc2do05T6qwt4eASVyxy8u3Cme4u4fVD5q0VM/view#
#

export BUILD_ID=OPR1.170623.011
export BUILD_ID=OPR6.170623.013
4 changes: 3 additions & 1 deletion core/soong_config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ $(SOONG_VARIABLES): FORCE
echo ''; \
echo ' "ArtUseReadBarrier": $(if $(filter false,$(PRODUCT_ART_USE_READ_BARRIER)),false,true),'; \
echo ''; \
echo ' "BtConfigIncludeDir": "$(BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR)"'; \
echo ' "BtConfigIncludeDir": "$(BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR)",'; \
echo ''; \
echo ' "BoardUsesQTIHardware": $(if $(BOARD_USES_QTI_HARDWARE),true,false)'; \
echo '}') > $(SOONG_VARIABLES_TMP); \
if ! cmp -s $(SOONG_VARIABLES_TMP) $(SOONG_VARIABLES); then \
mv $(SOONG_VARIABLES_TMP) $(SOONG_VARIABLES); \
Expand Down
1 change: 1 addition & 0 deletions target/product/treble_common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ PRODUCT_PACKAGES := \
android.hidl.manager@1.0 \
android.hidl.memory@1.0 \
android.hidl.token@1.0 \
android.system.net.netd@1.0 \
android.system.wifi.keystore@1.0 \

# VNDK:
Expand Down

0 comments on commit dcbbfde

Please sign in to comment.