diff options
author | Christian Hesse <mail@eworm.de> | 2016-06-30 10:09:26 +0200 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@gmail.com> | 2016-07-05 22:27:27 -0300 |
commit | 43a8571a6c5e5128f4bf1220549af63077c75dfd (patch) | |
tree | 138255ccd0a6646374d0a1e9bb8a1f2c65ce51ad /archiso | |
parent | e43bb7ae85cbbc96aea555cff4ba27d0b4b1d838 (diff) | |
download | archiso32-43a8571a6c5e5128f4bf1220549af63077c75dfd.tar.xz |
always set copytoram for pxe boot via http
Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'archiso')
-rw-r--r-- | archiso/initcpio/hooks/archiso_pxe_http | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/archiso/initcpio/hooks/archiso_pxe_http b/archiso/initcpio/hooks/archiso_pxe_http index 909ac78..54af7c5 100644 --- a/archiso/initcpio/hooks/archiso_pxe_http +++ b/archiso/initcpio/hooks/archiso_pxe_http @@ -3,6 +3,10 @@ run_hook() { if [[ -n "${ip}" && -n "${archiso_http_srv}" ]]; then + # booting with http is always copy-to-ram, so set here to make sure + # addresses are flushed and interface is set down + copytoram="y" + archiso_http_srv=$(eval echo ${archiso_http_srv}) [[ -z "${archiso_http_spc}" ]] && archiso_http_spc="75%" |