Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
|------|------------|-------------|
|Kernel| [netboot.xyz.lkrn](https://boot.netboot.xyz/ipxe/netboot.xyz.lkrn)|Used for booting from GRUB/EXTLINUX|
|Floppy| [netboot.xyz.dsk](https://boot.netboot.xyz/ipxe/netboot.xyz.dsk)| Virtual floppy disk for DRAC/iLO, VMware, Virtual Box, etc|
|Padded Floppy| [netboot.xyz.pdsk](https://boot.netboot.xyz/ipxe/netboot.xyz.pdsk)| Padded Virtual floppy disk for DRAC/iLO, VMware, Virtual Box, etc|
|DHCP| [netboot.xyz.kpxe](https://boot.netboot.xyz/ipxe/netboot.xyz.kpxe)| DHCP boot image file, uses built-in iPXE NIC drivers|
|DHCP-undionly| [netboot.xyz-undionly.kpxe](https://boot.netboot.xyz/ipxe/netboot.xyz-undionly.kpxe)| DHCP boot image file, use if you have NIC issues|

Expand Down
4 changes: 4 additions & 0 deletions roles/netbootxyz/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ bootloaders:
ipxe_bin: ipxe.dsk
output_bin: .dsk
type: Floppy
- desc: Padded Virtual floppy disk for DRAC/iLO, VMware, Virtual Box, etc
ipxe_bin: ipxe.pdsk
output_bin: .pdsk
type: Floppy
- desc: DHCP boot image file, uses built-in iPXE NIC drivers
ipxe_bin: ipxe.kpxe
output_bin: .kpxe
Expand Down
3 changes: 3 additions & 0 deletions roles/netbootxyz/tasks/generate_disks_legacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
make EMBED={{ bootloader_filename }} \
TRUST={{ trust_files }} \
bin/ipxe.dsk \
bin/ipxe.pdsk \
bin/ipxe.lkrn \
bin/ipxe.kpxe \
bin/undionly.kpxe
Expand All @@ -42,6 +43,7 @@
DEBUG={{ ipxe_debug_options }} \
TRUST={{ trust_files }} \
bin/ipxe.dsk \
bin/ipxe.pdsk \
bin/ipxe.lkrn \
bin/ipxe.kpxe \
bin/undionly.kpxe
Expand All @@ -57,6 +59,7 @@
dest: "{{ netbootxyz_root }}/ipxe/{{ bootloader_filename }}{{ item }}"
remote_src: True
with_items:
- ".pdsk"
- ".dsk"
- ".lkrn"
- ".kpxe"
Expand Down