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
<?xml version="1.0" encoding="UTF-8"?> | |
<manifest> | |
<project path="device/google/raviole" remote="github" name="retrozenith-development/android_device_google_raviole" /> | |
<project path="device/google/gs101" remote="github" name="retrozenith-development/android_device_google_gs101" /> | |
<project path="device/google/gs-common" remote="github" name="retrozenith-development/android_device_google_gs-common" /> | |
<project path="device/google/oriole" remote="github" name="LineageOS/android_device_google_oriole" /> | |
<project path="device/google/raven" remote="github" name="LineageOS/android_device_google_raven" /> | |
<project path="device/google/raviole-kernels/6.1" remote="aosp-raviole" name="device/google/raviole-kernels/6.1" clone-depth="1" /> | |
<project path="vendor/google/raven" remote="github" name="retrozenith-development/proprietary_vendor_google_raven" /> | |
<project path="vendor/google/oriole" remote="github" name="retrozenith-development/proprietary_vendor_google_oriole" /> |
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
usermod -aG admin |
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 | |
# Define repositories and target paths | |
declare -A repos=( | |
# Pixel 6/A/PRO (GS101) | |
["https://github.com/LineageOS/android_device_google_gs101"]="device/google/gs101" | |
["https://github.com/LineageOS/android_device_google_raviole"]="device/google/raviole" | |
["https://github.com/LineageOS/android_device_google_gs-common"]="device/google/gs-common" | |
["https://github.com/LineageOS/android_device_google_oriole"]="device/google/oriole" | |
["https://github.com/LineageOS/android_device_google_raven"]="device/google/raven" |
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
#!/usr/bin/env bash | |
# | |
# Copyright (C) 2024 ata-kaner | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, |
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 | |
# Kernel: mkbootimgs args | |
BOARD_DTB_OFFSET=0x01F00000 | |
BOARD_KERNEL_BASE=0x00000000 | |
BOARD_KERNEL_OFFSET=0x00008000 | |
BOARD_KERNEL_PAGESIZE=4096 | |
BOARD_KERNEL_TAGS_OFFSET=0x01E00000 | |
BOARD_RAMDISK_OFFSET=0x02000000 | |
BOARD_KERNEL_SECOND_OFFSET=0x00F00000 |
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 | |
# Define Simple Building Function | |
echo "Current PATH is $(pwd) executing jobs ..." | |
export sauce="$(pwd)" | |
build() { | |
. build/envsetup.sh | |
lunch derp_$1-userdebug | |
mka derp |