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 | |
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')
-rw-r--r-- | images/NEWS | 1 | ||||
-rwxr-xr-x | images/make_boot_img | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/images/NEWS b/images/NEWS index 5719686ef..7279c5c07 100644 --- a/images/NEWS +++ b/images/NEWS @@ -1,4 +1,5 @@ - Fix warning & use the intended compression level +- Include 'network-legacy' when using 'nfs' dracut module - sync with kernel 5.15 Version 2.83 - 27 February 2021 by Thomas Backlund 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`; |