mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-24 21:34:08 +03:00
udev: firmware - do not cancel requests in the initrd
This commit is contained in:
parent
c2f1db8f83
commit
39177382a4
@ -129,7 +129,13 @@ static int builtin_firmware(struct udev_device *dev, int argc, char *argv[], boo
|
||||
err = -errno;
|
||||
} while (err == -ENOENT);
|
||||
rc = EXIT_FAILURE;
|
||||
set_loading(udev, loadpath, "-1");
|
||||
/*
|
||||
* Do not cancel the request in the initrd, the real root might have
|
||||
* the firmware file and the 'coldplug' run in the real root will find
|
||||
* this pending request and fulfill or cancel it.
|
||||
* */
|
||||
if (!in_initrd())
|
||||
set_loading(udev, loadpath, "-1");
|
||||
goto exit;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user