diff options
author | Thomas Bächler <thomas@archlinux.org> | 2016-06-03 14:00:47 +0200 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2016-06-03 22:28:27 +0200 |
commit | 46ddb836175f0a93a4e1dc231bcf23466c288bf4 (patch) | |
tree | 8dd566c36cd93607b83f0c3e5ded2f7c55416d3f | |
parent | b246b751dc44c16f1edd2f5dd53822c3d377e1a2 (diff) |
Netboot: Disable network interface renaming by default
Current ISOs fail to start dhcpcd if network interface renaming is enabled and the interface
is already up. Adding net.ifnames=0 to the command line works around this problem.
-rw-r--r-- | templates/releng/archlinux.ipxe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/releng/archlinux.ipxe b/templates/releng/archlinux.ipxe index 87f9c83b..4945868c 100644 --- a/templates/releng/archlinux.ipxe +++ b/templates/releng/archlinux.ipxe @@ -11,7 +11,7 @@ imgtrust set bootarch ${cpuarch} set release {{ releases.0 }} set mirrorurl -set extrabootoptions ip=dhcp +set extrabootoptions ip=dhcp net.ifnames=0 set countrycode :main |