fix(systemd-modules): remove dependency on systemd meta module
Depending on systemd meta module causes circular dependency, prevents the existance of multiple systemd based meta modules and is redunant.master
parent
2257d54583
commit
afef455718
|
@ -17,9 +17,7 @@ check() {
|
|||
# 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
|
||||
|
||||
}
|
||||
|
|
|
@ -18,8 +18,8 @@ check() {
|
|||
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
|
||||
|
||||
}
|
||||
|
|
|
@ -16,9 +16,7 @@ check() {
|
|||
# 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
|
||||
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@ check() {
|
|||
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
|
||||
|
||||
|
|
|
@ -17,9 +17,7 @@ check() {
|
|||
# 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
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue