summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2007-04-14 16:32:59 +0000
committerStefan Reinauer <stefan.reinauer@coreboot.org>2007-04-14 16:32:59 +0000
commit0a05d67baba067c823d198937001563c311367b6 (patch)
treef2ef244e3641ca25f81b8c0eda533601eef075ec
parent9a37ba6e9cba7d3126e7706e7dc00004d532fe2e (diff)
downloadast2050-flashrom-0a05d67baba067c823d198937001563c311367b6.zip
ast2050-flashrom-0a05d67baba067c823d198937001563c311367b6.tar.gz
Exit on return code of read_layout and print error message to stderr instead of stdout
Corresponding to flashrom svn r104 and coreboot v2 svn r2610. Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de>
-rw-r--r--flashrom.c3
-rw-r--r--layout.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/flashrom.c b/flashrom.c
index fddefea..04c8600 100644
--- a/flashrom.c
+++ b/flashrom.c
@@ -303,7 +303,8 @@ int main(int argc, char *argv[])
break;
case 'l':
tempstr=strdup(optarg);
- read_romlayout(tempstr);
+ if (read_romlayout(tempstr))
+ exit(1);
break;
case 'i':
tempstr=strdup(optarg);
diff --git a/layout.c b/layout.c
index 5478782..8ba2e41 100644
--- a/layout.c
+++ b/layout.c
@@ -106,7 +106,8 @@ int read_romlayout(char *name)
romlayout=fopen (name, "r");
if(!romlayout) {
- printf("Error while opening rom layout (%s).\n", name);
+ fprintf(stderr, "ERROR: Could not open rom layout (%s).\n",
+ name);
return -1;
}
OpenPOWER on IntegriCloud