9027af0d40
Replace the remnants of engine.cpp with better functionality in FastBootDriver. Particularly, add prolog() and epilog() callbacks to FastBootDriver for printing actions and their result to the console. Then clean up the rest of fastboot.cpp to directly use FastBootDriver. Test: fastboot works Change-Id: I0ff01d6a10f75e9dc1c82b46c6e9bb3bc4c68638
18 lines
485 B
C++
18 lines
485 B
C++
#pragma once
|
|
|
|
#include <inttypes.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <string>
|
|
|
|
#include <bootimg.h>
|
|
|
|
/* util stuff */
|
|
double now();
|
|
void set_verbose();
|
|
|
|
// These printf-like functions are implemented in terms of vsnprintf, so they
|
|
// use the same attribute for compile-time format string checking.
|
|
void die(const char* fmt, ...) __attribute__((__noreturn__))
|
|
__attribute__((__format__(__printf__, 1, 2)));
|
|
void verbose(const char* fmt, ...) __attribute__((__format__(__printf__, 1, 2)));
|