-
Notifications
You must be signed in to change notification settings - Fork 200
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
One-off build run for 18.1 devices #738
Comments
List of devices to build for
The following listed at the linked sites do not require new builds:
|
There's an unofficial patch / fix: see this CDA post #!/bin/bash
cd frameworks/base
echo "cherry-picking signature spoofing fix for 18.1"
COMMIT=f3f5c2063007de9a8b746a8788f3bcab6b6ac261
git fetch "https://github.com/Lanchon/lineageos-18.1-android_frameworks_base" $COMMIT && git cherry-pick $COMMIT
cd ../..
We will need to do a 'git reset --hard` at some point too. Already done - see docker-lineage-cicd/src/legacy-build.sh Lines 217 to 226 in 3ede897
We can use this in a new The following #!/bin/bash
BRANCH="$1"
if [ "$BRANCH" = "lineage-18.1" ]; then
echo "cherry-picking signature spoofing fix for 18.1"
COMMIT=f3f5c2063007de9a8b746a8788f3bcab6b6ac261
cd frameworks/base && git fetch "https://github.com/Lanchon/lineageos-18.1-android_frameworks_base" $COMMIT && git cherry-pick $COMMIT
cd ../..
fi
|
|
Checked that the patch is in place for the second and subsequent devices in the build list: 👍
|
This cropped up in XDA Forums when someone asked about where to find an 18.1 build. https://xdaforums.com/t/lineageos-for-microg.3700997/post-89931584 I pointed them to the Internet Archive archive, but as was pointed out
We should include a build for 18.1 devices (and one 19.1 device,
monet
) in the February build run.To do
ORCreate a patch ourselvesbuildserv2
from 6th or 7th FebruaryThe text was updated successfully, but these errors were encountered: