diff options
author | Jaegeuk Kim <jaegeuk@google.com> | 2020-08-04 04:18:07 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2020-08-04 04:18:07 +0000 |
commit | ef2c28bf7185865d51b219aa693925cb348257cc (patch) | |
tree | d924bcc58daed8ed12dbaca4ce8db2f7430908f1 | |
parent | 001a5df898288890f1c6ba2cd8dad1c391265c2c (diff) | |
parent | a389610d9c94bcd6729bb3550ea5824ad371bc5e (diff) |
Merge "support f2fs casefolding formatting tool"
-rw-r--r-- | fastboot/Android.bp | 1 | ||||
-rw-r--r-- | fastboot/Android.mk | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/fastboot/Android.bp b/fastboot/Android.bp index bdb786c49..6673543d8 100644 --- a/fastboot/Android.bp +++ b/fastboot/Android.bp @@ -271,6 +271,7 @@ cc_binary_host { required: [ "mke2fs", "make_f2fs", + "make_f2fs_casefold", ], dist: { targets: [ diff --git a/fastboot/Android.mk b/fastboot/Android.mk index fd009e768..0e918a35a 100644 --- a/fastboot/Android.mk +++ b/fastboot/Android.mk @@ -21,6 +21,7 @@ LOCAL_PATH:= $(call my-dir) my_dist_files := $(SOONG_HOST_OUT_EXECUTABLES)/mke2fs my_dist_files += $(SOONG_HOST_OUT_EXECUTABLES)/e2fsdroid my_dist_files += $(SOONG_HOST_OUT_EXECUTABLES)/make_f2fs +my_dist_files += $(SOONG_HOST_OUT_EXECUTABLES)/make_f2fs_casefold my_dist_files += $(SOONG_HOST_OUT_EXECUTABLES)/sload_f2fs $(call dist-for-goals,dist_files sdk win_sdk,$(my_dist_files)) my_dist_files := |