Skip to content

Instantly share code, notes, and snippets.

@sostk
sostk / BuildGuide.txt
Created July 18, 2022 05:06 — forked from masemoel/BuildGuide.txt
How to build an A10+ ROM from scratch under Ubuntu 20.04 (or based) and higher
To build a A10+ (AOSP/LOS based) on Ubuntu 20.04+ (or distros based on it), there are four main steps:
(This guide is applicable for recoveries as well (TWRP, OFRP...))
Working on Android 9, 10, 11 and 12
#################################################################
# Step 1: Setup your environment #
#################################################################
****Setup Linux to build Android****
@sostk
sostk / proxy_nginx.sh
Created April 15, 2017 04:24 — forked from rdegges/proxy_nginx.sh
Create a HTTP proxy for jenkins using NGINX.
sudo aptitude -y install nginx
cd /etc/nginx/sites-available
sudo rm default
sudo cat > jenkins
upstream app_server {
server 127.0.0.1:8080 fail_timeout=0;
}
server {
listen 80;