diff options
author | Christian Hesse <mail@eworm.de> | 2016-05-26 23:53:07 +0200 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@gmail.com> | 2016-05-27 18:57:54 -0300 |
commit | ca288915c09f116c48208b88833159617d0b1dd5 (patch) | |
tree | ff7b6b90e3722ee13e5dd71157de85a9bf5aa7ab | |
parent | 1bd3d4ec55b8f88c490874b6a454c926d2b3b1e0 (diff) | |
download | archiso32-ca288915c09f116c48208b88833159617d0b1dd5.tar.xz |
do not declare bootif_dev local
Signed-off-by: Christian Hesse <mail@eworm.de>
-rw-r--r-- | archiso/initcpio/hooks/archiso_pxe_common | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/archiso/initcpio/hooks/archiso_pxe_common b/archiso/initcpio/hooks/archiso_pxe_common index 66eecfa..abf38b0 100644 --- a/archiso/initcpio/hooks/archiso_pxe_common +++ b/archiso/initcpio/hooks/archiso_pxe_common @@ -1,7 +1,8 @@ # vim: set ft=sh: run_hook () { - local i net_mac bootif_mac bootif_dev + # Do *not* declare 'bootif_dev' local! We need it in run_latehook(). + local i net_mac bootif_mac # These variables will be parsed from /tmp/net-*.conf generated by ipconfig local DEVICE local IPV4ADDR IPV4BROADCAST IPV4NETMASK IPV4GATEWAY IPV4DNS0 IPV4DNS1 |