Isaac Chen | 510b76d | 2018-06-11 12:52:22 +0800 | [diff] [blame] | 1 | # Copyright (C) 2018 The Android Open Source Project |
Doug Zongker | e01100c | 2009-06-19 17:12:18 -0700 | [diff] [blame] | 2 | # |
Isaac Chen | 510b76d | 2018-06-11 12:52:22 +0800 | [diff] [blame] | 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 14 | # |
| 15 | |
Isaac Chen | 510b76d | 2018-06-11 12:52:22 +0800 | [diff] [blame] | 16 | # arm emulator specific definitions |
Raghu Gandham | 8da4310 | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 17 | TARGET_ARCH := arm |
David 'Digit' Turner | 5f5056f | 2011-06-15 15:33:24 +0200 | [diff] [blame] | 18 | |
Elliott Hughes | 27932bf | 2019-01-09 10:59:44 -0800 | [diff] [blame] | 19 | # Note: Before P, we built the platform images for ARMv7-A _without_ NEON. |
| 20 | # Note: Before Q, we built the CTS and SDK images for ARMv7-A _without_ NEON. |
Dan Willemsen | 53d62fe | 2019-01-23 22:27:33 -0800 | [diff] [blame] | 21 | # Note: Before Q, we built unbundled apps for ARMv7-A _without_ NEON. |
David 'Digit' Turner | 5f5056f | 2011-06-15 15:33:24 +0200 | [diff] [blame] | 22 | # |
Isaac Chen | b2e5889 | 2018-05-29 13:06:11 +0800 | [diff] [blame] | 23 | # Starting from Pi, System image of aosp_arm products is the new GSI |
| 24 | # for real devices newly launched for Pi. These devices are usualy not |
| 25 | # as performant as the mainstream 64-bit devices and the performance |
| 26 | # provided by NEON is important for them to pass related CTS tests. |
| 27 | TARGET_ARCH_VARIANT := armv7-a-neon |
Christopher Ferris | 6103fd7 | 2013-02-22 17:24:25 -0800 | [diff] [blame] | 28 | TARGET_CPU_VARIANT := generic |
David 'Digit' Turner | 5f5056f | 2011-06-15 15:33:24 +0200 | [diff] [blame] | 29 | TARGET_CPU_ABI := armeabi-v7a |
| 30 | TARGET_CPU_ABI2 := armeabi |
Chih-Chung Chang | b9e030e | 2010-05-10 14:59:49 +0800 | [diff] [blame] | 31 | |
Isaac Chen | 510b76d | 2018-06-11 12:52:22 +0800 | [diff] [blame] | 32 | include build/make/target/board/BoardConfigGsiCommon.mk |
bohu | a3deb4f | 2019-03-07 10:03:41 -0800 | [diff] [blame] | 33 | include build/make/target/board/BoardConfigEmuCommon.mk |
Nick Kralevich | 3c9fae2 | 2013-07-09 18:04:51 -0700 | [diff] [blame] | 34 | |
Tsu Chiang Chuang | 27a026c | 2014-05-06 17:27:20 -0700 | [diff] [blame] | 35 | BOARD_USERDATAIMAGE_PARTITION_SIZE := 576716800 |
Isaac Chen | f715470 | 2018-04-19 14:18:54 +0800 | [diff] [blame] | 36 | |
Bjoern Johansson | 12fd2d8 | 2017-05-04 10:51:02 -0700 | [diff] [blame] | 37 | # Wifi. |
Bjoern Johansson | 275bdb0 | 2017-11-14 17:10:44 -0800 | [diff] [blame] | 38 | BOARD_WLAN_DEVICE := emulator |
Bjoern Johansson | 12fd2d8 | 2017-05-04 10:51:02 -0700 | [diff] [blame] | 39 | BOARD_HOSTAPD_DRIVER := NL80211 |
| 40 | BOARD_WPA_SUPPLICANT_DRIVER := NL80211 |
| 41 | BOARD_HOSTAPD_PRIVATE_LIB := lib_driver_cmd_simulated |
| 42 | BOARD_WPA_SUPPLICANT_PRIVATE_LIB := lib_driver_cmd_simulated |
| 43 | WPA_SUPPLICANT_VERSION := VER_0_8_X |
| 44 | WIFI_DRIVER_FW_PATH_PARAM := "/dev/null" |
| 45 | WIFI_DRIVER_FW_PATH_STA := "/dev/null" |
| 46 | WIFI_DRIVER_FW_PATH_AP := "/dev/null" |