Skip to content

Commit 1a6c91f

Browse files
committed
Use fstab v1 as a default.
v1 is the old recovery.fstab format that everybody is still using. Devices using v2 should set RECOVERY_FSTAB_VERSION=2 in their board files Change-Id: Ie7221f110ecc594f6f92973d2c27da10f62b6431
1 parent 62c6902 commit 1a6c91f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Android.mk

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ LOCAL_MODULE := recovery
2929

3030
LOCAL_FORCE_STATIC_EXECUTABLE := true
3131

32-
RECOVERY_FSTAB_VERSION := 2
32+
ifeq ($(RECOVERY_FSTAB_VERSION),)
33+
RECOVERY_FSTAB_VERSION := 1
34+
endif
3335

3436
ifdef I_AM_KOUSH
3537
RECOVERY_NAME := ClockworkMod Recovery

0 commit comments

Comments
 (0)