diff options
Diffstat (limited to 'images')
-rw-r--r-- | images/NEWS | 2 | ||||
-rw-r--r-- | images/dracut.conf | 2 | ||||
-rwxr-xr-x | images/make_boot_img | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/images/NEWS b/images/NEWS index ad9f00c36..a7a7c1907 100644 --- a/images/NEWS +++ b/images/NEWS @@ -1,3 +1,5 @@ +- include NFS tools (support NFSv4, ...) + Version 2.54 - 17 November 2018 by Martin Whitaker - list_modules: don't include vboxvideo (mga#23467) diff --git a/images/dracut.conf b/images/dracut.conf index a1fd05e18..61b2e5636 100644 --- a/images/dracut.conf +++ b/images/dracut.conf @@ -1,4 +1,4 @@ hostonly=no nofscks=yes -omit_dracutmodules+=" dash modsign systemd plymouth btrfs crypt lvm cifs resume rootfs-block biosdevname usrmount shutdown network " +omit_dracutmodules+=" dash modsign systemd plymouth btrfs crypt lvm cifs resume rootfs-block biosdevname usrmount shutdown " compress=xz diff --git a/images/make_boot_img b/images/make_boot_img index accf8aef3..d24300584 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 "; + my $modules = " mgainstaller nfs "; my $drivers = `perl ../kernel/modules.pl list_needed_modules $kernel | xargs`; my $fakedrivers = `perl ../kernel/modules.pl list_fake_modules $kernel | xargs`; |