summaryrefslogtreecommitdiffstats
path: root/perl-install/detect_devices.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r--perl-install/detect_devices.pm12
1 files changed, 6 insertions, 6 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm
index d93333016..e0bd907f3 100644
--- a/perl-install/detect_devices.pm
+++ b/perl-install/detect_devices.pm
@@ -1552,14 +1552,14 @@ Returns a hash of flags (laptop, hyperv, touchpad, 64bit, wireless, ...)
sub matching_types() {
+{
- mips_lemote => is_mips_lemote(),
+ '64bit' => to_bool(arch() =~ /64/),
+ hyperv => isHyperv(),
+ laptop => isLaptop(),
mips_ict => is_mips_ict(),
+ mips_lemote => is_mips_lemote(),
mips_st_ls2f => is_mips_st_ls2f(),
- laptop => isLaptop(),
- hyperv => isHyperv(),
- 'numpad' => hasNumpad(),
- 'touchpad' => hasTouchpad(),
- '64bit' => to_bool(arch() =~ /64/),
+ numpa => hasNumpad(),
+ touchpad => hasTouchpad(),
wireless => to_bool(get_wireless_interface() || probe_category('network/wireless')),
};
}