- Timestamp:
- 08/04/11 19:40:25 (10 months ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
cli_output.c (modified) (1 diff)
-
flash.h (modified) (2 diffs)
-
flashrom.8 (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/cli_output.c
r1349 r1404 34 34 break; 35 35 case MSG_BARF: 36 if (verbose < 3) 37 return 0; 38 case MSG_DEBUG2: 36 39 if (verbose < 2) 37 40 return 0; -
trunk/flash.h
r1396 r1404 234 234 #define MSG_INFO 1 235 235 #define MSG_DEBUG 2 236 #define MSG_BARF 3 236 #define MSG_DEBUG2 3 237 #define MSG_BARF 4 237 238 #define msg_gerr(...) print(MSG_ERROR, __VA_ARGS__) /* general errors */ 238 239 #define msg_perr(...) print(MSG_ERROR, __VA_ARGS__) /* programmer errors */ … … 244 245 #define msg_pdbg(...) print(MSG_DEBUG, __VA_ARGS__) /* programmer debug */ 245 246 #define msg_cdbg(...) print(MSG_DEBUG, __VA_ARGS__) /* chip debug */ 247 #define msg_gdbg2(...) print(MSG_DEBUG2, __VA_ARGS__) /* general debug2 */ 248 #define msg_pdbg2(...) print(MSG_DEBUG2, __VA_ARGS__) /* programmer debug2 */ 249 #define msg_cdbg2(...) print(MSG_DEBUG2, __VA_ARGS__) /* chip debug2 */ 246 250 #define msg_gspew(...) print(MSG_BARF, __VA_ARGS__) /* general debug barf */ 247 251 #define msg_pspew(...) print(MSG_BARF, __VA_ARGS__) /* programmer debug barf */ -
trunk/flashrom.8
r1398 r1404 78 78 .B "\-V, \-\-verbose" 79 79 More verbose output. This option can be supplied multiple times 80 (max. 2times, i.e.81 .BR \-VV )80 (max. 3 times, i.e. 81 .BR \-VVV ) 82 82 for even more debug output. 83 83 .TP
Note: See TracChangeset
for help on using the changeset viewer.
