aboutsummaryrefslogtreecommitdiff
path: root/external
diff options
context:
space:
mode:
Diffstat (limited to 'external')
-rw-r--r--external/pflash/pflash.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/external/pflash/pflash.c b/external/pflash/pflash.c
index 002d0dc..608220f 100644
--- a/external/pflash/pflash.c
+++ b/external/pflash/pflash.c
@@ -743,6 +743,16 @@ int main(int argc, char *argv[])
exit(1);
}
+ if (flashfilename && bmc_flash) {
+ fprintf(stderr, "Filename or bmc flash but not both\n");
+ exit(1);
+ }
+
+ if (flashfilename && mtd) {
+ fprintf(stderr, "Filename or mtd access but not both\n");
+ exit(1);
+ }
+
/* If file specified but not size, get size from file
*/
if (write_file && !write_size) {