2018-06-11 06:52:22 +02:00
|
|
|
# Copyright (C) 2018 The Android Open Source Project
|
2012-11-26 06:50:07 +01:00
|
|
|
#
|
2018-06-11 06:52:22 +02:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2012-11-26 06:50:07 +01:00
|
|
|
#
|
|
|
|
|
2018-06-11 06:52:22 +02:00
|
|
|
# x86_64 emulator specific definitions
|
2012-11-26 06:50:07 +01:00
|
|
|
TARGET_CPU_ABI := x86_64
|
|
|
|
TARGET_ARCH := x86_64
|
|
|
|
TARGET_ARCH_VARIANT := x86_64
|
|
|
|
|
2014-01-28 23:35:16 +01:00
|
|
|
TARGET_2ND_CPU_ABI := x86
|
|
|
|
TARGET_2ND_ARCH := x86
|
2016-05-10 23:08:45 +02:00
|
|
|
TARGET_2ND_ARCH_VARIANT := x86_64
|
2014-01-28 23:35:16 +01:00
|
|
|
|
2018-06-11 06:52:22 +02:00
|
|
|
TARGET_PRELINK_MODULE := false
|
|
|
|
include build/make/target/board/BoardConfigGsiCommon.mk
|
2020-07-09 07:13:28 +02:00
|
|
|
ifndef BUILDING_GSI
|
2019-03-07 19:03:41 +01:00
|
|
|
include build/make/target/board/BoardConfigEmuCommon.mk
|
2012-11-26 06:50:07 +01:00
|
|
|
|
2014-05-07 02:27:20 +02:00
|
|
|
BOARD_USERDATAIMAGE_PARTITION_SIZE := 576716800
|
2017-11-28 18:24:02 +01:00
|
|
|
|
2018-06-11 06:52:22 +02:00
|
|
|
BOARD_SEPOLICY_DIRS += device/generic/goldfish/sepolicy/x86
|
2017-11-30 11:55:10 +01:00
|
|
|
|
2017-05-04 19:51:02 +02:00
|
|
|
# Wifi.
|
2017-11-15 02:10:44 +01:00
|
|
|
BOARD_WLAN_DEVICE := emulator
|
2017-05-04 19:51:02 +02:00
|
|
|
BOARD_HOSTAPD_DRIVER := NL80211
|
|
|
|
BOARD_WPA_SUPPLICANT_DRIVER := NL80211
|
|
|
|
BOARD_HOSTAPD_PRIVATE_LIB := lib_driver_cmd_simulated
|
|
|
|
BOARD_WPA_SUPPLICANT_PRIVATE_LIB := lib_driver_cmd_simulated
|
|
|
|
WPA_SUPPLICANT_VERSION := VER_0_8_X
|
|
|
|
WIFI_DRIVER_FW_PATH_PARAM := "/dev/null"
|
|
|
|
WIFI_DRIVER_FW_PATH_STA := "/dev/null"
|
|
|
|
WIFI_DRIVER_FW_PATH_AP := "/dev/null"
|
2020-07-09 07:13:28 +02:00
|
|
|
endif
|