| 21 | extern const std::map<std::string, std::string> readables; |
| 22 | |
| 23 | int mainSeek(int argc, const char* argv[]) |
| 24 | { |
| 25 | flags.parseFlagsWithConfigFiles(argc, argv, {}); |
| 26 | |
| 27 | if (globalConfig()->flux_source().type() != FLUXTYPE_DRIVE) |
| 28 | error("this only makes sense with a real disk drive"); |
| 29 | |
| 30 | usbSetDrive(globalConfig()->drive().drive(), |
| 31 | false, |
| 32 | globalConfig()->drive().index_mode()); |
| 33 | usbSeek(track); |
| 34 | return 0; |
| 35 | } |
nothing calls this directly
no test coverage detected