diff options
author | Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> | 2011-09-11 22:08:58 +0000 |
---|---|---|
committer | Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> | 2011-09-11 22:08:58 +0000 |
commit | 1d947633b6ff7a3aaad954e15804fa42d2592023 (patch) | |
tree | 5e6101bac2850ee22a933a9b08404de9c3fb76f7 | |
parent | d5c4ab4cfd0de7427e2781fdc2f7a179865c5bc6 (diff) | |
download | flashrom-1d947633b6ff7a3aaad954e15804fa42d2592023.tar.gz flashrom-1d947633b6ff7a3aaad954e15804fa42d2592023.tar.bz2 flashrom-1d947633b6ff7a3aaad954e15804fa42d2592023.zip |
Print out the flash chip found after the probing loop in verbose mode
This allows easier identification of the flash chip used in verbose logs.
There is no (additional) output if
* -c is used to specify a flash chip, or
* multiple chips are detected, or
* no chips are detected.
Corresponding to flashrom svn r1436.
Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
-rw-r--r-- | cli_classic.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cli_classic.c b/cli_classic.c index 55c069d4..2b8309ad 100644 --- a/cli_classic.c +++ b/cli_classic.c @@ -483,6 +483,13 @@ int main(int argc, char *argv[]) } ret = 1; goto out_shutdown; + } else if (!chip_to_probe) { + /* repeat for convenience when looking at foreign logs */ + tempstr = flashbuses_to_text(flashes[0].bustype); + msg_gdbg("Found %s flash chip \"%s\" (%d kB, %s).\n", + flashes[0].vendor, flashes[0].name, + flashes[0].total_size, tempstr); + free(tempstr); } fill_flash = &flashes[0]; |