From f0b9c7ccd23fabfbc1d68a7c8ecb730555cb92ae Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Wed, 4 Apr 2018 13:51:24 -0700 Subject: [PATCH] Add newer partitions to the `fastboot flash` completions. Bug: N/A Test: `fastboot flash \t` Change-Id: I1f33c90b8c26b18b9984102ac084b8865d72ff06 --- fastboot/fastboot.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastboot/fastboot.bash b/fastboot/fastboot.bash index 7c67826a7..a60046b6a 100644 --- a/fastboot/fastboot.bash +++ b/fastboot/fastboot.bash @@ -109,7 +109,7 @@ _fastboot_cmd_flash() { 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'