ossi: Setting up RoomService & vendorsetup

This commit is contained in:
lahaina
2024-03-27 00:15:08 +09:00
parent bc34c08d6d
commit 43bf45d23d
2 changed files with 57 additions and 0 deletions

44
lineage.dependencies Normal file
View File

@@ -0,0 +1,44 @@
[
{
"repository": "oplus-ossi-development/android_kernel_oplus_mt6893",
"target_path": "kernel/oplus/mt6893",
"revision": "lineage-21",
"remote": "github"
},
{
"repository": "oplus-ossi-development/proprietary_vendor_oplus_mt6893-common",
"target_path": "vendor/oplus/mt6893-common",
"revision": "lineage-21",
"remote": "github"
},
{
"repository": "oplus-ossi-development/android_hardware_mediatek",
"target_path": "hardware/mediatek",
"revision": "lineage-21",
"remote": "github"
},
{
"repository": "oplus-ossi-development/android_hardware_mediatek_wlan",
"target_path": "hardware/mediatek/wlan",
"revision": "lineage-21",
"remote": "github"
},
{
"repository": "oplus-ossi-development/android_hardware_oplus",
"target_path": "hardware/oplus",
"revision": "lineage-21",
"remote": "github"
},
{
"repository": "LineageOS/android_hardware_lineage_compat",
"target_path": "hardware/lineage/compat",
"revision": "lineage-21",
"remote": "github"
},
{
"repository": "oplus-ossi-development/android_device_mediatek_sepolicy_vndr",
"target_path": "device/mediatek/sepolicy_vndr",
"revision": "lineage-21",
"remote": "github"
}
]

13
vendorsetup.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
# Oplus camera
CAM=device/oplus/camera/camera.mk
if ! [ -a $CAM ]; then
git clone https://gitlab.com/nattolecats/android_device_oplus_camera device/oplus/camera
fi
# Clang
CLANG17=prebuilts/clang/host/linux-x86/clang-r487747/bin/clang
if ! [ -a $CLANG17 ]; then
git clone https://gitlab.com/nattolecats/android_prebuilts_clang_host_linux-x86_clang-r487747 prebuilts/clang/host/linux-x86/clang-r487747 --depth 1
fi