diff options
author | Colin Guthrie <colin@mageia.org> | 2012-04-10 20:30:53 +0000 |
---|---|---|
committer | Colin Guthrie <colin@mageia.org> | 2012-04-10 20:30:53 +0000 |
commit | 9e3367d2f80d6d140ed921adb4d6cfcdd0778148 (patch) | |
tree | 5638610cff8940ef29b4a1e4853ba3883d6faeb1 /perl-install/install/steps.pm | |
parent | 9bb834d0897e829586c4047fa119cd71ddc95380 (diff) | |
download | drakx-9e3367d2f80d6d140ed921adb4d6cfcdd0778148.tar drakx-9e3367d2f80d6d140ed921adb4d6cfcdd0778148.tar.gz drakx-9e3367d2f80d6d140ed921adb4d6cfcdd0778148.tar.bz2 drakx-9e3367d2f80d6d140ed921adb4d6cfcdd0778148.tar.xz drakx-9e3367d2f80d6d140ed921adb4d6cfcdd0778148.zip |
installer: allow generation of host-only initrd during install
During install dracut will generate a generic (i.e. large) initrd.
As we now start udev early, we can use udev metadata when generating
our initrd and thus we can generate our default, hostonly initrd.
Thus ensure relevant directories (/run) are bind mounted and fake a
/run/initramfs folder which is used in dracut to detect a boot
which will have sufficient metadata in the udev DB.
Tested with an install on a new disk and creating LVMs and
also on an install where the pre-existing LVMs were reused.
Suitable fixes to drakx-in-chroot have also been added, but
remain untested
Diffstat (limited to 'perl-install/install/steps.pm')
-rw-r--r-- | perl-install/install/steps.pm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/install/steps.pm b/perl-install/install/steps.pm index 53e87f0c3..85de324cb 100644 --- a/perl-install/install/steps.pm +++ b/perl-install/install/steps.pm @@ -377,6 +377,12 @@ sub beforeInstallPackages { run_program::run('mount', '--bind', '/tmp/.X11-unix', "$::prefix/tmp/.X11-unix"); } + if (-e '/run') { + mkdir "$::prefix/run"; + run_program::run('mount', '--bind', '/run', "$::prefix/run"); + } + + log::l("setting excludedocs to $o->{excludedocs}"); substInFile { s/%_excludedocs.*//; $_ .= "%_excludedocs yes\n" if eof && $o->{excludedocs} } "$::prefix/etc/rpm/macros"; |