-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ebb28e3
commit 087cd98
Showing
100 changed files
with
10,429 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# | ||
# Copyright (C) 2017 The OpenKirin 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. | ||
|
||
LOCAL_PATH := $(call my-dir) | ||
|
||
ifneq ($(filter stf,$(TARGET_DEVICE)),) | ||
|
||
include $(call all-makefiles-under,$(LOCAL_PATH)) | ||
|
||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Copyright (C) 2017 The OpenKirin 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. | ||
|
||
PRODUCT_MAKEFILES := \ | ||
$(LOCAL_DIR)/lineage.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,163 @@ | ||
# | ||
# Copyright (C) 2017 The OpenKirin 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. | ||
# | ||
|
||
LOCAL_PATH := device/honor/stf | ||
|
||
# Architecture | ||
TARGET_ARCH := arm64 | ||
TARGET_ARCH_VARIANT := armv8-a | ||
TARGET_CPU_ABI := arm64-v8a | ||
TARGET_CPU_ABI2 := | ||
TARGET_CPU_VARIANT := cortex-a53 | ||
TARGET_CPU_SMP := true | ||
|
||
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 | ||
|
||
ARCH_ARM_HAVE_TLS_REGISTER := true | ||
ARCH_ARM_HAVE_NEON := true | ||
ARCH_ARM_HIGH_OPTIMIZATION := true | ||
TARGET_USES_64_BIT_BINDER := true | ||
|
||
TARGET_BOARD_PLATFORM := hi3660 | ||
BOARD_VENDOR_PLATFORM := hi3660 | ||
|
||
# Enable CPUSETS | ||
ENABLE_CPUSETS := true | ||
|
||
# Enable SCHEDBOOST | ||
ENABLE_SCHEDBOOST := true | ||
|
||
# Assert | ||
TARGET_OTA_ASSERT_DEVICE := hi3660,stf | ||
|
||
# Audio | ||
BOARD_USES_ALSA_AUDIO := true | ||
TARGET_PROVIDES_LIBAUDIO := true | ||
BOARD_USES_GENERIC_AUDIO := false | ||
BOARD_SUPPORTS_SOUND_TRIGGER := true | ||
|
||
# Bootloader | ||
TARGET_BOOTLOADER_BOARD_NAME := hi3660 | ||
TARGET_NO_BOOTLOADER := true | ||
TARGET_NO_RADIOIMAGE := true | ||
|
||
# Bluetooth | ||
BOARD_HAVE_BLUETOOTH := true | ||
BOARD_HAVE_BLUETOOTH_BCM := true | ||
BOARD_BLUETOOTH_BDROID_BUILDCFG_INCLUDE_DIR := $(LOCAL_PATH)/bluetooth | ||
|
||
# Bootanimation | ||
TARGET_BOOTANIMATION_PRELOAD := true | ||
TARGET_BOOTANIMATION_TEXTURE_CACHE := true | ||
|
||
# Camera | ||
USE_DEVICE_SPECIFIC_CAMERA := true | ||
TARGET_SPECIFIC_CAMERA_PARAMETER_LIBRARY := libcamera_parameters_ext | ||
|
||
# Charger | ||
BOARD_CHARGER_DISABLE_INIT_BLANK := true | ||
BACKLIGHT_PATH := /sys/class/leds/lcd_backlight0/brightness | ||
|
||
# CMHW | ||
BOARD_HARDWARE_CLASS := \ | ||
$(LOCAL_PATH)/cmhw \ | ||
hardware/cyanogen/cmhw | ||
|
||
# Display | ||
USE_OPENGL_RENDERER := true | ||
TARGET_HARDWARE_3D := true | ||
ANDROID_ENABLE_RENDERSCRIPT := true | ||
NUM_FRAMEBUFFER_SURFACE_BUFFERS := 3 | ||
TARGET_USES_ION := true | ||
|
||
# GPS | ||
USE_DEVICE_SPECIFIC_GPS := true | ||
TARGET_NO_RPC := true | ||
|
||
# Kernel | ||
BOARD_KERNEL_BASE := 0x00078000 | ||
BOARD_KERNEL_PAGESIZE := 2048 | ||
BOARD_KERNEL_CMDLINE := loglevel=4 initcall_debug=n page_tracker=on slub_min_objects=16 androidboot.selinux=permissive | ||
BOARD_MKBOOTIMG_ARGS := --kernel_offset 0x00008000 --ramdisk_offset 0x07b88000 --tags_offset 0x07988000 | ||
TARGET_KERNEL_ARCH := arm64 | ||
TARGET_KERNEL_CROSS_COMPILE_PREFIX := aarch64-linux-android- | ||
TARGET_KERNEL_HEADER_ARCH := arm64 | ||
|
||
TARGET_KERNEL_SOURCE := kernel/huawei/hi3660 | ||
TARGET_KERNEL_CONFIG := hisi_3660_defconfig | ||
|
||
# Lights | ||
TARGET_PROVIDES_LIBLIGHT := true | ||
|
||
# Partitions | ||
TARGET_USERIMAGES_USE_EXT4 := true | ||
TARGET_USERIMAGES_USE_F2FS := true | ||
BOARD_BOOTIMAGE_PARTITION_SIZE := 33554432 | ||
BOARD_RECOVERYIMAGE_PARTITION_SIZE := 67108864 | ||
BOARD_SYSTEMIMAGE_PARTITION_SIZE := 4915724288 | ||
BOARD_USERDATAIMAGE_PARTITION_SIZE := 55113154560 | ||
BOARD_CACHEIMAGE_PARTITION_SIZE := 268435456 | ||
BOARD_FLASH_BLOCK_SIZE := 131072 | ||
|
||
# Properties | ||
TARGET_SYSTEM_PROP := $(LOCAL_PATH)/system.prop | ||
|
||
# Recovery | ||
TARGET_RECOVERY_FSTAB := $(LOCAL_PATH)/rootdir/fstab.hi3660 | ||
|
||
# RIL | ||
TARGET_GLOBAL_CFLAGS += -DDISABLE_ASHMEM_TRACKING | ||
BOARD_RIL_CLASS := ../../../device/honor/stf/ril | ||
PROTOBUF_SUPPORTED := true | ||
TARGET_RIL_VARIANT := proprietary | ||
|
||
# Enable WEBGL | ||
ENABLE_WEBGL := true | ||
|
||
# Vendor | ||
BOARD_NEEDS_VENDORIMAGE_SYMLINK := true | ||
TARGET_COPY_OUT_VENDOR := system | ||
|
||
# Vendor Init | ||
TARGET_UNIFIED_DEVICE := true | ||
TARGET_INIT_VENDOR_LIB := libinit_hi3660 | ||
TARGET_LIBINIT_DEFINES_FILE := $(LOCAL_PATH)/init/init_stf.cpp | ||
|
||
# Sepolicy | ||
BOARD_SEPOLICY_DIRS += \ | ||
device/honor/stf/sepolicy | ||
|
||
# Wifi | ||
TARGET_USES_64_BIT_BCMDHD := true | ||
BOARD_WLAN_DEVICE := bcmdhd | ||
BOARD_WLAN_DEVICE_REV := bcm4345 | ||
WPA_SUPPLICANT_VERSION := VER_0_8_X | ||
BOARD_WPA_SUPPLICANT_DRIVER := NL80211 | ||
BOARD_WPA_SUPPLICANT_PRIVATE_LIB := lib_driver_cmd_bcmdhd | ||
BOARD_HOSTAPD_DRIVER := NL80211 | ||
BOARD_HOSTAPD_PRIVATE_LIB := lib_driver_cmd_bcmdhd | ||
WIFI_DRIVER_FW_PATH_PARAM := "/sys/module/bcmdhd/parameters/firmware_path" | ||
WIFI_DRIVER_FW_PATH_STA := "/vendor/firmware/fw_bcm43455_hw.bin" | ||
WIFI_DRIVER_FW_PATH_AP := "/vendor/firmware/fw_bcm43455_apsta_hw.bin" | ||
WIFI_DRIVER_FW_PATH_P2P := "/vendor/firmware/fw_bcm43455_hw.bin" | ||
WIFI_BAND := 802_11_ABG | ||
|
||
# inherit from the proprietary version | ||
-include vendor/honor/stf/BoardConfigVendor.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* Copyright (C) 2016 The CyanogenMod Project <http://www.cyanogenmod.org> | ||
* | ||
* 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. | ||
*/ | ||
|
||
#ifndef _BDROID_BUILDCFG_H | ||
#define _BDROID_BUILDCFG_H | ||
|
||
#define BTM_DEF_LOCAL_NAME "Honor 9" | ||
|
||
#define BLE_INCLUDED TRUE | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# | ||
# Copyright (C) 2017 The LineageOS 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. | ||
# | ||
|
||
LOCAL_PATH := $(call my-dir) | ||
|
||
include $(CLEAR_VARS) | ||
|
||
LOCAL_C_INCLUDES := \ | ||
frameworks/av/include | ||
|
||
LOCAL_SRC_FILES := \ | ||
CameraParameters.cpp | ||
|
||
LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES) | ||
LOCAL_MODULE := libcamera_parameters_ext | ||
LOCAL_MODULE_TAGS := optional | ||
|
||
include $(BUILD_STATIC_LIBRARY) |
Oops, something went wrong.