Skip to content

Commit

Permalink
Add Padded floppy images for some (iLO/iDRAC) Remote Management Consoles
Browse files Browse the repository at this point in the history
  • Loading branch information
Juri Grabowski authored and antonym committed Oct 14, 2021
1 parent 9a937c7 commit 6437166
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
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

0 comments on commit 6437166

Please sign in to comment.