diff options
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r-- | perl-install/bootloader.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 47f92062d..26ac4b59e 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -384,7 +384,7 @@ sub same_entries { my ($a, $b) = @_; foreach (uniq(keys %$a, keys %$b)) { - if (member($_, 'label', 'append', 'mapdrive')) { + if (member($_, 'label', 'append', 'mapdrive', 'readonly')) { next; } else { next if $a->{$_} eq $b->{$_}; |