aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorVince Harron <vharron@google.com>2014-08-29 10:25:52 -0700
committerVince Harron <vharron@google.com>2014-08-29 10:25:52 -0700
commit3afa5561d585d56b65efd2d1c434f6b6e5b39c2f (patch)
tree64e55db823268491d309110d8047d02b0fe5b013 /build.gradle
parent7df7bf7e8316d71bad7188c90cb7712d83cefc5c (diff)
downloadqemu-3afa5561d585d56b65efd2d1c434f6b6e5b39c2f.tar.gz
using pc-bios files from prebuilts/qemu-kernel
using pc-bios files from prebuilts/qemu-kernel instead of prebuilts/android-emulator. qemu-kernel is upstream of the files in android-emulator anyway. Change-Id: Icb0707acf002bde9704d209e829c0b1ecaf525ab
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle12
1 files changed, 8 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle
index 6afdab37f1..2e67d13fba 100644
--- a/build.gradle
+++ b/build.gradle
@@ -27,8 +27,10 @@ sdk {
into 'lib'
builtBy buildDefaultEmulator
}
- // prebuilts are the same for all host types
- item("$project.rootDir/../prebuilts/tools/linux-x86/emulator/lib/pc-bios") {
+ item("$project.rootDir/../prebuilts/qemu-kernel/x86/pc-bios/bios.bin") {
+ into 'lib/pc-bios'
+ }
+ item("$project.rootDir/../prebuilts/qemu-kernel/x86/pc-bios/vgabios-cirrus.bin") {
into 'lib/pc-bios'
}
@@ -72,8 +74,10 @@ sdk {
into 'lib'
builtBy buildWindowsEmulator
}
- // prebuilts are the same for all host types
- item("$project.rootDir/../prebuilts/tools/linux-x86/emulator/lib/pc-bios") {
+ item("$project.rootDir/../prebuilts/qemu-kernel/x86/pc-bios/bios.bin") {
+ into 'lib/pc-bios'
+ }
+ item("$project.rootDir/../prebuilts/qemu-kernel/x86/pc-bios/vgabios-cirrus.bin") {
into 'lib/pc-bios'
}