aboutsummaryrefslogtreecommitdiffstats
path: root/mmcutils
diff options
context:
space:
mode:
authorKoushik Dutta <koushd@gmail.com>2011-06-27 17:52:07 -0700
committerKoushik Dutta <koushd@gmail.com>2011-06-27 17:52:07 -0700
commit6c88ec2e8b230dacca7b71ecc086b5148aaab959 (patch)
treedecbe46c6d8979c0ad00300eaa7f0217aa4e2945 /mmcutils
parent9e0869367084267855341758e23b4bf92907f5c3 (diff)
downloadbootable_recovery-6c88ec2e8b230dacca7b71ecc086b5148aaab959.zip
bootable_recovery-6c88ec2e8b230dacca7b71ecc086b5148aaab959.tar.gz
bootable_recovery-6c88ec2e8b230dacca7b71ecc086b5148aaab959.tar.bz2
Revert "reversed logic"
This reverts commit 9e0869367084267855341758e23b4bf92907f5c3.
Diffstat (limited to 'mmcutils')
-rw-r--r--mmcutils/mmcutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mmcutils/mmcutils.c b/mmcutils/mmcutils.c
index b1238ee..dbd2246 100644
--- a/mmcutils/mmcutils.c
+++ b/mmcutils/mmcutils.c
@@ -340,7 +340,7 @@ run_exec_process ( char **argv) {
int
format_ext3_device (const char *device) {
-#ifndef BOARD_HAS_SMALL_RECOVERY
+#ifdef BOARD_HAS_SMALL_RECOVERY
char *const mke2fs[] = {MKE2FS_BIN, "-j", "-q", device, NULL};
char *const tune2fs[] = {TUNE2FS_BIN, "-C", "1", device, NULL};
#else