forked from gp-b2g/B2G
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run-emulator.sh
executable file
·42 lines (35 loc) · 1.11 KB
/
run-emulator.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/bash
# Get full path from where the script was executed, full path is needed to run emulator succesfully
B2G_HOME=$(cd $(dirname $BASH_SOURCE); pwd)
. $B2G_HOME/load-config.sh
DEVICE=${DEVICE:-generic}
TOOLS_PATH=$B2G_HOME/out/host/`uname -s | tr "[[:upper:]]" "[[:lower:]]"`-x86/bin
DBG_CMD=""
if [ x"$DBG" != x"" ]; then
DBG_CMD="gdb -args"
fi
TAIL_ARGS=""
if [ x"$GDBSERVER" != x"" ]; then
TAIL_ARGS="$TAIL_ARGS -s -S"
fi
if [ "$DEVICE" = "generic_x86" ]; then
EMULATOR=$TOOLS_PATH/emulator-x86
KERNEL=$B2G_HOME/prebuilts/qemu-kernel/x86/kernel-qemu
else
EMULATOR=$TOOLS_PATH/emulator
KERNEL=$B2G_HOME/prebuilts/qemu-kernel/arm/kernel-qemu-armv7
TAIL_ARGS="$TAIL_ARGS -cpu cortex-a8"
fi
export DYLD_LIBRARY_PATH="$B2G_HOME/out/host/darwin-x86/lib"
export PATH=$PATH:$TOOLS_PATH
${DBG_CMD} $EMULATOR \
-kernel $KERNEL \
-sysdir $B2G_HOME/out/target/product/$DEVICE/ \
-data $B2G_HOME/out/target/product/$DEVICE/userdata.img \
-memory 512 \
-partition-size 512 \
-skindir $B2G_HOME/development/tools/emulator/skins \
-skin HVGA \
-verbose \
-gpu on \
-qemu $TAIL_ARGS