summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHung-Te Lin <hungte@chromium.org>2023-02-10 12:20:28 +0800
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2023-03-29 08:19:19 +0000
commit80d0bff778e80900eb2e4a9279e54b91bcaab5c3 (patch)
tree68aadef35d39a76ab19a903bee653a26490863e3
parentadf965eb1ebec945aa6ebd182e7b0e9b2e273ddf (diff)
downloadvboot-80d0bff778e80900eb2e4a9279e54b91bcaab5c3.tar.gz
futility: updater: remove quirks for AUE boards
Remove quirks defined for boards derived from rambi, storm, strago, and veyron. Also updated reference design names for the derived platforms. BUG=None TEST=make; run test BRANCH=None Change-Id: I71f391cc7ef7ceff8ae6a93be599390910aba20c Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/vboot_reference/+/4235305 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/vboot_reference/+/4380981 Auto-Submit: Phoebe Wang <phoebewang@chromium.org> Tested-by: Phoebe Wang <phoebewang@chromium.org> Reviewed-by: Cheng Yueh <cyueh@chromium.org> Commit-Queue: Cheng Yueh <cyueh@chromium.org>
-rw-r--r--futility/updater_quirks.c22
1 files changed, 4 insertions, 18 deletions
diff --git a/futility/updater_quirks.c b/futility/updater_quirks.c
index a46c426e..eb4d7e87 100644
--- a/futility/updater_quirks.c
+++ b/futility/updater_quirks.c
@@ -30,11 +30,7 @@ struct quirks_record {
* Examples: CL:*3365287, CL:*3351831, CL:*4441527
*/
static const struct quirks_record quirks_records[] = {
- { .match = "Google_Whirlwind.", .quirks = "enlarge_image" },
- { .match = "Google_Arkham.", .quirks = "enlarge_image" },
- { .match = "Google_Storm.", .quirks = "enlarge_image" },
- { .match = "Google_Gale.", .quirks = "enlarge_image" },
-
+ /* reference design: 'glados' */
{ .match = "Google_Chell.", .quirks = "unlock_me_for_update" },
{ .match = "Google_Lars.", .quirks = "unlock_me_for_update" },
{ .match = "Google_Sentry.", .quirks = "unlock_me_for_update" },
@@ -45,6 +41,7 @@ static const struct quirks_record quirks_records[] = {
{ .match = "Google_Eve.",
.quirks = "unlock_me_for_update,eve_smm_store" },
+ /* reference design: sarien/drallion (wilco) */
{ .match = "Google_Sarien.",
.quirks = "unlock_wilco_me_for_update" },
{ .match = "Google_Arcada.",
@@ -57,21 +54,10 @@ static const struct quirks_record quirks_records[] = {
{ .match = "Google_Trogdor.", .quirks = "min_platform_version=2" },
/* Legacy custom label units. */
+ /* reference design: oak */
{ .match = "Google_Hana.", .quirks = "allow_empty_custom_label_tag" },
- { .match = "Google_Reks.", .quirks = "allow_empty_custom_label_tag" },
- { .match = "Google_Relm.", .quirks = "allow_empty_custom_label_tag" },
- { .match = "Google_Wizpig.", .quirks = "allow_empty_custom_label_tag" },
- { .match = "Google_Enguarde.",
- .quirks = "allow_empty_custom_label_tag" },
- { .match = "Google_Expresso.",
- .quirks = "allow_empty_custom_label_tag" },
- { .match = "Google_Veyron_Jaq.",
- .quirks = "allow_empty_custom_label_tag" },
- { .match = "Google_Veyron_Jerry.",
- .quirks = "allow_empty_custom_label_tag" },
- { .match = "Google_Veyron_Mighty.",
- .quirks = "allow_empty_custom_label_tag" },
+ /* reference design: octopus */
{ .match = "Google_Phaser.", .quirks = "override_signature_id" },
};