# Module dependency requirements.
depends() {
- # This module has external dependency on the systemd module.
- echo systemd
- # Return 0 to include the dependent systemd module in the initramfs.
+ # Return 0 to include the dependent module(s) in the initramfs.
return 0
}
depends() {
# This module has external dependency on the systemd module.
- echo systemd systemd-journald systemd-sysctl
- # Return 0 to include the dependent systemd module in the initramfs.
+ echo systemd-journald systemd-sysctl
+ # Return 0 to include the dependent module(s) in the initramfs.
return 0
}
# Module dependency requirements.
depends() {
- # This module has external dependency on the systemd module.
- echo systemd
- # Return 0 to include the dependent systemd module in the initramfs.
+ # Return 0 to include the dependent module(s) in the initramfs.
return 0
}
depends() {
# This module has external dependency on other module(s).
- echo systemd systemd-modules-load
+ echo systemd-modules-load
# Return 0 to include the dependent module(s) in the initramfs.
return 0
# Module dependency requirements.
depends() {
- # This module has external dependency on the systemd module.
- echo systemd
- # Return 0 to include the dependent systemd module in the initramfs.
+ # Return 0 to include the dependent module(s) in the initramfs.
return 0
}