mirror of
https://github.com/team-infusion-developers/android_device_samsung_gts210velte.git
synced 2024-10-31 19:37:28 +00:00
89 lines
3.1 KiB
Makefile
89 lines
3.1 KiB
Makefile
#
|
|
# Copyright 2016 The Android Open Source Project
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
# This contains the module build definitions for the hardware-specific
|
|
# components for this device.
|
|
#
|
|
# As much as possible, those components should be built unconditionally,
|
|
# with device-specific names to avoid collisions, to avoid device-specific
|
|
# bitrot and build breakages. Building a component unconditionally does
|
|
# *not* include it on all devices, so it is safe even with hardware-specific
|
|
# components.
|
|
|
|
# Bootloader
|
|
TARGET_NO_BOOTLOADER := true
|
|
TARGET_BOOTLOADER_BOARD_NAME := msm8952
|
|
|
|
# Platform
|
|
TARGET_BOARD_PLATFORM := msm8952
|
|
TARGET_BOARD_PLATFORM_GPU := qcom-adreno510
|
|
TARGET_PLATFORM_DEVICE_BASE := /devices/soc.0/
|
|
|
|
# Flags
|
|
TARGET_GLOBAL_CFLAGS += -mfpu=neon -mfloat-abi=softfp
|
|
TARGET_GLOBAL_CPPFLAGS += -mfpu=neon -mfloat-abi=softfp
|
|
COMMON_GLOBAL_CFLAGS += -DREFRESH_RATE=60
|
|
|
|
# Architecture
|
|
TARGET_ARCH := arm64
|
|
TARGET_ARCH_VARIANT := armv8-a
|
|
TARGET_CPU_ABI := arm64-v8a
|
|
TARGET_CPU_ABI2 :=
|
|
TARGET_CPU_VARIANT := generic
|
|
|
|
TARGET_2ND_ARCH := arm
|
|
TARGET_2ND_ARCH_VARIANT := armv7-a-neon
|
|
TARGET_2ND_CPU_ABI := armeabi-v7a
|
|
TARGET_2ND_CPU_ABI2 := armeabi
|
|
TARGET_2ND_CPU_VARIANT := cortex-a53
|
|
|
|
# Kernel Prebuilt
|
|
TARGET_PREBUILT_KERNEL := device/samsung/gts210vewifi/kernel
|
|
BOARD_CUSTOM_BOOTIMG_MK := device/samsung/gts210vewifi/mkbootimg.mk
|
|
BOARD_KERNEL_CMDLINE := console=null androidboot.hardware=qcom msm_rtb.filter=0x237 ehci-hcd.park=3 androidboot.bootdevice=7824900.sdhci lpm_levels.sleep_disabled=1 earlyprintk androidboot.selinux=permissive
|
|
BOARD_KERNEL_PAGESIZE := 2048
|
|
BOARD_MKBOOTIMG_ARGS := --base 0x80000000 --ramdisk_offset 0x02000000 --tags_offset 0x01E00000 --board FPRPG21W000KU --dt device/samsung/gts210vewifi/dt.img
|
|
|
|
# Crypto
|
|
TARGET_HW_DISK_ENCRYPTION := true
|
|
|
|
# Recovery
|
|
RECOVERY_VARIANT := twrp
|
|
TARGET_USERIMAGES_USE_EXT4 := true
|
|
TARGET_USERIMAGES_USE_F2FS := true
|
|
|
|
# Partitions
|
|
BOARD_BOOTIMAGE_PARTITION_SIZE := 33554432
|
|
BOARD_CACHEIMAGE_PARTITION_SIZE := 209715200
|
|
BOARD_PERSISTIMAGE_PARTITION_SIZE := 33554432
|
|
BOARD_RECOVERYIMAGE_PARTITION_SIZE := 33554432
|
|
BOARD_SYSTEMIMAGE_PARTITION_SIZE := 4404019200
|
|
BOARD_USERDATAIMAGE_PARTITION_SIZE := 26268905472
|
|
BOARD_FLASH_BLOCK_SIZE := 131072
|
|
|
|
# TWRP
|
|
BOARD_SUPPRESS_SECURE_ERASE := true
|
|
RECOVERY_SDCARD_ON_DATA := true
|
|
RECOVERY_TOUCHSCREEN_SWAP_XY := true
|
|
RECOVERY_TOUCHSCREEN_FLIP_Y := true
|
|
TARGET_RECOVERY_QCOM_RTC_FIX := true
|
|
TW_CUSTOM_CPU_TEMP_PATH := /sys/devices/virtual/thermal/thermal_zone1/temp
|
|
TW_DEFAULT_EXTERNAL_STORAGE := true
|
|
TW_HAS_DOWNLOAD_MODE := true
|
|
TW_INCLUDE_CRYPTO := true
|
|
TW_INPUT_BLACKLIST := "hbtp_vm"
|
|
TW_NO_REBOOT_BOOTLOADER := true
|
|
TW_THEME := landscape_hdpi
|