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

Commit 1db2d481 authored by Chungkai Mei's avatar Chungkai Mei Committed by Juan Yescas
Browse files

libmodprobe: remove dummy parameters for kernel



we consume load_sequential only in libmodprobe, so remove this parameter
before sending them into kernel layer

Bug: 332435366
Test: Built and boot husky targets
Change-Id: I37e63723d3c8d4fd8ca1fda682b344a721b9a637
Signed-off-by: default avatarChungkai Mei <chungkai@google.com>
parent bbdc19b7
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;
                }