From 6fbc9e8159cf036e2e4700a04409e32630ed5f34 Mon Sep 17 00:00:00 2001 From: gatecat Date: Fri, 4 Jun 2021 19:25:34 +0100 Subject: mistral: Remove mistral root argument Signed-off-by: gatecat --- mistral/main.cc | 5 ----- 1 file changed, 5 deletions(-) (limited to 'mistral/main.cc') diff --git a/mistral/main.cc b/mistral/main.cc index 0afba3d8..bd9ef591 100644 --- a/mistral/main.cc +++ b/mistral/main.cc @@ -47,7 +47,6 @@ MistralCommandHandler::MistralCommandHandler(int argc, char **argv) : CommandHan po::options_description MistralCommandHandler::getArchOptions() { po::options_description specific("Architecture specific options"); - specific.add_options()("mistral", po::value(), "path to mistral root"); specific.add_options()("device", po::value(), "device name (e.g. 5CSEBA6U23I7)"); specific.add_options()("qsf", po::value(), "path to QSF constraints file"); specific.add_options()("rbf", po::value(), "RBF bitstream to write"); @@ -74,13 +73,9 @@ void MistralCommandHandler::customBitstream(Context *ctx) std::unique_ptr MistralCommandHandler::createContext(dict &values) { ArchArgs chipArgs; - if (!vm.count("mistral")) { - log_error("mistral must be specified on the command line\n"); - } if (!vm.count("device")) { log_error("device must be specified on the command line (e.g. --device 5CSEBA6U23I7)\n"); } - chipArgs.mistral_root = vm["mistral"].as(); chipArgs.device = vm["device"].as(); auto ctx = std::unique_ptr(new Context(chipArgs)); if (vm.count("compress-rbf")) -- cgit v1.2.3