blob: a594db6e1e1814c54cc97d67386e8a640ee430c5 [file] [log] [blame]
Connor O'Briencd0d29d2016-10-10 14:41:35 -07001#define LOG_TAG "android.hardware.boot@1.0-service"
Connor O'Briencd0d29d2016-10-10 14:41:35 -07002
3#include <android/hardware/boot/1.0/IBootControl.h>
Steven Moreland5ac42e72016-10-21 12:40:38 -07004#include <hidl/LegacySupport.h>
Connor O'Briencd0d29d2016-10-10 14:41:35 -07005
6using ::android::hardware::boot::V1_0::IBootControl;
Steven Moreland5ac42e72016-10-21 12:40:38 -07007using android::hardware::defaultPassthroughServiceImplementation;
Connor O'Briencd0d29d2016-10-10 14:41:35 -07008
9int main (int /* argc */, char * /* argv */ []) {
Steven Moreland5ac42e72016-10-21 12:40:38 -070010 return defaultPassthroughServiceImplementation<IBootControl>("bootctrl");
Connor O'Briencd0d29d2016-10-10 14:41:35 -070011}