Merge "Add newer partitions to the `fastboot flash` completions."
am: 3810f0076b

Change-Id: Ia8f9159b506c7f4a20dbe0b387cb0deb65824c8a
diff --git a/fastboot/fastboot.bash b/fastboot/fastboot.bash
index 7c67826..a60046b 100644
--- a/fastboot/fastboot.bash
+++ b/fastboot/fastboot.bash
@@ -109,7 +109,7 @@
 
     cur="${COMP_WORDS[COMP_CWORD]}"
     if [[ $i -eq $COMP_CWORD ]]; then
-        partitions="boot bootloader dtbo modem radio recovery system vbmeta vendor"
+        partitions="boot bootloader dtbo modem odm oem product radio recovery system vbmeta vendor"
         COMPREPLY=( $(compgen -W "$partitions" -- $cur) )
     else
         _fastboot_util_complete_local_file "${cur}" '!*.img'