Alexander Couzens (lynxis@fe80.eu) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10767
-gerrit
commit a7fe2da5a38649aa6d59e308dd6a1ac331909ec1 Author: Alexander Couzens lynxis@fe80.eu Date: Thu Jul 2 19:48:22 2015 +0200
util/ectool: don't dump the whole ram when writing to it
Change-Id: Ib2f417ff91862c71de32b3f8929d2017a725ea47 Signed-off-by: Alexander Couzens lynxis@fe80.eu --- util/ectool/ectool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/ectool/ectool.c b/util/ectool/ectool.c index 307c1f5..1631deb 100644 --- a/util/ectool/ectool.c +++ b/util/ectool/ectool.c @@ -124,7 +124,7 @@ int main(int argc, char *argv[]) }
/* preserve default - dump_ram if nothing selected */ - if (!dump_ram && !dump_idx && !dump_query) { + if (!dump_ram && !dump_idx && !dump_query && !write_addr) { dump_ram = 1; }