summaryrefslogtreecommitdiffstats
path: root/perl-install/install/any.pm
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2015-02-18 11:36:34 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2015-02-18 11:36:34 +0100
commit780c38d93307f87cea648f0bcc5d660f7c74df08 (patch)
treee62f7fde977c8f231135b3e2153531c8c0e070ec /perl-install/install/any.pm
parentbd6adccbddafea23860accd497396a1c332c01a2 (diff)
downloaddrakx-780c38d93307f87cea648f0bcc5d660f7c74df08.tar
drakx-780c38d93307f87cea648f0bcc5d660f7c74df08.tar.gz
drakx-780c38d93307f87cea648f0bcc5d660f7c74df08.tar.bz2
drakx-780c38d93307f87cea648f0bcc5d660f7c74df08.tar.xz
drakx-780c38d93307f87cea648f0bcc5d660f7c74df08.zip
ensure we install radeon-firmware too if needed (mga#15203)
Diffstat (limited to 'perl-install/install/any.pm')
-rw-r--r--perl-install/install/any.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm
index 354058750..1ad0e6391 100644
--- a/perl-install/install/any.pm
+++ b/perl-install/install/any.pm
@@ -821,7 +821,7 @@ sub default_packages {
add_n_log("have crypted DM", "cryptsetup") if !is_empty_array_ref($o->{all_hds}{dmcrypts});
add_n_log("some disks are fake RAID", qw(mdadm dmraid)) if any { fs::type::is_dmraid($_) } @{$o->{all_hds}{hds}};
add_n_log("CPU needs microcode", "microcode_ctl") if detect_devices::hasCPUMicrocode();
- add_n_log("either CPU or GFX needs firmware", "kernel-firmware-nonfree") if is_firmware_needed();
+ add_n_log("either CPU or GFX needs firmware", qw(kernel-firmware-nonfree radeon-firmware)) if is_firmware_needed();
add_n_log("CPU needs cpupower", 'cpupower') if detect_devices::hasCPUFreq();
add_n_log("APM support needed", 'apmd') if -e "/proc/apm";
add_n_log("needed by hardware", detect_devices::probe_name('Pkg'));