diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2022-01-06 18:12:53 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2022-01-06 18:18:03 +0100 |
commit | 289c5cd94a3c1520cf42676d0b539d3ab3e15d9e (patch) | |
tree | 4ea90bb45f6c5f73a507adda462bcdc3bcb11b56 /images/make_boot_img | |
parent | b0038b47799af5fa286fd8c744be2b6f07601a00 (diff) | |
download | drakx-289c5cd94a3c1520cf42676d0b539d3ab3e15d9e.tar drakx-289c5cd94a3c1520cf42676d0b539d3ab3e15d9e.tar.gz drakx-289c5cd94a3c1520cf42676d0b539d3ab3e15d9e.tar.bz2 drakx-289c5cd94a3c1520cf42676d0b539d3ab3e15d9e.tar.xz drakx-289c5cd94a3c1520cf42676d0b539d3ab3e15d9e.zip |
Include 'network-legacy' when using 'nfs' dracut module
Diffstat (limited to 'images/make_boot_img')
-rwxr-xr-x | images/make_boot_img | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/images/make_boot_img b/images/make_boot_img index bb6644c01..b3ce0886e 100755 --- a/images/make_boot_img +++ b/images/make_boot_img @@ -146,7 +146,7 @@ sub initrd { my ($img, $kernel) = @_; my $stage1_binary = $ENV{USE_LOCAL_STAGE1} ? trim(`realpath ../mdk-stage1/stage1`) : ""; my $init_binary = $ENV{USE_LOCAL_STAGE1} ? trim(`realpath ../mdk-stage1/init`) : ""; - my $modules = " mgainstaller nfs "; + my $modules = " mgainstaller network-legacy nfs "; my $drivers = `perl ../kernel/modules.pl list_needed_modules $kernel | xargs`; my $fakedrivers = `perl ../kernel/modules.pl list_fake_modules $kernel | xargs`; |