From 3828b39263d008fb6cc5ebdbe7fb49bc6f926566 Mon Sep 17 00:00:00 2001 From: Nico Huber Date: Mon, 2 May 2016 17:04:59 +0200 Subject: [PATCH] cli_classic: Remove layout-for-write-only check Change-Id: I0f5e9623ca75bc4503aeb45ae346d7573c0fef2c Signed-off-by: Nico Huber Reviewed-on: https://review.coreboot.org/17951 Tested-by: build bot (Jenkins) Reviewed-by: David Hendricks --- cli_classic.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/cli_classic.c b/cli_classic.c index 391fc5a83..7e3dfd5b5 100644 --- a/cli_classic.c +++ b/cli_classic.c @@ -376,12 +376,6 @@ int main(int argc, char *argv[]) ret = 1; goto out; } - if (layoutfile != NULL && !write_it) { - msg_gerr("Layout files are currently supported for write operations only.\n"); - ret = 1; - goto out; - } - if (process_include_args()) { ret = 1; goto out;