Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ef3679a7 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "libmodprobe: remove dummy parameters for kernel" into main

parents d774ab22 1db2d481
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -484,7 +484,11 @@ bool Modprobe::LoadModulesParallel(int num_threads) {
                return false;
            }

            if (module_options_[cnd_last].find("load_sequential=1") != std::string::npos) {
            std::string str = "load_sequential=1";
            auto it = module_options_[cnd_last].find(str);
            if (it != std::string::npos) {
                module_options_[cnd_last].erase(it, it + str.size());

                if (!LoadWithAliases(cnd_last, true)) {
                    return false;
                }