diff options
author | Hsuan Ting Chen <roccochen@chromium.org> | 2023-09-14 11:46:20 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-09-25 14:06:32 +0000 |
commit | a6d6818f7823459eb1b66bc8e21cd3e647801385 (patch) | |
tree | 0c0d448e3ded68d70a6de1f6b185bbcf94b6cfc9 /util/cbfstool | |
parent | 056952ef14bdc542e0ebfef48aa09f126754d3aa (diff) |
util: Drop flashrom -p host alias which equals to -p internal
There is a technical debt in ChromeOS flashrom, `cros_alias.c`, which
is to work around ChromeOS calling flashrom with `-p host` instead of
`-p internal`.
Replace all `-p host` occurrences with `-p internal`.
BUG=b:296978620
TEST=none
Signed-off-by: Hsuan Ting Chen <roccochen@chromium.org>
Change-Id: I81674213b9a21598002f349ced1130f0844841ca
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77865
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Diffstat (limited to 'util/cbfstool')
-rw-r--r-- | util/cbfstool/flashrom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cbfstool/flashrom.c b/util/cbfstool/flashrom.c index 6e438bfe22..fe3fb7b3d8 100644 --- a/util/cbfstool/flashrom.c +++ b/util/cbfstool/flashrom.c @@ -21,7 +21,7 @@ #include "flashrom.h" #define FLASHROM_EXEC_NAME "flashrom" -#define FLASHROM_PROGRAMMER_INTERNAL_AP "host" +#define FLASHROM_PROGRAMMER_INTERNAL_AP "internal" /** * Helper to create a temporary file. |