| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #
- # Copyright (C) 2018 The Android Open Source Project
- #
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <https://www.gnu.org/licenses/>.
- #
- # Release name
- PRODUCT_RELEASE_NAME := PL2
- $(call inherit-product, build/target/product/embedded.mk)
- # Inherit from our custom product configuration
- $(call inherit-product, vendor/omni/config/common.mk)
- # Inherit language packages
- $(call inherit-product, $(SRC_TARGET_DIR)/product/languages_full.mk)
- # Charger
- PRODUCT_PACKAGES += \
- charger_res_images \
- charger
- # Define time zone data path
- ifneq ($(wildcard bionic/libc/zoneinfo),)
- TZDATAPATH := bionic/libc/zoneinfo
- else ifneq ($(wildcard system/timezone),)
- TZDATAPATH := system/timezone/output_data/iana
- endif
- # Time Zone data for Recovery
- ifdef TZDATAPATH
- PRODUCT_COPY_FILES += \
- $(TZDATAPATH)/tzdata:recovery/root/system/usr/share/zoneinfo/tzdata
- endif
- ## Device identifier. This must come after all inclusions
- PRODUCT_NAME := omni_PL2
- PRODUCT_DEVICE := PL2
- PRODUCT_BRAND := Nokia
- PRODUCT_MODEL := 6.1
- PRODUCT_MANUFACTURER := Nokia
|