-
Notifications
You must be signed in to change notification settings - Fork 0
/
omni_REL.mk
35 lines (28 loc) · 1.47 KB
/
omni_REL.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# In The Name Of Allah
$(call inherit-product, $(SRC_TARGET_DIR)/product/full_base.mk)
# Add this line if your device is 64-bit
$(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk)
# Otherwise, If you have 32-bit device, add the below line instead of above line
$(call inherit-product, $(SRC_TARGET_DIR)/product/core_minimal.mk
# Another common config inclusion
$(call inherit-product, $(SRC_TARGET_DIR)/product/embedded.mk)
# If you are building from OmniROM's minimal source, Inherit some common Omni stuff.
$(call inherit-product, vendor/omni/config/common.mk)
# Replace $$DEVICE$$ with your Device Name's Value.
# Replace $$BRAND$$ with your Brand's / Manufacturer's Value.
PRODUCT_COPY_FILES += device/TECNO/TECNO_WX4_Pro/prebuilt/zImage:kernel
# Fles under $(LOCAL_PATH)/recovery/root/ gets automatically copied into recovery
# PRODUCT_COPY_FILES += $(LOCAL_PATH)/recovery/root/*:root/*
PRODUCT_DEVICE := TECNO_WX4_Pro
PRODUCT_NAME := omni_REL
PRODUCT_BRAND := TECNO
PRODUCT_MODEL := TECNO WX4 Pro
PRODUCT_MANUFACTURER := TECNO
# Forcefully add mtp support (adb is already there)
PRODUCT_DEFAULT_PROPERTY_OVERRIDES += \
persist.sys.usb.config=mtp
# Add fingerprint from Stock ROM build.prop
PRODUCT_BUILD_PROP_OVERRIDES += \
# These lines are from my device. You MUST Replace yours.
BUILD_FINGERPRINT="TECNO/H3712/TECNO-WX4-Pro:7.0/NRD90M/WX4Pro-H3712B-N-171114V111:user/release-keys" \
PRIVATE_BUILD_DESC="full_rlk6737m_65_n-user 7.0 NRD90M 1510668566 release-keys"