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: Chungkai Mei <chungkai@google.com>
This commit is contained in:
parent
bbdc19b7e1
commit
1db2d481ea
1 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue