#!/bin/bash # Script to install the ipxe upstream version set -eux ### --start_docs ## Use ## =================== ##.. note:: it may be necessary to install the upstream version of ipxe, to avoid this kind of problems: ## ## * Install package dependencies ## :: sudo yum -y install xz-devel gcc ## * Clone upstream repo ## :: rm -rf /tmp/ipxe git clone git://git.ipxe.org/ipxe.git /tmp/ipxe ## * Compile and replace undionly.kpxe ## :: pushd /tmp/ipxe/src make sudo cp /tmp/ipxe/src/bin/undionly.kpxe /tftpboot/undionly.kpxe popd ### --stop_docs