sepolicy_vndr: legacy: Allow using logdump partition as metadata

* sdm845 and sdm710 didn't have a metadata partition, but we can repurpose logdump which is a 64MB partition used to store Android logcats

Change-Id: I826571d4e31f2a3f03c1d3e6a0daab262a4ccd6b
(cherry picked from commit 8a5eeb6a2bfb3f1a7232199d32c1e3c2bbc0ef55)
This commit is contained in:
Sebastiano Barezzi 2022-09-05 17:09:02 +02:00 committed by Sebastiano Barezzi
parent fdf18a4bde
commit 191a6ce91b
3 changed files with 8 additions and 3 deletions

View file

@ -72,6 +72,12 @@ ifneq (,$(filter sdm845 sdm710, $(TARGET_BOARD_PLATFORM)))
$(SEPOLICY_PATH)/legacy/vendor/ssg \
$(SEPOLICY_PATH)/legacy/vendor/common
ifeq ($(TARGET_USES_LOGDUMP_AS_METADATA),true)
BOARD_SEPOLICY_M4DEFS += logdump_partition=metadata_block_device
else
BOARD_VENDOR_SEPOLICY_DIRS += $(SEPOLICY_PATH)/legacy/vendor/common/logdump
endif
ifeq ($(TARGET_SEPOLICY_DIR),)
BOARD_VENDOR_SEPOLICY_DIRS += $(SEPOLICY_PATH)/legacy/vendor/$(TARGET_BOARD_PLATFORM)
else

View file

@ -98,9 +98,6 @@ type efs_boot_dev, dev_type;
#MBA debug image partition
type mba_debug_dev, dev_type;
#logdump partition
type logdump_partition, dev_type;
#Bootselect partition
type bootselect_device, dev_type;

View file

@ -0,0 +1,2 @@
#logdump partition
type logdump_partition, dev_type;