diff options
author | Olivier Blin <blino@mageia.org> | 2011-12-14 22:49:18 +0000 |
---|---|---|
committer | Olivier Blin <blino@mageia.org> | 2011-12-14 22:49:18 +0000 |
commit | e438b2ae5cae070f0b4ec66a1d9e9b3e34e1377c (patch) | |
tree | 6d4786a59bc288dd7c5e3b791a453d5465c6ccb1 /perl-install/bootloader.pm | |
parent | 2cf985c77a51bae94daaeb79d025bb3ef47ec291 (diff) | |
download | drakx-e438b2ae5cae070f0b4ec66a1d9e9b3e34e1377c.tar drakx-e438b2ae5cae070f0b4ec66a1d9e9b3e34e1377c.tar.gz drakx-e438b2ae5cae070f0b4ec66a1d9e9b3e34e1377c.tar.bz2 drakx-e438b2ae5cae070f0b4ec66a1d9e9b3e34e1377c.tar.xz drakx-e438b2ae5cae070f0b4ec66a1d9e9b3e34e1377c.zip |
do not hardcode systemd default through kernel command line, it should be easily overridable by just picking the proper init package
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r-- | perl-install/bootloader.pm | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index f8cdc6ba3..41b77b5b3 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -720,12 +720,6 @@ sub add_kernel { $v->{append} = pack_append($simple, $dict); } - if (-e "$::prefix/bin/systemd") { - log::l("defaulting to systemd"); - #@$dict = grep { $_->[0] ne 'devfs' } @$dict; - $v->{append} .= " init=/bin/systemd"; - } - #- new versions of yaboot do not handle symlinks $b_nolink ||= arch() =~ /ppc/; $b_no_initrd //= (arch() =~ /mips|arm/) && !detect_devices::is_mips_gdium(); |