1 #include "config.h"
2 
3 #include "msl_verify.hpp"
4 
5 int main(int argc, char* argv[])
6 {
7     using MinimumShipLevel = openpower::software::image::MinimumShipLevel;
8     MinimumShipLevel minimumShipLevel(PNOR_MSL);
9 
10     if (!minimumShipLevel.verify())
11     {
12         // TODO Create error log
13     }
14 
15     return 0;
16 }
17