blob: 8624ed72b318f4de68c665e097f16a6c0ca7fe6a [file] [log] [blame]
Isaac Chen510b76d2018-06-11 12:52:22 +08001# Copyright (C) 2018 The Android Open Source Project
Doug Zongkere01100c2009-06-19 17:12:18 -07002#
Isaac Chen510b76d2018-06-11 12:52:22 +08003# 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 Project88b60792009-03-03 19:28:42 -080014#
15
Isaac Chen510b76d2018-06-11 12:52:22 +080016# arm emulator specific definitions
Raghu Gandham8da43102012-07-25 19:57:22 -070017TARGET_ARCH := arm
David 'Digit' Turner5f5056f2011-06-15 15:33:24 +020018
Elliott Hughes27932bf2019-01-09 10:59:44 -080019# 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 Willemsen53d62fe2019-01-23 22:27:33 -080021# Note: Before Q, we built unbundled apps for ARMv7-A _without_ NEON.
David 'Digit' Turner5f5056f2011-06-15 15:33:24 +020022#
Isaac Chenb2e58892018-05-29 13:06:11 +080023# 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.
27TARGET_ARCH_VARIANT := armv7-a-neon
Christopher Ferris6103fd72013-02-22 17:24:25 -080028TARGET_CPU_VARIANT := generic
David 'Digit' Turner5f5056f2011-06-15 15:33:24 +020029TARGET_CPU_ABI := armeabi-v7a
30TARGET_CPU_ABI2 := armeabi
Chih-Chung Changb9e030e2010-05-10 14:59:49 +080031
Isaac Chen510b76d2018-06-11 12:52:22 +080032include build/make/target/board/BoardConfigGsiCommon.mk
bohua3deb4f2019-03-07 10:03:41 -080033include build/make/target/board/BoardConfigEmuCommon.mk
Nick Kralevich3c9fae22013-07-09 18:04:51 -070034
Tsu Chiang Chuang27a026c2014-05-06 17:27:20 -070035BOARD_USERDATAIMAGE_PARTITION_SIZE := 576716800
Isaac Chenf7154702018-04-19 14:18:54 +080036
Bjoern Johansson12fd2d82017-05-04 10:51:02 -070037# Wifi.
Bjoern Johansson275bdb02017-11-14 17:10:44 -080038BOARD_WLAN_DEVICE := emulator
Bjoern Johansson12fd2d82017-05-04 10:51:02 -070039BOARD_HOSTAPD_DRIVER := NL80211
40BOARD_WPA_SUPPLICANT_DRIVER := NL80211
41BOARD_HOSTAPD_PRIVATE_LIB := lib_driver_cmd_simulated
42BOARD_WPA_SUPPLICANT_PRIVATE_LIB := lib_driver_cmd_simulated
43WPA_SUPPLICANT_VERSION := VER_0_8_X
44WIFI_DRIVER_FW_PATH_PARAM := "/dev/null"
45WIFI_DRIVER_FW_PATH_STA := "/dev/null"
46WIFI_DRIVER_FW_PATH_AP := "/dev/null"