diff options
-rw-r--r-- | perl-install/bootloader.pm | 3 | ||||
-rw-r--r-- | perl-install/install/NEWS | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 0a0cca5bc..abaee89e1 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -474,6 +474,9 @@ sub same_entries { foreach (uniq(keys %$a, keys %$b)) { if (member($_, 'label', 'append', 'mapdrive', 'readonly', 'makeactive', 'verbatim')) { next; + } elsif ($_ eq 'grub_root' && (!$a->{$_} || !$b->{$_})) { + #- grub_root is mostly internal stuff. if it misses, it's ok + next; } else { next if $a->{$_} eq $b->{$_}; diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 4cd7d0aa6..b22b6c190 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- do not create alt_windows unless needed + (regression introduced on 2007-11-26) (#37722) - install linuxwacom if needed - load disk/ide before disk/scsi, or else sata_sis may be loaded for a SATA controller and trigger pata_sis loading before sis5513 is loaded, |