Merge pull request #272 from elishl/master

Reduce RAM usage for HTTP PXE boot
This commit is contained in:
Philip Müller 2017-07-03 10:48:31 +02:00 committed by GitHub
commit e85da8518c

View file

@ -55,10 +55,11 @@ _mnt_sfs() {
local mnt="${2}"
local img_fullname="${img##*/}"
local sfs_dev
local oper=$( [[ -n "${ip}" && -n "${miso_http_srv}" ]] && echo "mv" || echo "cp" )
if [[ "${copytoram}" == "y" ]]; then
msg -n ":: Copying squashfs image to RAM..."
if ! cp "${img}" "/run/miso/copytoram/${img_fullname}" ; then
if ! "${oper}" "${img}" "/run/miso/copytoram/${img_fullname}" ; then
echo "ERROR: while copy '${img}' to '/run/miso/copytoram/${img_fullname}'"
launch_interactive_shell
fi