From 08b66590013af3734214e09d599dad7954a61240 Mon Sep 17 00:00:00 2001 From: althafvly Date: Wed, 5 Mar 2025 11:42:35 +0530 Subject: [PATCH 1/4] apex: Update list for a15 --- src/apex.list | 7 +++++++ src/apex_apk.list | 3 +++ 2 files changed, 10 insertions(+) diff --git a/src/apex.list b/src/apex.list index 65a8672..bf13f93 100644 --- a/src/apex.list +++ b/src/apex.list @@ -2,6 +2,7 @@ com.android.adbd com.android.adservices com.android.adservices.api com.android.appsearch +com.android.appsearch.apk com.android.art com.android.bluetooth com.android.btservices @@ -13,9 +14,13 @@ com.android.conscrypt com.android.devicelock com.android.extservices com.android.graphics.pdf +com.android.hardware.authsecret com.android.hardware.biometrics.face.virtual com.android.hardware.biometrics.fingerprint.virtual +com.android.hardware.boot com.android.hardware.cas +com.android.hardware.neuralnetworks +com.android.hardware.rebootescrow com.android.hardware.wifi com.android.healthfitness com.android.hotspot2.osulogin @@ -27,9 +32,11 @@ com.android.mediaprovider com.android.nearby.halfsheet com.android.networkstack.tethering com.android.neuralnetworks +com.android.nfcservices com.android.ondevicepersonalization com.android.os.statsd com.android.permission +com.android.profiling com.android.resolv com.android.rkpd com.android.runtime diff --git a/src/apex_apk.list b/src/apex_apk.list index a770e69..f5cb6fc 100644 --- a/src/apex_apk.list +++ b/src/apex_apk.list @@ -1,5 +1,8 @@ AdServicesApk +FederatedCompute HalfSheetUX +HealthConnectBackupRestore +HealthConnectController OsuLogin SafetyCenterResources ServiceConnectivityResources -- GitLab From 757945b3ef308a1dd74fe39d038648b2c25a70df Mon Sep 17 00:00:00 2001 From: althafvly Date: Wed, 5 Mar 2025 12:38:41 +0530 Subject: [PATCH 2/4] docker: Add support for android 15 --- build-community.sh | 3 +++ src/build.sh | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/build-community.sh b/build-community.sh index 1b4ac01..34796c1 100755 --- a/build-community.sh +++ b/build-community.sh @@ -120,6 +120,9 @@ for branch in ${BRANCH_NAME//,/ }; do elif [[ "${BRANCH_NAME}" =~ $regex_part1"a14"$regex_part2 || "${BRANCH_NAME}" =~ "a14" ]]; then themuppets_branch="lineage-21.0" android_version="14" + elif [[ "${BRANCH_NAME}" =~ $regex_part1"a15"$regex_part2 || "${BRANCH_NAME}" =~ "a15" ]]; then + themuppets_branch="lineage-22.1" + android_version="15" else echo ">> [$(date)] Building branch $branch is not (yet) suppported" exit 1 diff --git a/src/build.sh b/src/build.sh index eca2ccb..a0ee4d2 100755 --- a/src/build.sh +++ b/src/build.sh @@ -91,7 +91,7 @@ exit_script() { sync_successful=true use_openjdk_from_ubuntu=false -branch_dir=$(sed -E 's/^v[0-9](\.[0-9]*){0,2}(-(beta|alpha|rc)(\.[0-9]*){0,1}){0,1}-(nougat|oreo|pie|q|r|s|t|u|a14)(-[a-zA-Z0-9_]*)*$/\5/' <<<"${BRANCH_NAME}") +branch_dir=$(sed -E 's/^v[0-9](\.[0-9]*){0,2}(-(beta|alpha|rc)(\.[0-9]*){0,1}){0,1}-(nougat|oreo|pie|q|r|s|t|u|a14|a15)(-[a-zA-Z0-9_]*)*$/\5/' <<<"${BRANCH_NAME}") branch_dir=${branch_dir^^} if [ -n "${BRANCH_NAME}" ] && [ -n "${DEVICE}" ]; then @@ -128,6 +128,9 @@ if [ -n "${BRANCH_NAME}" ] && [ -n "${DEVICE}" ]; then elif [[ "${BRANCH_NAME}" =~ $regex_part1"a14"$regex_part2 || "${BRANCH_NAME}" =~ "a14" ]]; then themuppets_branch="lineage-21.0" android_version="14" + elif [[ "${BRANCH_NAME}" =~ $regex_part1"a15"$regex_part2 || "${BRANCH_NAME}" =~ "a15" ]]; then + themuppets_branch="lineage-22.1" + android_version="15" else echo ">> [$(date)] Building branch $BRANCH_NAME is not (yet) supported" exit 1 -- GitLab From 824fcc3723a10fada8e9ed83ff2af24a48217861 Mon Sep 17 00:00:00 2001 From: althafvly Date: Wed, 5 Mar 2025 12:39:45 +0530 Subject: [PATCH 3/4] docker: Fix script format --- build-community.sh | 23 +++++++++++++---------- src/build.sh | 24 ++++++++++++------------ 2 files changed, 25 insertions(+), 22 deletions(-) diff --git a/build-community.sh b/build-community.sh index 34796c1..0f679b5 100755 --- a/build-community.sh +++ b/build-community.sh @@ -149,23 +149,26 @@ for branch in ${BRANCH_NAME//,/ }; do echo ">> [$(date)] (Re)initializing branch repository" | tee -a "$repo_log" if [ "$LOCAL_MIRROR" = true ]; then - repo_cmd="yes | repo init -u \"$REPO\" --reference \"$MIRROR_DIR\" -b \"$branch\"" + repo_cmd="yes | repo init -u \"$REPO\" --reference \"$MIRROR_DIR\" -b \"$branch\"" else - TAG_PREFIX="" + TAG_PREFIX="" - # Fetch all tags and check for an exact match - TAG_MATCH=$(curl -s --fail https://gitlab.e.foundation/api/v4/projects/659/repository/tags?search=${BRANCH_NAME} | jq -r ".[].name" | grep -Fx "${BRANCH_NAME}") + # Fetch all tags and check for an exact match + TAG_MATCH=$(curl -s --fail https://gitlab.e.foundation/api/v4/projects/659/repository/tags?search=${BRANCH_NAME} | jq -r ".[].name" | grep -Fx "${BRANCH_NAME}") - if [ -n "$TAG_MATCH" ]; then - echo ">> [$(date)] Branch name $branch is a tag on e/os/releases, prefixing with refs/tags/ for 'repo init'" | tee -a "$repo_log" - TAG_PREFIX="refs/tags/" - fi + if [ -n "$TAG_MATCH" ]; then + echo ">> [$(date)] Branch name $branch is a tag on e/os/releases, prefixing with refs/tags/ for 'repo init'" | tee -a "$repo_log" + TAG_PREFIX="refs/tags/" + fi - repo_cmd="yes | repo init -u \"$REPO\" -b \"${TAG_PREFIX}$branch\"" + repo_cmd="yes | repo init -u \"$REPO\" -b \"${TAG_PREFIX}$branch\"" fi echo ">> [$(date)] Running: $repo_cmd" | tee -a "$repo_log" - eval "$repo_cmd" &>>"$repo_log" || { echo ">> [$(date)] ERROR: Failed to initialize repository" | tee -a "$repo_log"; exit 1; } + eval "$repo_cmd" &>>"$repo_log" || { + echo ">> [$(date)] ERROR: Failed to initialize repository" | tee -a "$repo_log" + exit 1 + } # Copy local manifests to the appropriate folder in order take them into consideration echo ">> [$(date)] Copying '$LMANIFEST_DIR/*.xml' to '.repo/local_manifests/'" diff --git a/src/build.sh b/src/build.sh index a0ee4d2..2ded812 100755 --- a/src/build.sh +++ b/src/build.sh @@ -126,14 +126,14 @@ if [ -n "${BRANCH_NAME}" ] && [ -n "${DEVICE}" ]; then themuppets_branch="lineage-21.0" android_version="14" elif [[ "${BRANCH_NAME}" =~ $regex_part1"a14"$regex_part2 || "${BRANCH_NAME}" =~ "a14" ]]; then - themuppets_branch="lineage-21.0" - android_version="14" + themuppets_branch="lineage-21.0" + android_version="14" elif [[ "${BRANCH_NAME}" =~ $regex_part1"a15"$regex_part2 || "${BRANCH_NAME}" =~ "a15" ]]; then - themuppets_branch="lineage-22.1" - android_version="15" + themuppets_branch="lineage-22.1" + android_version="15" else - echo ">> [$(date)] Building branch $BRANCH_NAME is not (yet) supported" - exit 1 + echo ">> [$(date)] Building branch $BRANCH_NAME is not (yet) supported" + exit 1 fi if [[ "${KEEP_LOCAL_MANIFEST_BRANCH}" = true ]]; then @@ -171,8 +171,8 @@ if [ -n "${BRANCH_NAME}" ] && [ -n "${DEVICE}" ]; then TAG_MATCH=$(curl -s --fail https://gitlab.e.foundation/api/v4/projects/659/repository/tags | jq -r ".[].name" | grep -Fx "$BRANCH_NAME") if [ -n "$TAG_MATCH" ]; then - echo ">> [$(date)] Branch name $BRANCH_NAME is a tag on e/os/releases, prefixing with refs/tags/ for 'repo init'" - TAG_PREFIX="refs/tags/" + echo ">> [$(date)] Branch name $BRANCH_NAME is a tag on e/os/releases, prefixing with refs/tags/ for 'repo init'" + TAG_PREFIX="refs/tags/" fi if [ -n ${REPO_INIT_DEPTH} ] && [ ${REPO_INIT_DEPTH} -gt 0 ]; then @@ -499,10 +499,10 @@ if [ -n "${BRANCH_NAME}" ] && [ -n "${DEVICE}" ]; then if [ ! -d "$IMG_FIRMWARE_PATH" ]; then # If it doesn't exist, use an alternative path, used in lineage-21 - IMG_FIRMWARE_VENDOR_PATH=$(repo list | grep "proprietary_vendor_.*_${DEVICE}" | cut -d : -f 1 | xargs) - if [ -n "$IMG_FIRMWARE_VENDOR_PATH" ] && [ -d "$source_dir/$IMG_FIRMWARE_VENDOR_PATH" ]; then - IMG_FIRMWARE_PATH="$source_dir/$IMG_FIRMWARE_VENDOR_PATH/radio" - echo ">> INFO: \$IMG_FIRMWARE_PATH: $IMG_FIRMWARE_PATH" + IMG_FIRMWARE_VENDOR_PATH=$(repo list | grep "proprietary_vendor_.*_${DEVICE}" | cut -d : -f 1 | xargs) + if [ -n "$IMG_FIRMWARE_VENDOR_PATH" ] && [ -d "$source_dir/$IMG_FIRMWARE_VENDOR_PATH" ]; then + IMG_FIRMWARE_PATH="$source_dir/$IMG_FIRMWARE_VENDOR_PATH/radio" + echo ">> INFO: \$IMG_FIRMWARE_PATH: $IMG_FIRMWARE_PATH" fi fi -- GitLab From 1aadd78cd213c7312af51eb2bb81a30af8e1687b Mon Sep 17 00:00:00 2001 From: althafvly Date: Wed, 5 Mar 2025 12:44:10 +0530 Subject: [PATCH 4/4] script: Build release_type test quicker --- src/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build.sh b/src/build.sh index 2ded812..8e7289b 100755 --- a/src/build.sh +++ b/src/build.sh @@ -383,7 +383,7 @@ if [ -n "${BRANCH_NAME}" ] && [ -n "${DEVICE}" ]; then build_success=true fi fi - elif [ "$android_version_major" -lt "12" ]; then + elif [ "$android_version_major" -lt "12" ] || [ "${RELEASE_TYPE}" = "test" ]; then if [ "${BUILD_SUPER_IMAGE}" = true ]; then if breakfast_device && mka bacon superimage; then build_success=true -- GitLab