1# 2# Copyright (C) 2017 The Android Open-Source Project 3# 4# Licensed under the Apache License, Version 2.0 (the "License"); 5# you may not use this file except in compliance with the License. 6# You may obtain a copy of the License at 7# 8# http://www.apache.org/licenses/LICENSE-2.0 9# 10# Unless required by applicable law or agreed to in writing, software 11# distributed under the License is distributed on an "AS IS" BASIS, 12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13# See the License for the specific language governing permissions and 14# limitations under the License. 15# 16 17TARGET_BOOTLOADER_BOARD_NAME := taimen 18DEFAULT_LOW_PERSISTENCE_MODE_BRIGHTNESS := 0x0000008c 19 20BOARD_KERNEL_CMDLINE += console=ttyMSM0,115200,n8 earlycon=msm_serial_dm,0xc1b0000 21 22include device/google/wahoo/BoardConfig.mk 23 24BOARD_BOOTIMAGE_PARTITION_SIZE := 41943040 25BOARD_AVB_ENABLE := true 26BOARD_EXT4_SHARE_DUP_BLOCKS := true 27 28# sepolicy 29BOARD_VENDOR_SEPOLICY_DIRS += device/google/taimen/sepolicy 30 31# Kernel modules 32ifeq (,$(filter-out taimen_kasan, $(TARGET_PRODUCT))) 33# if TARGET_PRODUCT == taimen_kasan 34BOARD_VENDOR_KERNEL_MODULES += \ 35 device/google/wahoo-kernel/kasan/touch_core_base.ko \ 36 device/google/wahoo-kernel/kasan/ftm4.ko \ 37 device/google/wahoo-kernel/kasan/sw49408.ko \ 38 device/google/wahoo-kernel/kasan/lge_battery.ko \ 39 device/google/wahoo-kernel/kasan/wlan.ko 40else ifeq (,$(filter-out taimen_kernel_debug_memory, $(TARGET_PRODUCT))) 41# if TARGET == taimen_kernel_debug_memory 42BOARD_VENDOR_KERNEL_MODULES += \ 43 device/google/wahoo-kernel/debug_memory/touch_core_base.ko \ 44 device/google/wahoo-kernel/debug_memory/ftm4.ko \ 45 device/google/wahoo-kernel/debug_memory/sw49408.ko \ 46 device/google/wahoo-kernel/debug_memory/lge_battery.ko \ 47 device/google/wahoo-kernel/debug_memory/wlan.ko 48else ifeq (,$(filter-out taimen_kernel_debug_locking, $(TARGET_PRODUCT))) 49# if TARGET == taimen_kernel_debug_locking 50BOARD_VENDOR_KERNEL_MODULES += \ 51 device/google/wahoo-kernel/debug_locking/touch_core_base.ko \ 52 device/google/wahoo-kernel/debug_locking/ftm4.ko \ 53 device/google/wahoo-kernel/debug_locking/sw49408.ko \ 54 device/google/wahoo-kernel/debug_locking/lge_battery.ko \ 55 device/google/wahoo-kernel/debug_locking/wlan.ko 56else ifeq (,$(filter-out taimen_kernel_debug_hang, $(TARGET_PRODUCT))) 57# if TARGET == taimen_kernel_debug_hang 58BOARD_VENDOR_KERNEL_MODULES += \ 59 device/google/wahoo-kernel/debug_hang/touch_core_base.ko \ 60 device/google/wahoo-kernel/debug_hang/ftm4.ko \ 61 device/google/wahoo-kernel/debug_hang/sw49408.ko \ 62 device/google/wahoo-kernel/debug_hang/lge_battery.ko \ 63 device/google/wahoo-kernel/debug_hang/wlan.ko 64else ifeq (,$(filter-out taimen_kernel_debug_api, $(TARGET_PRODUCT))) 65# if TARGET == taimen_kernel_debug_api 66BOARD_VENDOR_KERNEL_MODULES += \ 67 device/google/wahoo-kernel/debug_api/touch_core_base.ko \ 68 device/google/wahoo-kernel/debug_api/ftm4.ko \ 69 device/google/wahoo-kernel/debug_api/sw49408.ko \ 70 device/google/wahoo-kernel/debug_api/lge_battery.ko \ 71 device/google/wahoo-kernel/debug_api/wlan.ko 72else 73BOARD_VENDOR_KERNEL_MODULES += \ 74 device/google/wahoo-kernel/touch_core_base.ko \ 75 device/google/wahoo-kernel/ftm4.ko \ 76 device/google/wahoo-kernel/sw49408.ko \ 77 device/google/wahoo-kernel/lge_battery.ko \ 78 device/google/wahoo-kernel/wlan.ko 79endif 80 81-include vendor/google_devices/taimen/proprietary/BoardConfigVendor.mk 82 83# Testing related defines 84BOARD_PERFSETUP_SCRIPT := platform_testing/scripts/perf-setup/wahoo-setup.sh 85 86BOARD_LISA_TARGET_SCRIPTS := device/google/wahoo/lisa/ 87 88# Rounded corners recovery UI. 105px = 30dp * 3.5 density, where 30dp comes from 89# rounded_corner_radius in overlay/frameworks/base/packages/SystemUI/res/values/dimens.xml. 90TARGET_RECOVERY_UI_MARGIN_HEIGHT := 105 91 92TARGET_RECOVERY_UI_LIB := \ 93 librecovery_ui_taimen \ 94 libfstab 95 96# VTS DTBO Verification. This kernel cmdline parameter should be added by the bootloader 97# for all future devices. 98BOARD_KERNEL_CMDLINE += androidboot.dtbo_idx=12 99