Android 11.0.0 Release 38 (RQ3A.210605.005)

-----BEGIN PGP SIGNATURE-----
 
 iF0EABECAB0WIQRDQNE1cO+UXoOBCWTorT+BmrEOeAUCYL6VvQAKCRDorT+BmrEO
 eB0kAJ0WeUJn483xh4NqCPhHchYp6q++8gCeMpUwdY0AOhFeIKcQCLR2tj4dhXw=
 =3Bgx
 -----END PGP SIGNATURE-----
gpgsig -----BEGIN PGP SIGNATURE-----
 
 iQIzBAABCAAdFiEEA2skEMxbPHNb/U7LbZVRKTMRJykFAmC/YzsACgkQbZVRKTMR
 JylhhRAAgjsTHRV2OyIdE95JsHm4+i3ph4L8bn9v4p+se+mXNzxR5UdNKxqKNqRw
 MalqDlv/hpG4/3qbmvybr5EbIgHxVTuXt66fxp5pmTm2twhmPu46QDUTcjvxOaxu
 8RjiybEvMuQZaVPnfsH7kIYAaUP09XRT2+ZeEC6UE1ryFbb8Ls0lrZ5m1C/poS/q
 0eBlmi8N3cSyydwtJRyj72YMOOVFKn95bAYfoGu3ZK9XVKxfpV6Vr+8upRY55l85
 imoguGPRs2OdiPuUPOfrbxBji+PWJeh99KNyQiMAjzyxI77saGCWNQHPKt0o+YyG
 4+Yj39y/wDq1UDVzOTah5tMoOdh0sDsrh/Q6Tj1DmPf2HXsWUgiNjeKm7s4QAbIV
 zkKC2JNRtlkdisukxFPNDpHarjD6swpUmHpZwGfNIALvB5aN4XlQJTt8+ts2gLzv
 94O2hJvpfe4puDCem22qVV0Lv5QcTuL4rttIK+DFnbDaeAPSdCp+jU5JcLAAO5FU
 emnZPCq1Y6+3Z8Z7A4n1GquN+WviM5l63icp3GXxa4JoyamDb4sCXQXvRACpD5VT
 QjVE7SZs8UedRX8IGYvSEYXqa1JzYNVxibTu+vLL2cc/9qnE8o9cB43uesDQwx+R
 xl85ZTj+ZIQxQsW8q4W/WFNmgG4okWy8oIy8DqqX5UI/cteOa1Q=
 =ODLS
 -----END PGP SIGNATURE-----

Merge tag 'android-11.0.0_r38' into staging/lineage-18.1_merge-android-11.0.0_r38

Android 11.0.0 Release 38 (RQ3A.210605.005)

* tag 'android-11.0.0_r38':
  Version bump to RQ3A.210605.005 [core/build_id.mk]
  Version bump to RQ3A.210605.004 [core/build_id.mk]
  Version bump to RQ3A.210605.003 [core/build_id.mk]
  Version bump to RQ3A.210605.002 [core/build_id.mk]
  Update Security String to 2021-06-05
  Update Security String to 2021-05-01
  DO NOT MERGE Update Security String to 2021-05-05
  Version bump to RQ3A.210310.001 [core/build_id.mk]
  Update Security String to 2021-04-05
  Version bump to RQ3A.210129.002 [core/build_id.mk]
  DO NOT MERGE Update OWNERS for SPL changes to version_defaults.mk
  DO NOT MERGE Update OWNERS for SPL changes to version_defaults.mk
  Update Security String to 2021-03-01
  Update Security String to 2021-03-05
  Switch default execution strategy to racing for developer builds
  Use unified cas uploads / downloads
  Source rbesetup.sh from any location inside of a repo directory.
  Version bump to RQ3A.210106.001 [core/build_id.mk]

Conflicts:
	core/build_id.mk
	core/version_defaults.mk

Change-Id: I694da79574b0b096ed23ab286c766ac25b532e09
gugelfrei-debug
Kevin F. Haggerty 3 years ago
commit 907c8021c8

@ -18,4 +18,4 @@
# (like "CRB01"). It must be a single word, and is
# capitalized by convention.
BUILD_ID=RQ2A.210505.003
BUILD_ID=RQ3A.210605.005

@ -240,7 +240,7 @@ ifndef PLATFORM_SECURITY_PATCH
# It must be of the form "YYYY-MM-DD" on production devices.
# It must match one of the Android Security Patch Level strings of the Public Security Bulletins.
# If there is no $PLATFORM_SECURITY_PATCH set, keep it empty.
PLATFORM_SECURITY_PATCH := 2021-05-05
PLATFORM_SECURITY_PATCH := 2021-06-05
endif
.KATI_READONLY := PLATFORM_SECURITY_PATCH

@ -1,4 +1,31 @@
source build/envsetup.sh
function _source_env_setup_script() {
local -r ENV_SETUP_SCRIPT="build/make/envsetup.sh"
local -r TOP_DIR=$(
while [[ ! -f "${ENV_SETUP_SCRIPT}" ]] && [[ "${PWD}" != "/" ]]; do
\cd ..
done
if [[ -f "${ENV_SETUP_SCRIPT}" ]]; then
echo "$(PWD= /bin/pwd -P)"
fi
)
local -r FULL_PATH_ENV_SETUP_SCRIPT="${TOP_DIR}/${ENV_SETUP_SCRIPT}"
if [[ ! -f "${FULL_PATH_ENV_SETUP_SCRIPT}" ]]; then
echo "ERROR: Unable to source ${ENV_SETUP_SCRIPT}"
return 1
fi
# Need to change directory to the repo root so vendor scripts can be sourced
# as well.
local -r CUR_DIR=$PWD
\cd "${TOP_DIR}"
source "${FULL_PATH_ENV_SETUP_SCRIPT}"
\cd "${CUR_DIR}"
}
# This function needs to run first as the remaining defining functions may be
# using the envsetup.sh defined functions.
_source_env_setup_script || return
# This function prefixes the given command with appropriate variables needed
# for the build to be executed with RBE.
@ -28,7 +55,7 @@ function use_rbe() {
# ANDROID_ENABLE_METRICS_UPLOAD.
function _export_metrics_uploader() {
local uploader_path="$(gettop)/vendor/google/misc/metrics_uploader_prebuilt/metrics_uploader.sh"
if [ -x "${uploader_path}" ]; then
if [[ -x "${uploader_path}" ]]; then
export ANDROID_ENABLE_METRICS_UPLOAD="${uploader_path}"
fi
}
@ -37,7 +64,11 @@ function _export_metrics_uploader() {
# executed by RBE. This file should be sourced once per checkout of Android code.
function _set_rbe_vars() {
export USE_RBE="true"
export RBE_CXX_EXEC_STRATEGY="remote_local_fallback"
export RBE_CXX_EXEC_STRATEGY="racing"
export RBE_JAVAC_EXEC_STRATEGY="racing"
export RBE_R8_EXEC_STRATEGY="racing"
export RBE_D8_EXEC_STRATEGY="racing"
export RBE_use_unified_cas_ops="true"
export RBE_JAVAC=1
export RBE_R8=1
export RBE_D8=1

Loading…
Cancel
Save