| Index: firmware/include/utility.h
|
| diff --git a/firmware/include/utility.h b/firmware/include/utility.h
|
| index 4cfb076b0ef7e3bfbbf968a13357600177830c1c..c1709384cc27cd9aa20cb876015656ba40e5a162 100644
|
| --- a/firmware/include/utility.h
|
| +++ b/firmware/include/utility.h
|
| @@ -12,6 +12,13 @@
|
|
|
| #include "sysincludes.h"
|
|
|
| +/* Debug and error output */
|
| +#ifdef VBOOT_DEBUG
|
| +#define VBDEBUG(params) debug params
|
| +#else
|
| +#define VBDEBUG(params)
|
| +#endif
|
| +
|
| /* Outputs an error message and quits. */
|
| void error(const char *format, ...);
|
|
|
|
|