commit perl-Bootloader for openSUSE:Factory
Hello community, here is the log from the commit of package perl-Bootloader for openSUSE:Factory checked in at 2014-04-26 11:45:09 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/perl-Bootloader (Old) and /work/SRC/openSUSE:Factory/.perl-Bootloader.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "perl-Bootloader" Changes: -------- --- /work/SRC/openSUSE:Factory/perl-Bootloader/perl-Bootloader.changes 2014-04-13 13:13:17.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.perl-Bootloader.new/perl-Bootloader.changes 2014-04-26 11:45:12.000000000 +0200 @@ -1,0 +2,7 @@ +Tue Apr 22 07:33:01 UTC 2014 - mchang@suse.com + +- enable btrfs snapshot booting on ppc +- remove suse_btrfs_grub2_install.sh as it's no longer used +- 0.812 + +------------------------------------------------------------------- Old: ---- perl-Bootloader-0.811.tar.xz New: ---- perl-Bootloader-0.812.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-Bootloader.spec ++++++ --- /var/tmp/diff_new_pack.7pspqO/_old 2014-04-26 11:45:13.000000000 +0200 +++ /var/tmp/diff_new_pack.7pspqO/_new 2014-04-26 11:45:13.000000000 +0200 @@ -17,7 +17,7 @@ Name: perl-Bootloader -Version: 0.811 +Version: 0.812 Release: 0 Requires: coreutils Requires: e2fsprogs ++++++ perl-Bootloader-0.811.tar.xz -> perl-Bootloader-0.812.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/perl-Bootloader-0.811/perl-Bootloader.changes new/perl-Bootloader-0.812/perl-Bootloader.changes --- old/perl-Bootloader-0.811/perl-Bootloader.changes 2014-04-10 11:12:33.000000000 +0200 +++ new/perl-Bootloader-0.812/perl-Bootloader.changes 2014-04-22 11:43:36.000000000 +0200 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Tue Apr 22 07:33:01 UTC 2014 - mchang@suse.com + +- enable btrfs snapshot booting on ppc +- remove suse_btrfs_grub2_install.sh as it's no longer used +- 0.812 + +------------------------------------------------------------------- Wed Apr 9 15:06:33 CEST 2014 - snwint@suse.de - drop old log /var/log/YaST2/perl-BL-standalone-log diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/perl-Bootloader-0.811/src/Core/GRUB2.pm new/perl-Bootloader-0.812/src/Core/GRUB2.pm --- old/perl-Bootloader-0.811/src/Core/GRUB2.pm 2014-04-10 11:12:33.000000000 +0200 +++ new/perl-Bootloader-0.812/src/Core/GRUB2.pm 2014-04-22 11:43:36.000000000 +0200 @@ -979,7 +979,7 @@ my $suse_btrfs = delete $globinfo{"suse_btrfs"} || ""; # per default enable btrfs snapshot boot configs only on i386-pc # other architectures (s390, ppc) are planned but not ready - if ($suse_btrfs eq "" and $self->{'target'} eq "i386-pc") { + if ($suse_btrfs eq "" and $self->{'target'} =~ /(i386-pc|powerpc-ieee1275)/) { $suse_btrfs = "true"; } # $root = " root=$root" if $root ne ""; @@ -1341,20 +1341,6 @@ next; } - if ($glob{suse_btrfs} eq "true" and -e "/usr/sbin/suse_btrfs_grub2_install.sh") { - # enable btrfs snapshot boot configs only on i386-pc - # other architectures (s390, ppc) are planned but not ready - if ($self->{'target'} eq "i386-pc") { - my $rootfs = qx(/usr/sbin/grub2-probe -t fs /); - my $bootfs = qx(/usr/sbin/grub2-probe -t fs /boot); - chomp $rootfs; - chomp $bootfs; - if ($rootfs eq "btrfs" and $bootfs eq "btrfs") { - $cmd = "/usr/sbin/suse_btrfs_grub2_install.sh"; - } - } - } - my $ret = $self->RunCommand ("$cmd $opt"); return 0 if (0 != $ret); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/perl-Bootloader-0.811/src/Core/GRUB2EFI.pm new/perl-Bootloader-0.812/src/Core/GRUB2EFI.pm --- old/perl-Bootloader-0.811/src/Core/GRUB2EFI.pm 2014-04-10 11:12:33.000000000 +0200 +++ new/perl-Bootloader-0.812/src/Core/GRUB2EFI.pm 2014-04-22 11:43:36.000000000 +0200 @@ -911,14 +911,6 @@ if ($self->{secure_boot}) { $opt = "--config-file=/boot/grub2/grub.cfg"; $cmd = "/usr/sbin/shim-install"; - } elsif ($glob{suse_btrfs} eq "true" and -e "/usr/sbin/suse_btrfs_grub2_install.sh") { - my $rootfs = qx(/usr/sbin/grub2-probe -t fs /); - my $bootfs = qx(/usr/sbin/grub2-probe -t fs /boot); - chomp $rootfs; - chomp $bootfs; - if ($rootfs eq "btrfs" and $bootfs eq "btrfs") { - $cmd = "/usr/sbin/suse_btrfs_grub2_install.sh"; - } } $ret = $self->RunCommand ("$cmd $opt"); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/perl-Bootloader-0.811/version new/perl-Bootloader-0.812/version --- old/perl-Bootloader-0.811/version 2014-04-10 11:12:33.000000000 +0200 +++ new/perl-Bootloader-0.812/version 2014-04-22 11:43:36.000000000 +0200 @@ -1 +1 @@ -0.811 +0.812 -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de