diff --git a/fastboot/fastboot.bash b/fastboot/fastboot.bash index a46f4201b4c0efb56fcc13d7d8f4f87d29fe332e..406e8b8d788faf8ee66ec112b5886664597bc768 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 modules odm odm_dlkm oem product radio recovery system vbmeta vendor vendor_dlkm" + partitions="boot bootloader dtbo modem odm odm_dlkm oem product radio recovery system vbmeta vendor vendor_dlkm" COMPREPLY=( $(compgen -W "$partitions" -- $cur) ) else _fastboot_util_complete_local_file "${cur}" '!*.img' diff --git a/fastboot/fastboot.cpp b/fastboot/fastboot.cpp index 3969367b0f8918ced006aebc8b99c160dcedac74..d33c987704fb5bd13c7574d60b942004f43e5487 100644 --- a/fastboot/fastboot.cpp +++ b/fastboot/fastboot.cpp @@ -144,7 +144,6 @@ static Image images[] = { { "cache", "cache.img", "cache.sig", "cache", true, ImageType::Extra }, { "dtbo", "dtbo.img", "dtbo.sig", "dtbo", true, ImageType::BootCritical }, { "dts", "dt.img", "dt.sig", "dts", true, ImageType::BootCritical }, - { "modules", "modules.img", "modules.sig", "modules", true, ImageType::Normal }, { "odm", "odm.img", "odm.sig", "odm", true, ImageType::Normal }, { "odm_dlkm", "odm_dlkm.img", "odm_dlkm.sig", "odm_dlkm", true, ImageType::Normal }, { "product", "product.img", "product.sig", "product", true, ImageType::Normal },