This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
rm -rf .repo/local_manifests; \ | |
# Rom source repo | |
repo init -u https://github.com/Evolution-X/manifest -b bka --git-lfs; \ | |
echo "=================="; \ | |
echo "Repo init success"; \ | |
echo "=================="; \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Set username and email | |
USERNAME="Ansh" | |
EMAIL="singhansh64321@gmail.com" | |
# Configure Git | |
git config --global user.name "$USERNAME" | |
git config --global user.email "$EMAIL" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From f3921757e47a5bd53df91050952551549da15d40 Mon Sep 17 00:00:00 2001 | |
From: SamarV-121 <samar@samarv121.dev> | |
Date: Sat, 30 Mar 2024 10:58:48 +0530 | |
Subject: [PATCH] sepolicy: Exclude debug sepolicies on user build | |
Change-Id: I76a43816185c98e08e0439cd29d3f7a3325ca795 | |
--- | |
SEPolicy.mk | 18 +++++++++++++----- | |
bsp/debug/plat_private/system_server.te | 7 +++++++ | |
bsp/plat_private/system_server.te | 7 ------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Vendor | |
rm -rf vendor/realme/RM6785-common | |
if [ ! -d "vendor/realme/RM6785-common" ]; then | |
mkdir -p vendor/realme/RM6785-common | |
git clone https://github.com/PixelOS-Devices/vendor_realme_RM6785-common.git -b fourteen vendor/realme/RM6785-common | |
sed -i 's/RMX2001L1 RMX2151L1/& RM6785/' vendor/realme/RM6785-common/Android.mk | |
fi | |
# Kernel | |
rm -rf kernel/realme/mt6785 |