Skip to content

Commit

Permalink
scripts: move android_on_qemu to the third-party
Browse files Browse the repository at this point in the history
Signed-off-by: Sunwook Eom <[email protected]>
  • Loading branch information
nook1208 committed Jan 3, 2025
1 parent 8a738db commit 11a169b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,3 @@ examples/cross-platform-e2ee/third-party-arm/

unsafe-call-trace.log
unsafe-items-list.log

android_on_qemu
6 changes: 3 additions & 3 deletions scripts/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
TRACE_LIB = os.path.join(PLUGIN_PATH, "TarmacTrace.so")
TOGGLE_LIB = os.path.join(PLUGIN_PATH, "ToggleMTIPlugin.so")

AOSP_DIR = os.path.join(ROOT, "android_on_qemu/aosp-15.0.0_r8")
AOSP_KERNEL_OUT = os.path.join(ROOT, "android_on_qemu/android15-6.6/out/virtual_device_aarch64/dist/")
AOSP_DIR = os.path.join(THIRD_PARTY, "android_on_qemu/aosp-15.0.0_r8")
AOSP_KERNEL_OUT = os.path.join(THIRD_PARTY, "android_on_qemu/android15-6.6/out/virtual_device_aarch64/dist/")
AOSP_KERNEL_INITRAMFS_PATH = os.path.join(AOSP_KERNEL_OUT, "initramfs.img")
AOSP_KERNEL_IMAGE_PATH = os.path.join(AOSP_KERNEL_OUT, "Image")
AOSP_KERNEL_IMAGE_PATH = os.path.join(AOSP_KERNEL_OUT, "Image")
2 changes: 1 addition & 1 deletion scripts/init_android_on_qemu.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

PARENT_DIR="android_on_qemu"
PARENT_DIR="third-party/android_on_qemu"

AOSP_VER="aosp-15.0.0_r8"
AOSP_DIR="$PARENT_DIR/$AOSP_VER"
Expand Down

0 comments on commit 11a169b

Please sign in to comment.