-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Aftab-111 <ashrafiaftab0@gmail.com>
- Loading branch information
Showing
8 changed files
with
141 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,5 @@ | ||
LOCAL_PATH := $(call my-dir) | ||
ifeq ($(TARGET_DEVICE),olive) | ||
include $(call all-makefiles-under,$(LOCAL_PATH)) | ||
include $(CLEAR_VARS) | ||
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,7 @@ | ||
PRODUCT_MAKEFILES := \ | ||
$(LOCAL_DIR)/arrow_olive.mk | ||
|
||
COMMON_LUNCH_CHOICES := \ | ||
arrow_olive-eng \ | ||
arrow_olive-userdebug \ | ||
arrow_olive-user |
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,57 @@ | ||
DEVICE_PATH := device/xiaomi/olive | ||
BOARD_VENDOR := xiaomi | ||
|
||
# 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 := armv8-a | ||
TARGET_2ND_CPU_ABI := armeabi-v7a | ||
TARGET_2ND_CPU_ABI2 := armeabi | ||
TARGET_2ND_CPU_VARIANT := cortex-a53 | ||
|
||
# Bootloader | ||
TARGET_BOOTLOADER_BOARD_NAME := MSM8937 | ||
TARGET_NO_BOOTLOADER := true | ||
|
||
# Kernel | ||
BOARD_KERNEL_CMDLINE := console=ttyMSM0,115200,n8 androidboot.console=ttyMSM0 androidboot.hardware=qcom msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 androidboot.bootdevice=7824900.sdhci earlycon=msm_serial_dm,0x78B0000 androidboot.usbconfigfs=true loop.max_part=7 | ||
BOARD_KERNEL_CMDLINE += androidboot.selinux=permissive | ||
BOARD_KERNEL_BASE := 0x80000000 | ||
BOARD_KERNEL_PAGESIZE := 2048 | ||
BOARD_KERNEL_TAGS_OFFSET := 0x00000100 | ||
BOARD_RAMDISK_OFFSET := 0x01000000 | ||
BOARD_KERNEL_SEPARATED_DTBO := true | ||
TARGET_PREBUILT_KERNEL := $(DEVICE_PATH)/binaries/Image.gz-dtb | ||
BOARD_PREBUILT_DTBOIMAGE := $(DEVICE_PATH)/binaries/dtbo.img | ||
TARGET_KERNEL_ARCH := arm64 | ||
|
||
# Partitions | ||
BOARD_BUILD_SYSTEM_ROOT_IMAGE := true | ||
BOARD_BOOTIMAGE_PARTITION_SIZE := 67108864 | ||
BOARD_CACHEIMAGE_PARTITION_SIZE := 402653184 | ||
BOARD_DTBOIMG_PARTITION_SIZE := 33554432 | ||
BOARD_RECOVERYIMAGE_PARTITION_SIZE := 67108864 | ||
BOARD_SYSTEMIMAGE_PARTITION_SIZE := 4294967296 | ||
BOARD_USERDATAIMAGE_PARTITION_SIZE := 1971322880 | ||
BOARD_FLASH_BLOCK_SIZE := 131072 # (BOARD_KERNEL_PAGESIZE * 64) | ||
|
||
BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4 | ||
TARGET_USERIMAGES_USE_EXT4 := true | ||
|
||
BOARD_BUILD_SYSTEM_ROOT_IMAGE := true | ||
|
||
TARGET_COPY_OUT_VENDOR := vendor | ||
BUILD_WITHOUT_VENDOR := true | ||
|
||
# Platform | ||
TARGET_BOARD_PLATFORM := msm8937 | ||
TARGET_BOARD_PLATFORM_GPU := qcom-adreno505 | ||
BOARD_USES_QCOM_HARDWARE := true | ||
|
||
# Recovery | ||
TARGET_RECOVERY_FSTAB := $(DEVICE_PATH)/rootdir/etc/fstab.qcom |
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,19 @@ | ||
# Inherit from those products. Most specific first. | ||
$(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk) | ||
$(call inherit-product, $(SRC_TARGET_DIR)/product/full_base_telephony.mk) | ||
|
||
# Inherit from olive device | ||
$(call inherit-product, device/xiaomi/olive/device.mk) | ||
|
||
# Inherit some common ArrowOS stuff. | ||
$(call inherit-product, vendor/arrow/config/common.mk) | ||
|
||
DEVICE_MAINTAINER := Aftab Ashrafi | ||
|
||
PRODUCT_NAME := arrow_olive | ||
PRODUCT_DEVICE := olive | ||
PRODUCT_BRAND := Xiaomi | ||
PRODUCT_MODEL := Redmi 8 | ||
PRODUCT_MANUFACTURER := Xiaomi | ||
|
||
PRODUCT_GMS_CLIENTID_BASE := android-xiaomi |
Binary file not shown.
Binary file not shown.
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,3 @@ | ||
# File systems table | ||
PRODUCT_COPY_FILES += \ | ||
$(LOCAL_PATH)/rootdir/etc/fstab.qcom:$(TARGET_COPY_OUT_VENDOR)/etc/fstab.qcom |
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,50 @@ | ||
# Copyright (c) 2018, The Linux Foundation. All rights reserved. | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions are | ||
# met: | ||
# * Redistributions of source code must retain the above copyright | ||
# notice, this list of conditions and the following disclaimer. | ||
# * Redistributions in binary form must reproduce the above | ||
# copyright notice, this list of conditions and the following | ||
# disclaimer in the documentation and/or other materials provided | ||
# with the distribution. | ||
# * Neither the name of The Linux Foundation nor the names of its | ||
# contributors may be used to endorse or promote products derived | ||
# from this software without specific prior written permission. | ||
# | ||
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED | ||
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT | ||
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS | ||
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR | ||
# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | ||
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE | ||
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN | ||
# IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
# Android fstab file. | ||
# The filesystem that contains the filesystem checker binary (typically /system) cannot | ||
# specify MF_CHECK, and must come before any filesystems that do specify MF_CHECK | ||
|
||
#TODO: Add 'check' as fs_mgr_flags with data partition. | ||
# Currently we dont have e2fsck compiled. So fs check would failed. | ||
|
||
#<src> <mnt_point> <type> <mnt_flags and options> <fs_mgr_flags> | ||
/dev/block/bootdevice/by-name/boot /boot emmc defaults recoveryonly | ||
/dev/block/bootdevice/by-name/recovery /recovery emmc defaults recoveryonly | ||
/dev/block/bootdevice/by-name/system / ext4 ro,barrier=1,discard wait,avb | ||
/dev/block/bootdevice/by-name/vendor /vendor ext4 ro,barrier=1 wait,recoveryonly | ||
/dev/block/bootdevice/by-name/userdata /data ext4 noatime,nosuid,nodev,barrier=1,noauto_da_alloc wait,fileencryption=ice,quota,reservedsize=128M | ||
/devices/soc/7864900.sdhci/mmc_host* /storage/sdcard1 vfat nosuid,nodev wait,voldmanaged=sdcard1:auto,noemulatedsd,encryptable=footer | ||
/devices/platform/soc/7864900.sdhci/mmc_host* /storage/sdcard1 vfat nosuid,nodev wait,voldmanaged=sdcard1:auto,noemulatedsd,encryptable=footer | ||
/dev/block/bootdevice/by-name/config /frp emmc defaults defaults | ||
/devices/soc/78db000.usb/msm_hsusb_host* /storage/usbotg vfat nosuid,nodev wait,voldmanaged=usbotg:auto | ||
/devices/platform/soc/78db000.usb/msm_hsusb_host* /storage/usbotg vfat nosuid,nodev wait,voldmanaged=usbotg:auto | ||
/dev/block/bootdevice/by-name/misc /misc emmc defaults defaults | ||
/dev/block/bootdevice/by-name/cache /cache ext4 noatime,nosuid,nodev,barrier=1 wait | ||
/dev/block/bootdevice/by-name/dsp /vendor/dsp ext4 ro,nosuid,nodev,barrier=1 wait | ||
/dev/block/bootdevice/by-name/modem /vendor/firmware_mnt vfat ro,shortname=lower,uid=1000,gid=1000,dmask=227,fmask=337 wait | ||
/dev/block/bootdevice/by-name/persist /mnt/vendor/persist ext4 noatime,nosuid,nodev,barrier=1 wait,check |