Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 675f4741 authored by Scott Mertz's avatar Scott Mertz
Browse files

cm: add opt-out for exFAT

Allow global disable of exFAT through environment variable
WITH_EXFAT. Maintain exFAT as enabled by default.

Change-Id: I85e8b14c51441fe52bd185be83880419ee831d5c
parent d9d3201c
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
@@ -179,9 +179,6 @@ PRODUCT_PACKAGES += \
    htop \
    powertop \
    lsof \
    mount.exfat \
    fsck.exfat \
    mkfs.exfat \
    mkfs.f2fs \
    fsck.f2fs \
    fibmap.f2fs \
@@ -193,6 +190,15 @@ PRODUCT_PACKAGES += \
    sqlite3 \
    strace

WITH_EXFAT ?= true
ifeq ($(WITH_EXFAT),true)
TARGET_USES_EXFAT := true
PRODUCT_PACKAGES += \
    mount.exfat \
    fsck.exfat \
    mkfs.exfat
endif

# Openssh
PRODUCT_PACKAGES += \
    scp \