From ba67aa4aee3e017e22f392285a00bb0df174cd82 Mon Sep 17 00:00:00 2001 From: Daniel Zheng Date: Mon, 11 Sep 2023 16:10:45 -0700 Subject: [PATCH] remove --apply-vbmeta from vbmeta_vendor Removing this flag as --apply-vbmeta should only be used for root vbmeta partitions. Test: m fastboot_info, fastboot flashall Bug: 299440104 Change-Id: I4910008635b16c4f4194ebd45da26bd1a8875fc1 --- core/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Makefile b/core/Makefile index f1b2d29873..29c727a8bb 100644 --- a/core/Makefile +++ b/core/Makefile @@ -5588,7 +5588,7 @@ ifneq (,$(strip $(BOARD_AVB_VBMETA_SYSTEM))) $(hide) echo "flash vbmeta_system" >> $@ endif ifneq (,$(strip $(BOARD_AVB_VBMETA_VENDOR))) - $(hide) echo "flash --apply-vbmeta vbmeta_vendor" >> $@ + $(hide) echo "flash vbmeta_vendor" >> $@ endif ifneq (,$(strip $(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS))) $(hide) $(foreach partition,$(BOARD_AVB_VBMETA_CUSTOM_PARTITIONS), \