[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/12: installer: Correct bug detecting a wireless interface.
From: |
John Darrington |
Subject: |
08/12: installer: Correct bug detecting a wireless interface. |
Date: |
Sun, 15 Jan 2017 15:45:40 +0000 (UTC) |
jmd pushed a commit to branch wip-installer
in repository guix.
commit cce6b95f1adc1e67ab90f76815f71444e725da3d
Author: John Darrington <address@hidden>
Date: Sun Jan 15 08:02:58 2017 +0100
installer: Correct bug detecting a wireless interface.
* gnu/system/installer/network.scm (interfaces): Fix typo.
---
gnu/system/installer/network.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/system/installer/network.scm b/gnu/system/installer/network.scm
index 617e8a2..9eeefa0 100644
--- a/gnu/system/installer/network.scm
+++ b/gnu/system/installer/network.scm
@@ -51,7 +51,7 @@
`((name . ,ifce)
(class . ,(cond
((loopback-network-interface? ifce) 'loopback)
- ((string-prefix? ifce "wl") 'wireless)
+ ((string-prefix? "wl" ifce) 'wireless)
(else 'ethernet)))))
(all-network-interface-names)))
- branch wip-installer updated (3673cd8 -> ac6599d), John Darrington, 2017/01/15
- 08/12: installer: Correct bug detecting a wireless interface.,
John Darrington <=
- 01/12: installer: Add callback parameter for forms., John Darrington, 2017/01/15
- 04/12: installer: Add the notion of uuids to prospective filesystems., John Darrington, 2017/01/15
- 05/12: installer: Add a predicate to ensure the partitions have been formatted., John Darrington, 2017/01/15
- 09/12: installer: Exit the format page after all partitions are successfully formatted., John Darrington, 2017/01/15
- 11/12: installer: Replace one usage of car with match., John Darrington, 2017/01/15
- 10/12: installer: Do not perform tasks more than once., John Darrington, 2017/01/15
- 12/12: installer: Correct bug where the timezone page returned to the wrong page., John Darrington, 2017/01/15
- 02/12: installer: Remove mkfs capability from mount points page., John Darrington, 2017/01/15
- 06/12: installer: Changed N_ to M_ since N_ is used for another purpose in guix/ui.scm, John Darrington, 2017/01/15
- 07/12: installer: Whitespace changes only, John Darrington, 2017/01/15