46 lines
1015 B
Makefile
46 lines
1015 B
Makefile
#
|
|
# Copyright (C) 2021-2023 KonstaKANG
|
|
# Copyright (C) 2025 oxmc
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
# Inherit from the base Raspberry Pi 4 product
|
|
$(call inherit-product, device/brcm/rpi4/aosp_rpi4.mk)
|
|
|
|
# Include remove_packages.mk
|
|
$(call inherit-product, device/pawlet/rpi/remove_packages.mk)
|
|
|
|
# Configs
|
|
PRODUCT_AAPT_CONFIG := normal mdpi hdpi
|
|
PRODUCT_AAPT_PREF_CONFIG := hdpi
|
|
PRODUCT_CHARACTERISTICS := tablet,nosdcard
|
|
|
|
# Remove specific packages
|
|
PRODUCT_PACKAGES -= \
|
|
Galaxy4 \
|
|
HoloSpiralWallpaper \
|
|
LiveWallpapers \
|
|
LiveWallpapersPicker \
|
|
MagicSmokeWallpapers \
|
|
NoiseField \
|
|
PhaseBeam \
|
|
VisualizationWallpapers \
|
|
PhotoTable \
|
|
Launcher3QuickStep
|
|
|
|
# Other apps
|
|
PRODUCT_PACKAGES += \
|
|
Lawnchair
|
|
|
|
# Overlays
|
|
PRODUCT_PACKAGES += \
|
|
FrameworkResDevOxmcOverlay
|
|
|
|
# Device identifier. This must come after all inclusions.
|
|
PRODUCT_DEVICE := rpi4
|
|
PRODUCT_NAME := pawlet_rpi4
|
|
PRODUCT_BRAND := Raspberry
|
|
PRODUCT_MODEL := Raspberry Pi 4
|
|
PRODUCT_MANUFACTURER := Raspberry
|