User Tools

Site Tools


ipxe

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision Both sides next revision
ipxe [2020/06/20 03:22]
k2patel [Custom ipxe]
ipxe [2020/06/20 03:29]
k2patel [Custom ipxe]
Line 30: Line 30:
 shell shell
 </​code>​ </​code>​
 +
 +==== Create image ====
 +=== For ISO ===
 +<code bash>
 +cd ipxe/src
 +make bin/​ipxe.iso EMBED=daac.ipxe
 +</​code>​
 +
 +:?: If you get error "make iso genisoimage:​ Uh oh, I cant find the boot image '​isolinux.bin'"​
 +
 +<code bash>
 +cd ipxe
 +wget https://​mirrors.edge.kernel.org/​pub/​linux/​utils/​boot/​syslinux/​syslinux-6.03.zip
 +mkdir syslinux-6.03
 +cd syslinux-6.03
 +unzip ../​syslinux-6.03.zip
 +cd src
 +make -j 4 ISOLINUX_BIN=../​syslinux-6.03/​bios/​core/​isolinux.bin \
 +LDLINUX_C32=../​syslinux-6.03/​./​bios/​com32/​elflink/​ldlinux/​ldlinux.c32 bin/​ipxe.iso EMBED=daac.ipxe
 +</​code>​
 +
 +
ipxe.txt ยท Last modified: 2020/08/10 02:35 (external edit)