diff options
Diffstat (limited to 'zarb-ml/mageia-dev/attachments/20120405')
8 files changed, 170 insertions, 0 deletions
diff --git a/zarb-ml/mageia-dev/attachments/20120405/9fb53a02/attachment-0001.obj b/zarb-ml/mageia-dev/attachments/20120405/9fb53a02/attachment-0001.obj new file mode 100644 index 000000000..c9bb54c4b --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120405/9fb53a02/attachment-0001.obj @@ -0,0 +1,21 @@ +diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm +index 1613cd0..51ebb1f 100644 +--- a/perl-install/bootloader.pm ++++ b/perl-install/bootloader.pm +@@ -161,8 +161,15 @@ sub add_boot_splash { + sub update_splash { + my ($bootloader) = @_; + ++ my %real_initrd_entries; + foreach (@{$bootloader->{entries}}) { +- add_boot_splash($_->{initrd}, $_->{vga} || $bootloader->{vga}) if $_->{initrd}; ++ if ($_->{initrd}) { ++ my $initrd = expand_symlinks($_->{initrd}); ++ $real_initrd_entries{$initrd} = $_; ++ } ++ } ++ foreach (values %real_initrd_entries) { ++ add_boot_splash($_->{initrd}, $_->{vga} || $bootloader->{vga}); + } + } +
\ No newline at end of file diff --git a/zarb-ml/mageia-dev/attachments/20120405/9fb53a02/attachment.obj b/zarb-ml/mageia-dev/attachments/20120405/9fb53a02/attachment.obj new file mode 100644 index 000000000..c9bb54c4b --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120405/9fb53a02/attachment.obj @@ -0,0 +1,21 @@ +diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm +index 1613cd0..51ebb1f 100644 +--- a/perl-install/bootloader.pm ++++ b/perl-install/bootloader.pm +@@ -161,8 +161,15 @@ sub add_boot_splash { + sub update_splash { + my ($bootloader) = @_; + ++ my %real_initrd_entries; + foreach (@{$bootloader->{entries}}) { +- add_boot_splash($_->{initrd}, $_->{vga} || $bootloader->{vga}) if $_->{initrd}; ++ if ($_->{initrd}) { ++ my $initrd = expand_symlinks($_->{initrd}); ++ $real_initrd_entries{$initrd} = $_; ++ } ++ } ++ foreach (values %real_initrd_entries) { ++ add_boot_splash($_->{initrd}, $_->{vga} || $bootloader->{vga}); + } + } +
\ No newline at end of file diff --git a/zarb-ml/mageia-dev/attachments/20120405/bc3e3c01/attachment-0001.html b/zarb-ml/mageia-dev/attachments/20120405/bc3e3c01/attachment-0001.html new file mode 100644 index 000000000..67f73af72 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120405/bc3e3c01/attachment-0001.html @@ -0,0 +1,17 @@ +<br><br><div class="gmail_quote">On Thu, Apr 5, 2012 at 00:13, Thierry Vignaud <span dir="ltr"><<a href="mailto:thierry.vignaud@gmail.com">thierry.vignaud@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"> + +<div class="im">On 4 April 2012 21:21, Pascal Terjan <<a href="mailto:pterjan@gmail.com">pterjan@gmail.com</a>> wrote:<br> +>> Yes (it has always been like that). Feel free to fix <a href="http://bootloader.pm" target="_blank">bootloader.pm</a> to<br> +>> not do it. Note, however, that you can't simply skip symlinks there as<br> +>> the initrd.img symlink may also be the only initrd in bootloader config.<br> +><br> +><br> +> What about this (untested)?<br> +<br> +</div>Well, you didn't run perl_checker, so:<br> +- you're trying to use the hash as a table, but using a filename as an index<br> +- you don't actually expand any symlink<br> +<br> +Still needs to be tested:<br> +</blockquote></div><div><br></div><div>I wrote it in a few minutes while waiting for the packager meeting to start, it was just an idea I could have written pseudo code :)</div><div>If it seems correct I'll write some working code</div> + diff --git a/zarb-ml/mageia-dev/attachments/20120405/bc3e3c01/attachment.html b/zarb-ml/mageia-dev/attachments/20120405/bc3e3c01/attachment.html new file mode 100644 index 000000000..67f73af72 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120405/bc3e3c01/attachment.html @@ -0,0 +1,17 @@ +<br><br><div class="gmail_quote">On Thu, Apr 5, 2012 at 00:13, Thierry Vignaud <span dir="ltr"><<a href="mailto:thierry.vignaud@gmail.com">thierry.vignaud@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"> + +<div class="im">On 4 April 2012 21:21, Pascal Terjan <<a href="mailto:pterjan@gmail.com">pterjan@gmail.com</a>> wrote:<br> +>> Yes (it has always been like that). Feel free to fix <a href="http://bootloader.pm" target="_blank">bootloader.pm</a> to<br> +>> not do it. Note, however, that you can't simply skip symlinks there as<br> +>> the initrd.img symlink may also be the only initrd in bootloader config.<br> +><br> +><br> +> What about this (untested)?<br> +<br> +</div>Well, you didn't run perl_checker, so:<br> +- you're trying to use the hash as a table, but using a filename as an index<br> +- you don't actually expand any symlink<br> +<br> +Still needs to be tested:<br> +</blockquote></div><div><br></div><div>I wrote it in a few minutes while waiting for the packager meeting to start, it was just an idea I could have written pseudo code :)</div><div>If it seems correct I'll write some working code</div> + diff --git a/zarb-ml/mageia-dev/attachments/20120405/cdbfae03/attachment-0001.html b/zarb-ml/mageia-dev/attachments/20120405/cdbfae03/attachment-0001.html new file mode 100644 index 000000000..f9a63b734 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120405/cdbfae03/attachment-0001.html @@ -0,0 +1,23 @@ +<p>Le 5 avr. 2012 07:34, "Frank Griffin" <<a href="mailto:ftg@roadrunner.com">ftg@roadrunner.com</a>> a écrit :</p> +<p>><br> +> On 04/02/2012 10:14 AM, Colin Guthrie wrote:<br> +>>><br> +>>><br> +>>> Rebooting does it - resets the volume level to 1%.<br> +>><br> +>> While it /shouldn't/ matter, can you *untick* the options in kmix<br> +>> related to saving/restoring the volumes and see if that helps?<br> +>><br> +>><br> +> Mixer -> Settings -> Configure KMix -> Uncheck restore volumes on login<br> +><br> +> Now the volume stays at 100%.<br> +><br> +> This resetting of config data appears to be an upstream problem that needs to be patched by distro packagers. See this coment from the MDV Cooker ML:<br> +><br> +[...] <br> +Well the config lost in meg seems to be worse than the one you're talking about ( it's affecting in fact the plasma configuration & probably related to the drop upstream the support of global plasma configuration in favor of the JavaScript configuration files which has been fixed in mga by luc).<br> + +I was able yesterday night to ( finally) install the beta2 so I'll try to reproduce later today but on the first reboot this morning I did not notice any kmix problem.<br> +I don't remember currently if we do have the restore volume option on our global kmix config since removing this option is a workaround for you.<br> +</p> diff --git a/zarb-ml/mageia-dev/attachments/20120405/cdbfae03/attachment.html b/zarb-ml/mageia-dev/attachments/20120405/cdbfae03/attachment.html new file mode 100644 index 000000000..f9a63b734 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120405/cdbfae03/attachment.html @@ -0,0 +1,23 @@ +<p>Le 5 avr. 2012 07:34, "Frank Griffin" <<a href="mailto:ftg@roadrunner.com">ftg@roadrunner.com</a>> a écrit :</p> +<p>><br> +> On 04/02/2012 10:14 AM, Colin Guthrie wrote:<br> +>>><br> +>>><br> +>>> Rebooting does it - resets the volume level to 1%.<br> +>><br> +>> While it /shouldn't/ matter, can you *untick* the options in kmix<br> +>> related to saving/restoring the volumes and see if that helps?<br> +>><br> +>><br> +> Mixer -> Settings -> Configure KMix -> Uncheck restore volumes on login<br> +><br> +> Now the volume stays at 100%.<br> +><br> +> This resetting of config data appears to be an upstream problem that needs to be patched by distro packagers. See this coment from the MDV Cooker ML:<br> +><br> +[...] <br> +Well the config lost in meg seems to be worse than the one you're talking about ( it's affecting in fact the plasma configuration & probably related to the drop upstream the support of global plasma configuration in favor of the JavaScript configuration files which has been fixed in mga by luc).<br> + +I was able yesterday night to ( finally) install the beta2 so I'll try to reproduce later today but on the first reboot this morning I did not notice any kmix problem.<br> +I don't remember currently if we do have the restore volume option on our global kmix config since removing this option is a workaround for you.<br> +</p> diff --git a/zarb-ml/mageia-dev/attachments/20120405/fe306060/attachment-0001.obj b/zarb-ml/mageia-dev/attachments/20120405/fe306060/attachment-0001.obj new file mode 100644 index 000000000..7ee8dc60f --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120405/fe306060/attachment-0001.obj @@ -0,0 +1,24 @@ +diff --git a/NEWS b/NEWS +index 44667f6..eb29ed5 100644 +--- a/NEWS ++++ b/NEWS +@@ -1,3 +1,5 @@ ++- fix loading functions ++ + Version 0.100 - 05 April 2012 + + - do not run setxkbmap during text install +diff --git a/lib/Xconfig/card.pm b/lib/Xconfig/card.pm +index 8364dc8..cf07001 100644 +--- a/lib/Xconfig/card.pm ++++ b/lib/Xconfig/card.pm +@@ -316,8 +316,8 @@ sub install_server { + delete $card->{Driver2}; + } + ++ require Xconfig::proprietary; + if ($card->{Driver2}) { +- require Xconfig::proprietary; + Xconfig::proprietary::handle_DRIVER2_NO_SSE($card); + my @pkgs = Xconfig::proprietary::pkgs_for_Driver2($card->{Driver2}, $do_pkgs); + if (@pkgs && (!$o_in || $o_in->ask_yesorno('', formatAlaTeX(N("There is a proprietary driver available for your video card which may support additional features.
\ No newline at end of file diff --git a/zarb-ml/mageia-dev/attachments/20120405/fe306060/attachment.obj b/zarb-ml/mageia-dev/attachments/20120405/fe306060/attachment.obj new file mode 100644 index 000000000..7ee8dc60f --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120405/fe306060/attachment.obj @@ -0,0 +1,24 @@ +diff --git a/NEWS b/NEWS +index 44667f6..eb29ed5 100644 +--- a/NEWS ++++ b/NEWS +@@ -1,3 +1,5 @@ ++- fix loading functions ++ + Version 0.100 - 05 April 2012 + + - do not run setxkbmap during text install +diff --git a/lib/Xconfig/card.pm b/lib/Xconfig/card.pm +index 8364dc8..cf07001 100644 +--- a/lib/Xconfig/card.pm ++++ b/lib/Xconfig/card.pm +@@ -316,8 +316,8 @@ sub install_server { + delete $card->{Driver2}; + } + ++ require Xconfig::proprietary; + if ($card->{Driver2}) { +- require Xconfig::proprietary; + Xconfig::proprietary::handle_DRIVER2_NO_SSE($card); + my @pkgs = Xconfig::proprietary::pkgs_for_Driver2($card->{Driver2}, $do_pkgs); + if (@pkgs && (!$o_in || $o_in->ask_yesorno('', formatAlaTeX(N("There is a proprietary driver available for your video card which may support additional features.
\ No newline at end of file |