summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--futility/updater_quirks.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/futility/updater_quirks.c b/futility/updater_quirks.c
index 6d510726..9c279594 100644
--- a/futility/updater_quirks.c
+++ b/futility/updater_quirks.c
@@ -263,16 +263,16 @@ static const char *extract_cbfs_file(struct updater_config *cfg,
/*
* Quirk to help preserving SMM store on devices without a dedicated "SMMSTORE"
- * FMAP section. These devices will store "smm store" file in same CBFS where
+ * FMAP section. These devices will store "smm_store" file in same CBFS where
* the legacy boot loader lives (i.e, FMAP RW_LEGACY).
* Note this currently has dependency on external program "cbstool".
* Returns 0 if the SMM store is properly preserved, or if the system is not
- * available to do that (problem in cbfstool, or no "smm store" in current
+ * available to do that (problem in cbfstool, or no "smm_store" in current
* system firmware). Otherwise non-zero as failure.
*/
static int quirk_eve_smm_store(struct updater_config *cfg)
{
- const char *smm_store_name = "smm store";
+ const char *smm_store_name = "smm_store";
const char *temp_image = updater_create_temp_file(cfg);
const char *old_store;
char *command;