Compare commits
28 Commits
Author | SHA1 | Date |
---|---|---|
Jens Lody | 070d8ce0bb | 9 months ago |
Simon1511 | 8cd10872fb | 9 months ago |
Tim Zimmermann | 6a5d33288f | 9 months ago |
Simon1511 | ca845259c0 | 9 months ago |
Ruchit | d260e2021a | 9 months ago |
Ruchit | 8b583502a6 | 9 months ago |
Ruchit | 77c2a47ba5 | 9 months ago |
Ruchit | 8be0883490 | 9 months ago |
Simon1511 | 217ec831fb | 9 months ago |
Simon1511 | 5223a075eb | 9 months ago |
Simon1511 | 820e9c073a | 9 months ago |
Ruchit Marathe | d55a4e437f | 9 months ago |
LuK1337 | 69736853a4 | 9 months ago |
Simon1511 | 54807c93e0 | 9 months ago |
Sal Savage | 86ad649dfb | 9 months ago |
Ruchit Marathe | 2c3c9b719a | 2 years ago |
Ruchit | af559e411d | 2 years ago |
Henrique Silva | 80dd40335f | 2 years ago |
Ruchit | 3b640d267e | 2 years ago |
Ruchit Marathe | 43aaf868b5 | 2 years ago |
Ruchit | d78dd580d0 | 2 years ago |
Simon1511 | 69edc4a363 | 2 years ago |
Simon1511 | 1a389a7509 | 2 years ago |
Ruchit Marathe | 2486a41856 | 2 years ago |
Ruchit | 62c0fea638 | 2 years ago |
Ruchit Marathe | 0e1bec3273 | 2 years ago |
Ruchit Marathe | 71a161fa41 | 2 years ago |
Ryzen5950XT | 648ddc399a | 3 years ago |
@ -0,0 +1,23 @@ |
|||||||
|
The Samsung Galaxy A52 4G is a mid range phone from Samsung released in March 2021 |
||||||
|
Device specifications |
||||||
|
Device | Samsung Galaxy A52 4G |
||||||
|
:-------------: |:-------------: |
||||||
|
SoC | Qualcomm SM7125 Snapdragon 720G |
||||||
|
CPU | Octa-core (2x2.3 GHz Kryo 465 Gold & 6x1.8 GHz Kryo 465 Silver) |
||||||
|
GPU | Adreno 618 |
||||||
|
Memory | 4GB, 6GB, 8GB |
||||||
|
Shipped Android version | Android 11 |
||||||
|
Storage | 128GB, 256GB |
||||||
|
MicroSD | microSDXC (uses shared SIM slot) |
||||||
|
Battery | Li-Po 4500 mAh, non-removable |
||||||
|
Dimensions | 159.9 x 75.1 x 8.4 mm |
||||||
|
Display | 1080 x 2400 pixels, 20:9 ratio (~407 ppi density) |
||||||
|
Rear camera 1 | 64 MP, f/1.8, 26mm (wide), 1/1.7", 0.8µm, PDAF, OIS |
||||||
|
Rear camera 2 | 12 MP, f/2.2, 123˚ (ultrawide), 1.12µm |
||||||
|
Rear camera 3 | 5 MP, f/2.4, (macro) |
||||||
|
Front camera | 32 MP, f/2.2, 26mm (wide), 1/2.8", 0.8µm |
||||||
|
|
||||||
|
Image |
||||||
|
|
||||||
|
|
||||||
|
![alt text](https://fdn2.gsmarena.com/vv/bigpic/samsung-galaxy-a52-4g.jpg "Samsung Galaxy A52 4G") |
@ -0,0 +1,14 @@ |
|||||||
|
[ |
||||||
|
{ |
||||||
|
"repository":"vendor_samsung_a52q", |
||||||
|
"target_path":"vendor/samsung/a52q", |
||||||
|
"branch":"fourteen", |
||||||
|
"remote":"pixel-devices-blobs" |
||||||
|
}, |
||||||
|
{ |
||||||
|
"repository":"device_samsung_sm7125-common", |
||||||
|
"target_path":"device/samsung/sm7125-common", |
||||||
|
"branch":"fourteen", |
||||||
|
"remote":"pixel-devices" |
||||||
|
} |
||||||
|
] |
@ -0,0 +1,55 @@ |
|||||||
|
#
|
||||||
|
# Copyright (C) 2021 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.
|
||||||
|
#
|
||||||
|
|
||||||
|
# Inherit device configuration
|
||||||
|
$(call inherit-product, device/samsung/a52q/device.mk) |
||||||
|
|
||||||
|
# Inherit from the 64 bit configuration
|
||||||
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk) |
||||||
|
|
||||||
|
# Inherit from the common Open Source product configuration
|
||||||
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/aosp_base_telephony.mk) |
||||||
|
|
||||||
|
# Inherit some common Lineage stuff
|
||||||
|
$(call inherit-product, vendor/aosp/config/common_full_phone.mk) |
||||||
|
|
||||||
|
# Enable updating of APEXes
|
||||||
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/updatable_apex.mk) |
||||||
|
|
||||||
|
# Boot animation
|
||||||
|
TARGET_SCREEN_HEIGHT := 2400
|
||||||
|
TARGET_SCREEN_WIDTH := 1080
|
||||||
|
TARGET_BOOT_ANIMATION_RES := 1080
|
||||||
|
|
||||||
|
## Device identifier. This must come after all inclusions
|
||||||
|
PRODUCT_NAME := aosp_a52q
|
||||||
|
PRODUCT_DEVICE := a52q
|
||||||
|
PRODUCT_BRAND := samsung
|
||||||
|
PRODUCT_MODEL := SM-A525F
|
||||||
|
PRODUCT_MANUFACTURER := samsung
|
||||||
|
PRODUCT_GMS_CLIENTID_BASE := android-samsung
|
||||||
|
|
||||||
|
# Recovery
|
||||||
|
TARGET_USES_AOSP_RECOVERY := true
|
||||||
|
|
||||||
|
PRODUCT_SHIPPING_API_LEVEL := 30
|
||||||
|
|
||||||
|
# Vendor fingerprint
|
||||||
|
BUILD_FINGERPRINT := "samsung/a52qnsxx/a52q:11/RP1A.200720.012/A525FXXU6EWL3:user/release-keys"
|
||||||
|
PRIVATE_BUILD_DESC := "a52qnsxx-user 11 RP1A.200720.012 A525FXXU6EWL3 release-keys"
|
||||||
|
|
||||||
|
# Security patch
|
||||||
|
VENDOR_SECURITY_PATCH := 2023-12-01
|
@ -1,63 +1,21 @@ |
|||||||
#!/bin/bash |
#!/bin/bash |
||||||
# |
# |
||||||
# Copyright (C) 2018-2020 The LineageOS Project |
# Copyright (C) 2016 The CyanogenMod Project |
||||||
|
# Copyright (C) 2017-2023 The LineageOS Project |
||||||
# |
# |
||||||
# SPDX-License-Identifier: Apache-2.0 |
# SPDX-License-Identifier: Apache-2.0 |
||||||
# |
# |
||||||
|
|
||||||
set -e |
# If we're being sourced by the common script that we called, |
||||||
|
# stop right here. No need to go down the rabbit hole. |
||||||
DEVICE_COMMON=a52q |
if [ "${BASH_SOURCE[0]}" != "${0}" ]; then |
||||||
VENDOR=samsung |
return |
||||||
|
|
||||||
# Load extractutils and do some sanity checks |
|
||||||
MY_DIR="${BASH_SOURCE%/*}" |
|
||||||
if [[ ! -d "$MY_DIR" ]]; then MY_DIR="$PWD"; fi |
|
||||||
|
|
||||||
ANDROID_ROOT="${MY_DIR}/../../.." |
|
||||||
|
|
||||||
HELPER="${ANDROID_ROOT}/tools/extract-utils/extract_utils.sh" |
|
||||||
if [ ! -f "${HELPER}" ]; then |
|
||||||
echo "Unable to find helper script at ${HELPER}" |
|
||||||
exit 1 |
|
||||||
fi |
|
||||||
source "${HELPER}" |
|
||||||
|
|
||||||
# Default to sanitizing the vendor folder before extraction |
|
||||||
CLEAN_VENDOR=true |
|
||||||
|
|
||||||
KANG= |
|
||||||
SECTION= |
|
||||||
|
|
||||||
while [ "${#}" -gt 0 ]; do |
|
||||||
case "${1}" in |
|
||||||
-n | --no-cleanup ) |
|
||||||
CLEAN_VENDOR=false |
|
||||||
;; |
|
||||||
-k | --kang ) |
|
||||||
KANG="--kang" |
|
||||||
;; |
|
||||||
-s | --section ) |
|
||||||
SECTION="${2}"; shift |
|
||||||
CLEAN_VENDOR=false |
|
||||||
;; |
|
||||||
* ) |
|
||||||
SRC="${1}" |
|
||||||
;; |
|
||||||
esac |
|
||||||
shift |
|
||||||
done |
|
||||||
|
|
||||||
if [ -z "${SRC}" ]; then |
|
||||||
SRC="adb" |
|
||||||
fi |
fi |
||||||
|
|
||||||
# Initialize the helper |
set -e |
||||||
setup_vendor "${DEVICE_COMMON}" "${VENDOR}" "${ANDROID_ROOT}" true "${CLEAN_VENDOR}" |
|
||||||
|
|
||||||
extract "${MY_DIR}/proprietary-files.txt" "${SRC}" "${KANG}" --section "${SECTION}" |
|
||||||
|
|
||||||
# Fix proprietary blobs |
export DEVICE=a52q |
||||||
BLOB_ROOT="$ANDROID_ROOT"/vendor/"$VENDOR"/"$DEVICE_COMMON"/proprietary |
export DEVICE_COMMON=sm7125-common |
||||||
|
export VENDOR=samsung |
||||||
|
|
||||||
"${MY_DIR}/setup-makefiles.sh" |
"./../../${VENDOR}/${DEVICE_COMMON}/extract-files.sh" "$@" |
||||||
|
@ -1,6 +0,0 @@ |
|||||||
[ |
|
||||||
{ |
|
||||||
"repository": "android_device_samsung_sm7125-common", |
|
||||||
"target_path": "device/samsung/sm7125-common" |
|
||||||
} |
|
||||||
] |
|
@ -0,0 +1,22 @@ |
|||||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||||
|
<!-- |
||||||
|
/** |
||||||
|
* Copyright (c) 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. |
||||||
|
*/ |
||||||
|
--> |
||||||
|
<resources> |
||||||
|
<!-- Default for Settings.Global.DEVICE_NAME $1=MODEL--> |
||||||
|
<string name="def_device_name_simple">Galaxy A52 4G</string> |
||||||
|
</resources> |
@ -0,0 +1,19 @@ |
|||||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||||
|
<!-- |
||||||
|
Copyright (C) 2020 Paranoid Android |
||||||
|
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. |
||||||
|
--> |
||||||
|
<resources> |
||||||
|
<!-- Location on the screen of the center of the physical power button. This is a reasonable |
||||||
|
default that should be overridden by device-specific overlays. --> |
||||||
|
<dimen name="physical_power_button_center_screen_location_y">980px</dimen> |
||||||
|
</resources> |
||||||
|
|
@ -1,44 +1,21 @@ |
|||||||
#!/bin/bash |
#!/bin/bash |
||||||
# |
# |
||||||
# Copyright (C) 2017-2021 The LineageOS Project |
# Copyright (C) 2016 The CyanogenMod Project |
||||||
|
# Copyright (C) 2017-2023 The LineageOS Project |
||||||
# |
# |
||||||
# SPDX-License-Identifier: Apache-2.0 |
# SPDX-License-Identifier: Apache-2.0 |
||||||
# |
# |
||||||
|
|
||||||
set -e |
# If we're being sourced by the common script that we called, |
||||||
|
# stop right here. No need to go down the rabbit hole. |
||||||
DEVICE_COMMON=a52q |
if [ "${BASH_SOURCE[0]}" != "${0}" ]; then |
||||||
VENDOR=samsung |
return |
||||||
|
|
||||||
# Load extractutils and do some sanity checks |
|
||||||
MY_DIR="${BASH_SOURCE%/*}" |
|
||||||
if [[ ! -d "$MY_DIR" ]]; then MY_DIR="$PWD"; fi |
|
||||||
|
|
||||||
ANDROID_ROOT="${MY_DIR}/../../.." |
|
||||||
|
|
||||||
HELPER="${ANDROID_ROOT}/tools/extract-utils/extract_utils.sh" |
|
||||||
if [ ! -f "${HELPER}" ]; then |
|
||||||
echo "Unable to find helper script at ${HELPER}" |
|
||||||
exit 1 |
|
||||||
fi |
fi |
||||||
source "${HELPER}" |
|
||||||
|
|
||||||
# Initialize the helper |
set -e |
||||||
setup_vendor "${DEVICE_COMMON}" "${VENDOR}" "${ANDROID_ROOT}" true |
|
||||||
|
|
||||||
# Warning headers and guards |
|
||||||
write_headers "a52q" |
|
||||||
|
|
||||||
write_makefiles "${MY_DIR}/proprietary-files.txt" true |
|
||||||
|
|
||||||
################################################################################################### |
|
||||||
# CUSTOM PART START # |
|
||||||
################################################################################################### |
|
||||||
|
|
||||||
OUTDIR=vendor/$VENDOR/$DEVICE_COMMON |
export DEVICE=a52q |
||||||
|
export DEVICE_COMMON=sm7125-common |
||||||
|
export VENDOR=samsung |
||||||
|
|
||||||
################################################################################################### |
"./../../${VENDOR}/${DEVICE_COMMON}/extract-files.sh" "$@" |
||||||
# CUSTOM PART END # |
|
||||||
################################################################################################### |
|
||||||
# Done |
|
||||||
write_footers |
|
||||||
|
@ -0,0 +1,7 @@ |
|||||||
|
# Bluetooth |
||||||
|
bluetooth.device.default_name=Galaxy A52 4G |
||||||
|
|
||||||
|
# Fingerprint |
||||||
|
ro.vendor.fingerprint.type=udfps_optical |
||||||
|
ro.vendor.fingerprint.sensor_location=540|2137|119 |
||||||
|
ro.vendor.fingerprint.request_touch_event=true |
Loading…
Reference in new issue