blob: 247e40e8e5949c9b3736c8cccf8bdcd0d840ceb5 [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 */ []) {
Chris Phoenix5f578222017-01-20 13:46:36 -080010 return defaultPassthroughServiceImplementation<IBootControl>();
Connor O'Briencd0d29d2016-10-10 14:41:35 -070011}