index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Dylan Taylor <dylan@dylanmtaylor.com> | 2021-05-20 08:13:57 -0400 |
---|---|---|
committer | Dylan Taylor <dylan@dylanmtaylor.com> | 2021-05-20 08:13:57 -0400 |
commit | 9c8d55dd76171909da27c90944ef9a686f6426cf (patch) | |
tree | 8da5e3a43fc4adf99c78a97a30cb548d02737929 /archinstall/lib/networking.py | |
parent | f137bc4076ec7e4e0914be466ef403810ab02fca (diff) | |
parent | 86fd64ef8ae804ae26bd02f90dbb780a8151f439 (diff) |
-rw-r--r-- | archinstall/lib/networking.py | 2 |
diff --git a/archinstall/lib/networking.py b/archinstall/lib/networking.py index eb11a47e..0643c9cf 100644 --- a/archinstall/lib/networking.py +++ b/archinstall/lib/networking.py @@ -10,6 +10,7 @@ from .general import SysCommand from .output import log from .storage import storage + def get_hw_addr(ifname): s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) info = fcntl.ioctl(s.fileno(), 0x8927, struct.pack('256s', bytes(ifname, 'utf-8')[:15])) @@ -35,6 +36,7 @@ def check_mirror_reachable(): return False + def enrich_iface_types(interfaces: dict): result = {} for iface in interfaces: |