├── README.md └── iPXE └── ipxe-bd13697 ├── COPYING ├── COPYING.GPLv2 ├── COPYING.UBDL ├── README └── src ├── .gitignore ├── Makefile ├── Makefile.efi ├── Makefile.housekeeping ├── Makefile.linux ├── arch ├── arm │ ├── Makefile │ ├── Makefile.efi │ ├── Makefile.linux │ ├── core │ │ └── arm_io.c │ ├── include │ │ ├── bits │ │ │ ├── acpi.h │ │ │ ├── endian.h │ │ │ ├── errfile.h │ │ │ ├── hyperv.h │ │ │ ├── io.h │ │ │ ├── iomap.h │ │ │ ├── nap.h │ │ │ ├── pci_io.h │ │ │ ├── reboot.h │ │ │ ├── sanboot.h │ │ │ ├── smbios.h │ │ │ ├── time.h │ │ │ ├── uaccess.h │ │ │ ├── uart.h │ │ │ ├── umalloc.h │ │ │ └── xen.h │ │ └── ipxe │ │ │ ├── arm_io.h │ │ │ └── efi │ │ │ └── efiarm_nap.h │ └── interface │ │ └── efi │ │ └── efiarm_nap.c ├── arm32 │ ├── Makefile │ ├── Makefile.efi │ ├── core │ │ ├── arm32_bigint.c │ │ └── setjmp.S │ ├── include │ │ ├── bits │ │ │ ├── bigint.h │ │ │ ├── bitops.h │ │ │ ├── byteswap.h │ │ │ ├── compiler.h │ │ │ ├── profile.h │ │ │ ├── stdint.h │ │ │ ├── string.h │ │ │ ├── strings.h │ │ │ └── tcpip.h │ │ ├── gdbmach.h │ │ ├── ipxe │ │ │ └── efi │ │ │ │ └── dhcparch.h │ │ ├── limits.h │ │ └── setjmp.h │ └── libgcc │ │ ├── lldivmod.S │ │ └── llshift.S ├── arm64 │ ├── Makefile │ ├── Makefile.efi │ ├── Makefile.linux │ ├── core │ │ ├── arm64_bigint.c │ │ ├── arm64_string.c │ │ ├── arm64_tcpip.c │ │ └── setjmp.S │ └── include │ │ ├── bits │ │ ├── bigint.h │ │ ├── bitops.h │ │ ├── byteswap.h │ │ ├── compiler.h │ │ ├── profile.h │ │ ├── stdint.h │ │ ├── string.h │ │ ├── strings.h │ │ └── tcpip.h │ │ ├── gdbmach.h │ │ ├── ipxe │ │ └── efi │ │ │ └── dhcparch.h │ │ ├── limits.h │ │ └── setjmp.h ├── i386 │ ├── Makefile │ ├── Makefile.efi │ ├── Makefile.linux │ ├── Makefile.pcbios │ ├── README.i386 │ ├── core │ │ ├── gdbidt.S │ │ ├── nulltrap.c │ │ └── setjmp.S │ ├── include │ │ ├── bits │ │ │ ├── byteswap.h │ │ │ ├── compiler.h │ │ │ ├── hyperv.h │ │ │ ├── profile.h │ │ │ ├── stdint.h │ │ │ └── strings.h │ │ ├── gdbmach.h │ │ ├── ipxe │ │ │ ├── efi │ │ │ │ └── dhcparch.h │ │ │ └── msr.h │ │ ├── limits.h │ │ └── setjmp.h │ ├── kir-Makefile │ ├── scripts │ │ └── i386-kir.lds │ └── tests │ │ ├── gdbstub_test.S │ │ └── gdbstub_test.gdb ├── loong64 │ ├── Makefile │ ├── Makefile.linux │ ├── core │ │ ├── loong64_bigint.c │ │ ├── loong64_string.c │ │ └── setjmp.S │ └── include │ │ ├── bits │ │ ├── acpi.h │ │ ├── bigint.h │ │ ├── bitops.h │ │ ├── byteswap.h │ │ ├── compiler.h │ │ ├── endian.h │ │ ├── errfile.h │ │ ├── hyperv.h │ │ ├── io.h │ │ ├── iomap.h │ │ ├── nap.h │ │ ├── pci_io.h │ │ ├── profile.h │ │ ├── reboot.h │ │ ├── sanboot.h │ │ ├── smbios.h │ │ ├── stdint.h │ │ ├── string.h │ │ ├── strings.h │ │ ├── tcpip.h │ │ ├── time.h │ │ ├── uaccess.h │ │ ├── uart.h │ │ ├── umalloc.h │ │ └── xen.h │ │ ├── gdbmach.h │ │ ├── ipxe │ │ └── efi │ │ │ └── dhcparch.h │ │ ├── limits.h │ │ └── setjmp.h ├── x86 │ ├── Makefile │ ├── Makefile.efi │ ├── Makefile.linux │ ├── Makefile.pcbios │ ├── core │ │ ├── basemem_packet.c │ │ ├── cpuid.c │ │ ├── cpuid_settings.c │ │ ├── debugcon.c │ │ ├── dumpregs.c │ │ ├── gdbmach.c │ │ ├── patch_cf.S │ │ ├── pci_autoboot.c │ │ ├── pcidirect.c │ │ ├── pic8259.c │ │ ├── pit8254.c │ │ ├── rdrand.c │ │ ├── rdtsc_timer.c │ │ ├── relocate.c │ │ ├── runtime.c │ │ ├── stack.S │ │ ├── stack16.S │ │ ├── video_subr.c │ │ ├── vram_settings.c │ │ ├── x86_bigint.c │ │ ├── x86_io.c │ │ ├── x86_string.c │ │ ├── x86_tcpip.c │ │ └── x86_uart.c │ ├── drivers │ │ ├── hyperv │ │ │ ├── hyperv.c │ │ │ └── hyperv.h │ │ ├── net │ │ │ ├── undi.c │ │ │ ├── undiisr.S │ │ │ ├── undiload.c │ │ │ ├── undinet.c │ │ │ ├── undionly.c │ │ │ ├── undipreload.c │ │ │ └── undirom.c │ │ └── xen │ │ │ ├── hvm.c │ │ │ └── hvm.h │ ├── hci │ │ └── commands │ │ │ ├── cpuid_cmd.c │ │ │ └── pxe_cmd.c │ ├── image │ │ ├── bootsector.c │ │ ├── bzimage.c │ │ ├── com32.c │ │ ├── comboot.c │ │ ├── elfboot.c │ │ ├── initrd.c │ │ ├── multiboot.c │ │ ├── nbi.c │ │ ├── pxe_image.c │ │ └── sdi.c │ ├── include │ │ ├── basemem.h │ │ ├── basemem_packet.h │ │ ├── bios.h │ │ ├── bios_disks.h │ │ ├── biosint.h │ │ ├── bits │ │ │ ├── acpi.h │ │ │ ├── bigint.h │ │ │ ├── bitops.h │ │ │ ├── endian.h │ │ │ ├── errfile.h │ │ │ ├── io.h │ │ │ ├── iomap.h │ │ │ ├── nap.h │ │ │ ├── pci_io.h │ │ │ ├── reboot.h │ │ │ ├── sanboot.h │ │ │ ├── smbios.h │ │ │ ├── string.h │ │ │ ├── tcpip.h │ │ │ ├── time.h │ │ │ ├── uaccess.h │ │ │ ├── uart.h │ │ │ ├── umalloc.h │ │ │ └── xen.h │ │ ├── bochs.h │ │ ├── bootsector.h │ │ ├── bzimage.h │ │ ├── comboot.h │ │ ├── fakee820.h │ │ ├── initrd.h │ │ ├── int13.h │ │ ├── ipxe │ │ │ ├── acpipwr.h │ │ │ ├── apm.h │ │ │ ├── bios_nap.h │ │ │ ├── bios_reboot.h │ │ │ ├── bios_sanboot.h │ │ │ ├── bios_smbios.h │ │ │ ├── cpuid.h │ │ │ ├── efi │ │ │ │ └── efix86_nap.h │ │ │ ├── errno │ │ │ │ └── pcbios.h │ │ │ ├── guestrpc.h │ │ │ ├── iomap_pages.h │ │ │ ├── memtop_umalloc.h │ │ │ ├── pcbios │ │ │ │ └── dhcparch.h │ │ │ ├── pcibios.h │ │ │ ├── pcicloud.h │ │ │ ├── pcidirect.h │ │ │ ├── pit8254.h │ │ │ ├── rsdp.h │ │ │ ├── rtc_time.h │ │ │ ├── vesafb.h │ │ │ ├── vmware.h │ │ │ └── x86_io.h │ │ ├── kir.h │ │ ├── libkir.h │ │ ├── librm.h │ │ ├── memsizes.h │ │ ├── multiboot.h │ │ ├── pic8259.h │ │ ├── pnpbios.h │ │ ├── pxe.h │ │ ├── pxe_api.h │ │ ├── pxe_call.h │ │ ├── pxe_error.h │ │ ├── pxe_types.h │ │ ├── realmode.h │ │ ├── registers.h │ │ ├── rmsetjmp.h │ │ ├── rtc.h │ │ ├── sdi.h │ │ ├── undi.h │ │ ├── undiload.h │ │ ├── undinet.h │ │ ├── undipreload.h │ │ ├── undirom.h │ │ └── vga.h │ ├── interface │ │ ├── efi │ │ │ └── efix86_nap.c │ │ ├── pcbios │ │ │ ├── acpi_timer.c │ │ │ ├── acpipwr.c │ │ │ ├── apm.c │ │ │ ├── basemem.c │ │ │ ├── bios_cachedhcp.c │ │ │ ├── bios_console.c │ │ │ ├── bios_nap.c │ │ │ ├── bios_reboot.c │ │ │ ├── bios_smbios.c │ │ │ ├── bios_timer.c │ │ │ ├── biosint.c │ │ │ ├── e820mangler.S │ │ │ ├── fakee820.c │ │ │ ├── hidemem.c │ │ │ ├── int13.c │ │ │ ├── int13con.c │ │ │ ├── memmap.c │ │ │ ├── memtop_umalloc.c │ │ │ ├── pcibios.c │ │ │ ├── pcicloud.c │ │ │ ├── pnpbios.c │ │ │ ├── rsdp.c │ │ │ ├── rtc_entropy.c │ │ │ ├── rtc_time.c │ │ │ └── vesafb.c │ │ ├── pxe │ │ │ ├── pxe_call.c │ │ │ ├── pxe_entry.S │ │ │ ├── pxe_exit_hook.c │ │ │ ├── pxe_file.c │ │ │ ├── pxe_loader.c │ │ │ ├── pxe_preboot.c │ │ │ ├── pxe_tftp.c │ │ │ ├── pxe_udp.c │ │ │ └── pxe_undi.c │ │ ├── syslinux │ │ │ ├── com32_call.c │ │ │ ├── com32_wrapper.S │ │ │ ├── comboot_call.c │ │ │ └── comboot_resolv.c │ │ └── vmware │ │ │ ├── guestinfo.c │ │ │ ├── guestrpc.c │ │ │ ├── vmconsole.c │ │ │ └── vmware.c │ ├── prefix │ │ ├── bootpart.S │ │ ├── dskprefix.S │ │ ├── exeprefix.S │ │ ├── hdprefix.S │ │ ├── isaromprefix.S │ │ ├── kkkpxeprefix.S │ │ ├── kkpxeprefix.S │ │ ├── kpxeprefix.S │ │ ├── libprefix.S │ │ ├── lkrnprefix.S │ │ ├── mbr.S │ │ ├── mromprefix.S │ │ ├── nbiprefix.S │ │ ├── nullprefix.S │ │ ├── pciromprefix.S │ │ ├── pxeprefix.S │ │ ├── rawprefix.S │ │ ├── romprefix.S │ │ ├── undiloader.S │ │ ├── unlzma.S │ │ ├── unlzma16.S │ │ └── usbdisk.S │ ├── scripts │ │ ├── pcbios.lds │ │ └── prefixonly.lds │ ├── tests │ │ └── comboot │ │ │ ├── shuffle-simple.asm │ │ │ └── version.asm │ └── transitions │ │ ├── liba20.S │ │ ├── libkir.S │ │ ├── libpm.S │ │ ├── librm.S │ │ ├── librm_mgmt.c │ │ └── librm_test.c └── x86_64 │ ├── Makefile │ ├── Makefile.efi │ ├── Makefile.linux │ ├── Makefile.pcbios │ ├── core │ ├── gdbidt.S │ └── setjmp.S │ └── include │ ├── bits │ ├── byteswap.h │ ├── compiler.h │ ├── hyperv.h │ ├── profile.h │ ├── stdint.h │ └── strings.h │ ├── gdbmach.h │ ├── ipxe │ ├── efi │ │ └── dhcparch.h │ └── msr.h │ ├── limits.h │ └── setjmp.h ├── build.sh ├── config ├── branding.h ├── cloud │ ├── aws.ipxe │ ├── colour.h │ ├── console.h │ ├── crypto.h │ ├── gce.ipxe │ ├── general.h │ ├── ioapi.h │ ├── serial.h │ ├── settings.h │ ├── sideband.h │ └── usb.h ├── colour.h ├── config.c ├── config_archive.c ├── config_asn1.c ├── config_crypto.c ├── config_efi.c ├── config_entropy.c ├── config_ethernet.c ├── config_fc.c ├── config_fdt.c ├── config_http.c ├── config_infiniband.c ├── config_linux.c ├── config_net80211.c ├── config_pcbios.c ├── config_pixbuf.c ├── config_romprefix.c ├── config_route.c ├── config_timer.c ├── config_usb.c ├── console.h ├── crypto.h ├── defaults.h ├── defaults │ ├── efi.h │ ├── linux.h │ └── pcbios.h ├── dhcp.h ├── entropy.h ├── fault.h ├── fdt.h ├── general.h ├── ioapi.h ├── isa.h ├── named.h ├── nap.h ├── qemu │ ├── colour.h │ ├── console.h │ ├── crypto.h │ ├── general.h │ ├── ioapi.h │ ├── serial.h │ ├── settings.h │ ├── sideband.h │ └── usb.h ├── reboot.h ├── rpi │ ├── colour.h │ ├── console.h │ ├── crypto.h │ ├── general.h │ ├── ioapi.h │ ├── serial.h │ ├── settings.h │ ├── sideband.h │ └── usb.h ├── sanboot.h ├── serial.h ├── settings.h ├── sideband.h ├── time.h ├── timer.h ├── umalloc.h ├── usb.h └── vbox │ ├── README │ ├── colour.h │ ├── console.h │ ├── crypto.h │ ├── general.h │ ├── ioapi.h │ ├── serial.h │ ├── settings.h │ ├── sideband.h │ └── usb.h ├── core ├── acpi.c ├── acpi_settings.c ├── acpimac.c ├── ansicol.c ├── ansicoldef.c ├── ansiesc.c ├── archive.c ├── asprintf.c ├── assert.c ├── base16.c ├── base64.c ├── basename.c ├── bitmap.c ├── blockdev.c ├── blocktrans.c ├── cachedhcp.c ├── console.c ├── cpio.c ├── ctype.c ├── cwuri.c ├── debug.c ├── debug_md5.c ├── device.c ├── dma.c ├── downloader.c ├── dummy_sanboot.c ├── dynkeymap.c ├── edd.c ├── errno.c ├── exec.c ├── fault.c ├── fbcon.c ├── fdt.c ├── fnrec.c ├── gdbserial.c ├── gdbstub.c ├── gdbudp.c ├── getkey.c ├── getopt.c ├── grub │ ├── boot │ │ └── decompressor │ │ │ ├── minilib.c │ │ │ ├── none.c │ │ │ └── xz.c │ ├── commands │ │ ├── cat.c │ │ ├── hashsum.c │ │ ├── hexdump.c │ │ └── ls.c │ ├── disk │ │ ├── loopback.c │ │ └── sandisk.c │ ├── fs │ │ ├── ext2.c │ │ ├── fshelp.c │ │ ├── iso9660.c │ │ ├── squash4.c │ │ └── zfs │ │ │ ├── zfs.c │ │ │ ├── zfs_fletcher.c │ │ │ ├── zfs_lz4.c │ │ │ ├── zfs_lzjb.c │ │ │ ├── zfs_sha256.c │ │ │ ├── zfscrypt.c │ │ │ └── zfsinfo.c │ ├── include │ │ ├── config-util.h │ │ ├── config.h │ │ └── grub │ │ │ ├── acorn_filecore.h │ │ │ ├── acpi.h │ │ │ ├── aout.h │ │ │ ├── archelp.h │ │ │ ├── at_keyboard.h │ │ │ ├── ata.h │ │ │ ├── auth.h │ │ │ ├── autoefi.h │ │ │ ├── backtrace.h │ │ │ ├── bitmap.h │ │ │ ├── bitmap_scale.h │ │ │ ├── boottime.h │ │ │ ├── bsdlabel.h │ │ │ ├── btrfs.h │ │ │ ├── bufio.h │ │ │ ├── cache.h │ │ │ ├── cbfs_core.h │ │ │ ├── charset.h │ │ │ ├── cmos.h │ │ │ ├── color.h │ │ │ ├── command.h │ │ │ ├── compiler-rt-emu.h │ │ │ ├── compiler-rt.h │ │ │ ├── compiler.h │ │ │ ├── cpu │ │ │ ├── aa64_uefi │ │ │ │ └── types.h │ │ │ ├── ia32_uefi │ │ │ │ └── types.h │ │ │ ├── x64_uefi │ │ │ │ └── types.h │ │ │ └── x86_64_bios │ │ │ │ └── types.h │ │ │ ├── crypto.h │ │ │ ├── cryptodisk.h │ │ │ ├── cs5536.h │ │ │ ├── datetime.h │ │ │ ├── decompressor.h │ │ │ ├── deflate.h │ │ │ ├── device.h │ │ │ ├── disk.h │ │ │ ├── diskfilter.h │ │ │ ├── dl.h │ │ │ ├── dma.h │ │ │ ├── elf.h │ │ │ ├── elfload.h │ │ │ ├── env.h │ │ │ ├── env_private.h │ │ │ ├── err.h │ │ │ ├── error.h │ │ │ ├── exfat.h │ │ │ ├── extcmd.h │ │ │ ├── fat.h │ │ │ ├── fbblit.h │ │ │ ├── fbfill.h │ │ │ ├── fbutil.h │ │ │ ├── fdt.h │ │ │ ├── fdtbus.h │ │ │ ├── file.h │ │ │ ├── fileid.h │ │ │ ├── font.h │ │ │ ├── fontformat.h │ │ │ ├── fs.h │ │ │ ├── fshelp.h │ │ │ ├── gdb.h │ │ │ ├── gfxmenu_model.h │ │ │ ├── gfxmenu_view.h │ │ │ ├── gfxterm.h │ │ │ ├── gfxwidgets.h │ │ │ ├── gpt_partition.h │ │ │ ├── gui.h │ │ │ ├── gui_string_util.h │ │ │ ├── hfs.h │ │ │ ├── hfsplus.h │ │ │ ├── i18n.h │ │ │ ├── icon_manager.h │ │ │ ├── kernel.h │ │ │ ├── keyboard_layouts.h │ │ │ ├── legacy_parse.h │ │ │ ├── lib │ │ │ ├── LzFind.h │ │ │ ├── LzHash.h │ │ │ ├── LzmaDec.h │ │ │ ├── LzmaEnc.h │ │ │ ├── LzmaTypes.h │ │ │ ├── arg.h │ │ │ ├── cmdline.h │ │ │ ├── crc.h │ │ │ ├── envblk.h │ │ │ └── hexdump.h │ │ │ ├── libpciaccess.h │ │ │ ├── linux.h │ │ │ ├── list.h │ │ │ ├── loader.h │ │ │ ├── lvm.h │ │ │ ├── macho.h │ │ │ ├── machoload.h │ │ │ ├── memory.h │ │ │ ├── menu.h │ │ │ ├── menu_viewer.h │ │ │ ├── misc.h │ │ │ ├── mm.h │ │ │ ├── mm_private.h │ │ │ ├── module_verifier.h │ │ │ ├── msdos_partition.h │ │ │ ├── multiboot.h │ │ │ ├── multiboot2.h │ │ │ ├── multiboot_loader.h │ │ │ ├── net.h │ │ │ ├── net │ │ │ ├── arp.h │ │ │ ├── ethernet.h │ │ │ ├── ip.h │ │ │ ├── netbuff.h │ │ │ ├── tcp.h │ │ │ └── udp.h │ │ │ ├── normal.h │ │ │ ├── ns8250.h │ │ │ ├── ntfs.h │ │ │ ├── offsets.h │ │ │ ├── parser.h │ │ │ ├── partition.h │ │ │ ├── parttool.h │ │ │ ├── pci.h │ │ │ ├── pciutils.h │ │ │ ├── priority_queue.h │ │ │ ├── procfs.h │ │ │ ├── ps2.h │ │ │ ├── pubkey.h │ │ │ ├── random.h │ │ │ ├── reader.h │ │ │ ├── reed_solomon.h │ │ │ ├── relocator.h │ │ │ ├── relocator_private.h │ │ │ ├── script_sh.h │ │ │ ├── scsi.h │ │ │ ├── scsicmd.h │ │ │ ├── sdl.h │ │ │ ├── search.h │ │ │ ├── serial.h │ │ │ ├── setjmp.h │ │ │ ├── smbios.h │ │ │ ├── smbus.h │ │ │ ├── speaker.h │ │ │ ├── symbol.h │ │ │ ├── syslinux_parse.h │ │ │ ├── term.h │ │ │ ├── terminfo.h │ │ │ ├── test.h │ │ │ ├── time.h │ │ │ ├── tparm.h │ │ │ ├── tpm.h │ │ │ ├── trig.h │ │ │ ├── types.h │ │ │ ├── udf.h │ │ │ ├── unicode.h │ │ │ ├── usb.h │ │ │ ├── usbdesc.h │ │ │ ├── usbserial.h │ │ │ ├── usbtrans.h │ │ │ ├── ventoy.h │ │ │ ├── verify.h │ │ │ ├── vga.h │ │ │ ├── vgaregs.h │ │ │ ├── video.h │ │ │ ├── video_fb.h │ │ │ ├── xen.h │ │ │ ├── xen_file.h │ │ │ ├── xnu.h │ │ │ └── zfs │ │ │ ├── dmu.h │ │ │ ├── dmu_objset.h │ │ │ ├── dnode.h │ │ │ ├── dsl_dataset.h │ │ │ ├── dsl_dir.h │ │ │ ├── sa_impl.h │ │ │ ├── spa.h │ │ │ ├── uberblock_impl.h │ │ │ ├── vdev_impl.h │ │ │ ├── zap_impl.h │ │ │ ├── zap_leaf.h │ │ │ ├── zfs.h │ │ │ ├── zfs_acl.h │ │ │ ├── zfs_znode.h │ │ │ ├── zil.h │ │ │ ├── zio.h │ │ │ └── zio_checksum.h │ ├── io │ │ └── gzio.c │ ├── kern │ │ ├── disk.c │ │ ├── env.c │ │ ├── err.c │ │ ├── file.c │ │ ├── fs.c │ │ ├── grub_device.c │ │ ├── grub_list.c │ │ ├── grub_time.c │ │ ├── ipxe_grub.c │ │ ├── misc.c │ │ └── partition.c │ ├── lib │ │ ├── crc.c │ │ ├── crc64.c │ │ ├── crypto.c │ │ ├── getline.c │ │ ├── grub_hexdump.c │ │ ├── minilzo │ │ │ ├── lzoconf.h │ │ │ ├── lzodefs.h │ │ │ ├── minilzo.c │ │ │ └── minilzo.h │ │ ├── xzembed │ │ │ ├── xz.h │ │ │ ├── xz_config.h │ │ │ ├── xz_dec_bcj.c │ │ │ ├── xz_dec_lzma2.c │ │ │ ├── xz_dec_stream.c │ │ │ ├── xz_lzma2.h │ │ │ ├── xz_private.h │ │ │ └── xz_stream.h │ │ └── zstd │ │ │ ├── bitstream.h │ │ │ ├── compiler.h │ │ │ ├── cpu.h │ │ │ ├── debug.h │ │ │ ├── entropy_common.c │ │ │ ├── error_private.c │ │ │ ├── error_private.h │ │ │ ├── fse.h │ │ │ ├── fse_decompress.c │ │ │ ├── huf.h │ │ │ ├── huf_decompress.c │ │ │ ├── mem.h │ │ │ ├── module.c │ │ │ ├── xxhash.c │ │ │ ├── xxhash.h │ │ │ ├── zstd.h │ │ │ ├── zstd_common.c │ │ │ ├── zstd_debug.c │ │ │ ├── zstd_decompress.c │ │ │ ├── zstd_errors.h │ │ │ └── zstd_internal.h │ └── normal │ │ ├── datetime.c │ │ └── normal_misc.c ├── hw.c ├── i82365.c ├── image.c ├── init.c ├── interface.c ├── iobuf.c ├── iomap_virt.c ├── isqrt.c ├── job.c ├── keymap.c ├── linebuf.c ├── lineconsole.c ├── list.c ├── log.c ├── main.c ├── malloc.c ├── memmap_settings.c ├── menu.c ├── monojob.c ├── netbios.c ├── null_acpi.c ├── null_nap.c ├── null_reboot.c ├── null_sanboot.c ├── null_time.c ├── nvo.c ├── open.c ├── params.c ├── parseopt.c ├── pc_kbd.c ├── pcmcia.c ├── pending.c ├── pinger.c ├── pixbuf.c ├── pool.c ├── posix_io.c ├── process.c ├── profile.c ├── quiesce.c ├── random.c ├── refcnt.c ├── resolv.c ├── sanboot.c ├── serial.c ├── settings.c ├── string.c ├── stringextra.c ├── time.c ├── timer.c ├── uart.c ├── uri.c ├── utf8.c ├── uuid.c ├── version.c ├── vsprintf.c ├── vtoy.c ├── wchar.c ├── xfer.c └── xferbuf.c ├── crypto ├── aes.c ├── aes_wrap.c ├── arc4.c ├── asn1.c ├── bigint.c ├── cbc.c ├── certstore.c ├── chap.c ├── cms.c ├── crc32.c ├── crypto_null.c ├── deflate.c ├── dhe.c ├── drbg.c ├── ecb.c ├── entropy.c ├── gcm.c ├── hash_df.c ├── hmac.c ├── hmac_drbg.c ├── md4.c ├── md5.c ├── mishmash │ ├── oid_md4.c │ ├── oid_md5.c │ ├── oid_rsa.c │ ├── oid_sha1.c │ ├── oid_sha224.c │ ├── oid_sha256.c │ ├── oid_sha384.c │ ├── oid_sha512.c │ ├── oid_sha512_224.c │ ├── oid_sha512_256.c │ ├── rsa_aes_cbc_sha1.c │ ├── rsa_aes_cbc_sha256.c │ ├── rsa_aes_gcm_sha256.c │ ├── rsa_aes_gcm_sha384.c │ ├── rsa_md5.c │ ├── rsa_sha1.c │ ├── rsa_sha224.c │ ├── rsa_sha256.c │ ├── rsa_sha384.c │ └── rsa_sha512.c ├── ntlm.c ├── ocsp.c ├── privkey.c ├── random_nz.c ├── rbg.c ├── rootcert.c ├── rsa.c ├── sha1.c ├── sha1extra.c ├── sha224.c ├── sha256.c ├── sha384.c ├── sha512.c ├── sha512_224.c ├── sha512_256.c └── x509.c ├── doc ├── build_sys.dox └── pxe_extensions ├── doxygen.cfg ├── drivers ├── bitbash │ ├── bitbash.c │ ├── i2c_bit.c │ ├── mii_bit.c │ └── spi_bit.c ├── block │ ├── ata.c │ ├── ibft.c │ ├── scsi.c │ └── srp.c ├── bus │ ├── cdc.c │ ├── ecam.c │ ├── eisa.c │ ├── isa.c │ ├── isa_ids.c │ ├── isapnp.c │ ├── mca.c │ ├── pci.c │ ├── pci_settings.c │ ├── pcibackup.c │ ├── pcibridge.c │ ├── pciea.c │ ├── pciextra.c │ ├── pcimsix.c │ ├── pcivpd.c │ ├── usb.c │ ├── virtio-pci.c │ └── virtio-ring.c ├── infiniband │ ├── CIB_PRM.h │ ├── MT25218_PRM.h │ ├── MT25408_PRM.h │ ├── arbel.c │ ├── arbel.h │ ├── flexboot_nodnic.c │ ├── flexboot_nodnic.h │ ├── golan.c │ ├── golan.h │ ├── hermon.c │ ├── hermon.h │ ├── linda.c │ ├── linda.h │ ├── linda_fw.c │ ├── mlx_bitops.h │ ├── mlx_nodnic │ │ ├── include │ │ │ ├── mlx_cmd.h │ │ │ ├── mlx_device.h │ │ │ ├── mlx_nodnic_data_structures.h │ │ │ └── mlx_port.h │ │ └── src │ │ │ ├── mlx_cmd.c │ │ │ ├── mlx_device.c │ │ │ └── mlx_port.c │ ├── mlx_utils │ │ ├── include │ │ │ ├── private │ │ │ │ ├── mlx_memory_priv.h │ │ │ │ ├── mlx_pci_priv.h │ │ │ │ └── mlx_utils_priv.h │ │ │ └── public │ │ │ │ ├── mlx_bail.h │ │ │ │ ├── mlx_icmd.h │ │ │ │ ├── mlx_logging.h │ │ │ │ ├── mlx_memory.h │ │ │ │ ├── mlx_pci.h │ │ │ │ ├── mlx_pci_gw.h │ │ │ │ ├── mlx_types.h │ │ │ │ └── mlx_utils.h │ │ ├── mlx_lib │ │ │ ├── mlx_blink_leds │ │ │ │ ├── mlx_blink_leds.c │ │ │ │ └── mlx_blink_leds.h │ │ │ ├── mlx_link_speed │ │ │ │ ├── mlx_link_speed.c │ │ │ │ └── mlx_link_speed.h │ │ │ ├── mlx_mtu │ │ │ │ ├── mlx_mtu.c │ │ │ │ └── mlx_mtu.h │ │ │ ├── mlx_nvconfig │ │ │ │ ├── mlx_nvconfig.c │ │ │ │ ├── mlx_nvconfig.h │ │ │ │ ├── mlx_nvconfig_defaults.c │ │ │ │ ├── mlx_nvconfig_defaults.h │ │ │ │ └── mlx_nvconfig_prm.h │ │ │ ├── mlx_reg_access │ │ │ │ ├── mlx_reg_access.c │ │ │ │ └── mlx_reg_access.h │ │ │ └── mlx_vmac │ │ │ │ ├── mlx_vmac.c │ │ │ │ └── mlx_vmac.h │ │ └── src │ │ │ └── public │ │ │ ├── mlx_icmd.c │ │ │ ├── mlx_memory.c │ │ │ ├── mlx_pci.c │ │ │ ├── mlx_pci_gw.c │ │ │ └── mlx_utils.c │ ├── mlx_utils_flexboot │ │ ├── include │ │ │ ├── mlx_logging_priv.h │ │ │ └── mlx_types_priv.h │ │ └── src │ │ │ ├── mlx_memory_priv.c │ │ │ ├── mlx_pci_priv.c │ │ │ └── mlx_utils_priv.c │ ├── nodnic_prm.h │ ├── nodnic_shomron_prm.h │ ├── qib7322.c │ ├── qib7322.h │ ├── qib_7220_regs.h │ ├── qib_7322_regs.h │ └── qib_genbits.pl ├── linux │ ├── af_packet.c │ ├── linux.c │ ├── slirp.c │ └── tap.c ├── net │ ├── 3c503.c │ ├── 3c509-eisa.c │ ├── 3c509.c │ ├── 3c509.h │ ├── 3c515.c │ ├── 3c515.txt │ ├── 3c529.c │ ├── 3c595.c │ ├── 3c595.h │ ├── 3c5x9.c │ ├── 3c90x.c │ ├── 3c90x.h │ ├── acm.c │ ├── acm.h │ ├── amd8111e.c │ ├── amd8111e.h │ ├── ath │ │ ├── ath.h │ │ ├── ath5k │ │ │ ├── ath5k.c │ │ │ ├── ath5k.h │ │ │ ├── ath5k_attach.c │ │ │ ├── ath5k_caps.c │ │ │ ├── ath5k_desc.c │ │ │ ├── ath5k_dma.c │ │ │ ├── ath5k_eeprom.c │ │ │ ├── ath5k_gpio.c │ │ │ ├── ath5k_initvals.c │ │ │ ├── ath5k_pcu.c │ │ │ ├── ath5k_phy.c │ │ │ ├── ath5k_qcu.c │ │ │ ├── ath5k_reset.c │ │ │ ├── ath5k_rfkill.c │ │ │ ├── base.h │ │ │ ├── desc.h │ │ │ ├── eeprom.h │ │ │ ├── reg.h │ │ │ ├── rfbuffer.h │ │ │ └── rfgain.h │ │ ├── ath9k │ │ │ ├── ani.h │ │ │ ├── ar5008_initvals.h │ │ │ ├── ar9001_initvals.h │ │ │ ├── ar9002_initvals.h │ │ │ ├── ar9002_phy.h │ │ │ ├── ar9003_2p2_initvals.h │ │ │ ├── ar9003_eeprom.h │ │ │ ├── ar9003_mac.h │ │ │ ├── ar9003_phy.h │ │ │ ├── ar9340_initvals.h │ │ │ ├── ar9485_initvals.h │ │ │ ├── ath9k.c │ │ │ ├── ath9k.h │ │ │ ├── ath9k_ani.c │ │ │ ├── ath9k_ar5008_phy.c │ │ │ ├── ath9k_ar9002_calib.c │ │ │ ├── ath9k_ar9002_hw.c │ │ │ ├── ath9k_ar9002_mac.c │ │ │ ├── ath9k_ar9002_phy.c │ │ │ ├── ath9k_ar9003_calib.c │ │ │ ├── ath9k_ar9003_eeprom.c │ │ │ ├── ath9k_ar9003_hw.c │ │ │ ├── ath9k_ar9003_mac.c │ │ │ ├── ath9k_ar9003_phy.c │ │ │ ├── ath9k_calib.c │ │ │ ├── ath9k_common.c │ │ │ ├── ath9k_eeprom.c │ │ │ ├── ath9k_eeprom_4k.c │ │ │ ├── ath9k_eeprom_9287.c │ │ │ ├── ath9k_eeprom_def.c │ │ │ ├── ath9k_hw.c │ │ │ ├── ath9k_init.c │ │ │ ├── ath9k_mac.c │ │ │ ├── ath9k_main.c │ │ │ ├── ath9k_recv.c │ │ │ ├── ath9k_xmit.c │ │ │ ├── calib.h │ │ │ ├── common.h │ │ │ ├── eeprom.h │ │ │ ├── hw-ops.h │ │ │ ├── hw.h │ │ │ ├── mac.h │ │ │ ├── phy.h │ │ │ └── reg.h │ │ ├── ath_hw.c │ │ ├── ath_key.c │ │ ├── ath_regd.c │ │ ├── reg.h │ │ ├── regd.h │ │ └── regd_common.h │ ├── atl1e.c │ ├── atl1e.h │ ├── axge.c │ ├── axge.h │ ├── b44.c │ ├── b44.h │ ├── bnx2.c │ ├── bnx2.h │ ├── bnx2_fw.h │ ├── bnxt │ │ ├── bnxt.c │ │ ├── bnxt.h │ │ ├── bnxt_dbg.h │ │ └── bnxt_hsi.h │ ├── cs89x0.c │ ├── cs89x0.h │ ├── cs89x0.txt │ ├── davicom.c │ ├── depca.c │ ├── dm96xx.c │ ├── dm96xx.h │ ├── dmfe.c │ ├── ecm.c │ ├── ecm.h │ ├── eepro.c │ ├── eepro100.c │ ├── eepro100.h │ ├── efi │ │ ├── nii.c │ │ ├── nii.h │ │ ├── snp.c │ │ ├── snpnet.c │ │ ├── snpnet.h │ │ └── snponly.c │ ├── ena.c │ ├── ena.h │ ├── eoib.c │ ├── epic100.c │ ├── epic100.h │ ├── etherfabric.c │ ├── etherfabric.h │ ├── etherfabric_nic.h │ ├── exanic.c │ ├── exanic.h │ ├── forcedeth.c │ ├── forcedeth.h │ ├── hfa384x.h │ ├── ice.c │ ├── ice.h │ ├── icplus.c │ ├── icplus.h │ ├── igbvf │ │ ├── igbvf.h │ │ ├── igbvf_defines.h │ │ ├── igbvf_main.c │ │ ├── igbvf_mbx.c │ │ ├── igbvf_mbx.h │ │ ├── igbvf_osdep.h │ │ ├── igbvf_regs.h │ │ ├── igbvf_vf.c │ │ └── igbvf_vf.h │ ├── intel.c │ ├── intel.h │ ├── intelvf.c │ ├── intelvf.h │ ├── intelx.c │ ├── intelx.h │ ├── intelxl.c │ ├── intelxl.h │ ├── intelxlvf.c │ ├── intelxlvf.h │ ├── intelxvf.c │ ├── intelxvf.h │ ├── iphone.c │ ├── iphone.h │ ├── ipoib.c │ ├── jme.c │ ├── jme.h │ ├── lan78xx.c │ ├── lan78xx.h │ ├── legacy.c │ ├── mii.c │ ├── myri10ge.c │ ├── myri10ge_mcp.h │ ├── myson.c │ ├── myson.h │ ├── natsemi.c │ ├── natsemi.h │ ├── ncm.c │ ├── ncm.h │ ├── ne.c │ ├── ne2k_isa.c │ ├── netfront.c │ ├── netfront.h │ ├── netvsc.c │ ├── netvsc.h │ ├── ns8390.c │ ├── ns8390.h │ ├── p80211hdr.h │ ├── pcnet32.c │ ├── pcnet32.h │ ├── phantom │ │ ├── nx_bitops.h │ │ ├── nxhal_nic_interface.h │ │ ├── phantom.c │ │ ├── phantom.h │ │ └── phantom_hw.h │ ├── pnic.c │ ├── pnic_api.h │ ├── prism2.c │ ├── prism2_pci.c │ ├── prism2_plx.c │ ├── rdc.c │ ├── rdc.h │ ├── realtek.c │ ├── realtek.h │ ├── rhine.c │ ├── rhine.h │ ├── rtl818x │ │ ├── rtl8180.c │ │ ├── rtl8180_grf5101.c │ │ ├── rtl8180_max2820.c │ │ ├── rtl8180_sa2400.c │ │ ├── rtl8185.c │ │ ├── rtl8185_rtl8225.c │ │ ├── rtl818x.c │ │ └── rtl818x.h │ ├── sfc │ │ ├── ef10_regs.h │ │ ├── efx_bitfield.h │ │ ├── efx_common.c │ │ ├── efx_common.h │ │ ├── efx_hunt.c │ │ ├── efx_hunt.h │ │ ├── mc_driver_pcol.h │ │ ├── mcdi.h │ │ └── sfc_hunt.c │ ├── sis190.c │ ├── sis190.h │ ├── sis900.c │ ├── sis900.h │ ├── skeleton.c │ ├── skeleton.h │ ├── skge.c │ ├── skge.h │ ├── sky2.c │ ├── sky2.h │ ├── smc9000.c │ ├── smc9000.h │ ├── smsc75xx.c │ ├── smsc75xx.h │ ├── smsc95xx.c │ ├── smsc95xx.h │ ├── smscusb.c │ ├── smscusb.h │ ├── sundance.c │ ├── tg3 │ │ ├── tg3.c │ │ ├── tg3.h │ │ ├── tg3_hw.c │ │ └── tg3_phy.c │ ├── thunderx.c │ ├── thunderx.h │ ├── thunderxcfg.h │ ├── tlan.c │ ├── tlan.h │ ├── tulip.c │ ├── tulip.txt │ ├── velocity.c │ ├── velocity.h │ ├── virtio-net.c │ ├── virtio-net.h │ ├── vmxnet3.c │ ├── vmxnet3.h │ ├── vxge │ │ ├── vxge.c │ │ ├── vxge_config.c │ │ ├── vxge_config.h │ │ ├── vxge_main.c │ │ ├── vxge_main.h │ │ ├── vxge_reg.h │ │ ├── vxge_traffic.c │ │ ├── vxge_traffic.h │ │ └── vxge_version.h │ ├── w89c840.c │ ├── wd.c │ └── wlan_compat.h ├── nvs │ ├── nvs.c │ ├── nvsvpd.c │ ├── spi.c │ └── threewire.c └── usb │ ├── ehci.c │ ├── ehci.h │ ├── uhci.c │ ├── uhci.h │ ├── usbblk.c │ ├── usbblk.h │ ├── usbhid.c │ ├── usbhub.c │ ├── usbhub.h │ ├── usbio.c │ ├── usbio.h │ ├── usbkbd.c │ ├── usbkbd.h │ ├── usbnet.c │ ├── xhci.c │ └── xhci.h ├── hci ├── commands │ ├── autoboot_cmd.c │ ├── cert_cmd.c │ ├── config_cmd.c │ ├── console_cmd.c │ ├── dhcp_cmd.c │ ├── digest_cmd.c │ ├── fcmgmt_cmd.c │ ├── gdbstub_cmd.c │ ├── ibmgmt_cmd.c │ ├── ifmgmt_cmd.c │ ├── image_archive_cmd.c │ ├── image_cmd.c │ ├── image_mem_cmd.c │ ├── image_trust_cmd.c │ ├── ipstat_cmd.c │ ├── iwmgmt_cmd.c │ ├── login_cmd.c │ ├── lotest_cmd.c │ ├── menu_cmd.c │ ├── neighbour_cmd.c │ ├── nslookup_cmd.c │ ├── ntp_cmd.c │ ├── nvo_cmd.c │ ├── param_cmd.c │ ├── pci_cmd.c │ ├── ping_cmd.c │ ├── poweroff_cmd.c │ ├── profstat_cmd.c │ ├── reboot_cmd.c │ ├── route_cmd.c │ ├── sanboot_cmd.c │ ├── sync_cmd.c │ ├── time_cmd.c │ └── vlan_cmd.c ├── editstring.c ├── jumpscroll.c ├── keymap │ ├── keymap_al.c │ ├── keymap_by.c │ ├── keymap_cf.c │ ├── keymap_cz.c │ ├── keymap_de.c │ ├── keymap_dk.c │ ├── keymap_es.c │ ├── keymap_et.c │ ├── keymap_fi.c │ ├── keymap_fr.c │ ├── keymap_gr.c │ ├── keymap_hu.c │ ├── keymap_il.c │ ├── keymap_it.c │ ├── keymap_lt.c │ ├── keymap_mk.c │ ├── keymap_mt.c │ ├── keymap_nl.c │ ├── keymap_no-latin1.c │ ├── keymap_no.c │ ├── keymap_pl.c │ ├── keymap_pt.c │ ├── keymap_ro.c │ ├── keymap_ru.c │ ├── keymap_se.c │ ├── keymap_sg.c │ ├── keymap_sr-latin.c │ ├── keymap_ua.c │ ├── keymap_uk.c │ └── keymap_us.c ├── linux_args.c ├── mucurses │ ├── alert.c │ ├── ansi_screen.c │ ├── clear.c │ ├── colour.c │ ├── cursor.h │ ├── edging.c │ ├── kb.c │ ├── mucurses.c │ ├── mucurses.h │ ├── print.c │ ├── print_nadv.c │ ├── slk.c │ ├── widgets │ │ └── editbox.c │ ├── winattrs.c │ ├── windows.c │ └── wininit.c ├── readline.c ├── shell.c ├── strerror.c ├── tui │ ├── login_ui.c │ ├── menu_ui.c │ └── settings_ui.c └── wireless_errors.c ├── image ├── der.c ├── efi_image.c ├── elf.c ├── embedded.c ├── gzip.c ├── pem.c ├── png.c ├── pnm.c ├── script.c ├── segment.c └── zlib.c ├── include ├── alloca.h ├── assert.h ├── byteswap.h ├── coff.h ├── compiler.h ├── cpu.h ├── ctype.h ├── curses.h ├── elf.h ├── endian.h ├── errno.h ├── etherboot.h ├── fs.h ├── getopt.h ├── hci │ └── ifmgmt_cmd.h ├── i82365.h ├── ipxe │ ├── acpi.h │ ├── acpimac.h │ ├── aes.h │ ├── ansicol.h │ ├── ansiesc.h │ ├── aoe.h │ ├── api.h │ ├── arc4.h │ ├── arp.h │ ├── asn1.h │ ├── ata.h │ ├── base16.h │ ├── base64.h │ ├── bigint.h │ ├── bitbash.h │ ├── bitmap.h │ ├── bitops.h │ ├── blockdev.h │ ├── blocktrans.h │ ├── bofm.h │ ├── cachedhcp.h │ ├── cbc.h │ ├── cdc.h │ ├── certstore.h │ ├── chap.h │ ├── cms.h │ ├── command.h │ ├── console.h │ ├── cpio.h │ ├── crc32.h │ ├── crypto.h │ ├── deflate.h │ ├── der.h │ ├── device.h │ ├── dhcp.h │ ├── dhcparch.h │ ├── dhcpopts.h │ ├── dhcppkt.h │ ├── dhcpv6.h │ ├── dhe.h │ ├── dma.h │ ├── dns.h │ ├── downloader.h │ ├── drbg.h │ ├── dummy_sanboot.h │ ├── eap.h │ ├── eapol.h │ ├── ecam.h │ ├── ecam_io.h │ ├── ecb.h │ ├── edd.h │ ├── editbox.h │ ├── editstring.h │ ├── efi │ │ ├── AArch64 │ │ │ └── ProcessorBind.h │ │ ├── Arm │ │ │ └── ProcessorBind.h │ │ ├── Base.h │ │ ├── Guid │ │ │ ├── Acpi.h │ │ │ ├── FileInfo.h │ │ │ ├── FileSystemInfo.h │ │ │ ├── HiiFormMapMethodGuid.h │ │ │ ├── HiiPlatformSetupFormset.h │ │ │ ├── MdeModuleHii.h │ │ │ ├── PcAnsi.h │ │ │ ├── SmBios.h │ │ │ └── WinCertificate.h │ │ ├── Ia32 │ │ │ └── ProcessorBind.h │ │ ├── IndustryStandard │ │ │ ├── Acpi10.h │ │ │ ├── Acpi20.h │ │ │ ├── Acpi30.h │ │ │ ├── Acpi40.h │ │ │ ├── Acpi50.h │ │ │ ├── Acpi51.h │ │ │ ├── Acpi60.h │ │ │ ├── AcpiAml.h │ │ │ ├── Bluetooth.h │ │ │ ├── Pci22.h │ │ │ ├── PeImage.h │ │ │ ├── Tpm12.h │ │ │ ├── Tpm20.h │ │ │ ├── UefiTcgPlatform.h │ │ │ └── Usb.h │ │ ├── LICENCE │ │ ├── Library │ │ │ └── BaseLib.h │ │ ├── LoongArch64 │ │ │ └── ProcessorBind.h │ │ ├── Pi │ │ │ ├── PiBootMode.h │ │ │ ├── PiDependency.h │ │ │ ├── PiDxeCis.h │ │ │ ├── PiFirmwareFile.h │ │ │ ├── PiFirmwareVolume.h │ │ │ ├── PiHob.h │ │ │ ├── PiMultiPhase.h │ │ │ ├── PiS3BootScript.h │ │ │ └── PiStatusCode.h │ │ ├── PiDxe.h │ │ ├── ProcessorBind.h │ │ ├── Protocol │ │ │ ├── AbsolutePointer.h │ │ │ ├── AcpiTable.h │ │ │ ├── AppleNetBoot.h │ │ │ ├── Arp.h │ │ │ ├── BlockIo.h │ │ │ ├── BlockIo2.h │ │ │ ├── BusSpecificDriverOverride.h │ │ │ ├── ComponentName.h │ │ │ ├── ComponentName2.h │ │ │ ├── ConsoleControl │ │ │ │ └── ConsoleControl.h │ │ │ ├── DebugSupport.h │ │ │ ├── DevicePath.h │ │ │ ├── DevicePathToText.h │ │ │ ├── Dhcp4.h │ │ │ ├── DiskIo.h │ │ │ ├── DriverBinding.h │ │ │ ├── FormBrowser2.h │ │ │ ├── GraphicsOutput.h │ │ │ ├── HiiConfigAccess.h │ │ │ ├── HiiDatabase.h │ │ │ ├── HiiFont.h │ │ │ ├── HiiImage.h │ │ │ ├── Ip4.h │ │ │ ├── Ip4Config.h │ │ │ ├── LoadFile.h │ │ │ ├── LoadFile2.h │ │ │ ├── LoadedImage.h │ │ │ ├── ManagedNetwork.h │ │ │ ├── Mtftp4.h │ │ │ ├── NetworkInterfaceIdentifier.h │ │ │ ├── PciIo.h │ │ │ ├── PciRootBridgeIo.h │ │ │ ├── PxeBaseCode.h │ │ │ ├── Rng.h │ │ │ ├── SerialIo.h │ │ │ ├── SimpleFileSystem.h │ │ │ ├── SimpleNetwork.h │ │ │ ├── SimplePointer.h │ │ │ ├── SimpleTextIn.h │ │ │ ├── SimpleTextInEx.h │ │ │ ├── SimpleTextOut.h │ │ │ ├── TcgService.h │ │ │ ├── Tcp4.h │ │ │ ├── Udp4.h │ │ │ ├── UgaDraw.h │ │ │ ├── UnicodeCollation.h │ │ │ ├── Usb2HostController.h │ │ │ ├── UsbHostController.h │ │ │ ├── UsbIo.h │ │ │ └── VlanConfig.h │ │ ├── Uefi.h │ │ ├── Uefi │ │ │ ├── UefiBaseType.h │ │ │ ├── UefiGpt.h │ │ │ ├── UefiInternalFormRepresentation.h │ │ │ ├── UefiMultiPhase.h │ │ │ ├── UefiPxe.h │ │ │ └── UefiSpec.h │ │ ├── X64 │ │ │ └── ProcessorBind.h │ │ ├── efi.h │ │ ├── efi_acpi.h │ │ ├── efi_autoboot.h │ │ ├── efi_autoexec.h │ │ ├── efi_block.h │ │ ├── efi_cachedhcp.h │ │ ├── efi_cmdline.h │ │ ├── efi_download.h │ │ ├── efi_driver.h │ │ ├── efi_file.h │ │ ├── efi_hii.h │ │ ├── efi_null.h │ │ ├── efi_path.h │ │ ├── efi_pci.h │ │ ├── efi_pci_api.h │ │ ├── efi_pxe.h │ │ ├── efi_reboot.h │ │ ├── efi_smbios.h │ │ ├── efi_snp.h │ │ ├── efi_strings.h │ │ ├── efi_time.h │ │ ├── efi_uaccess.h │ │ ├── efi_umalloc.h │ │ ├── efi_usb.h │ │ ├── efi_utils.h │ │ ├── efi_veto.h │ │ ├── efi_vtoy.h │ │ ├── efi_watchdog.h │ │ ├── efi_wrap.h │ │ └── import.pl │ ├── eisa.h │ ├── elf.h │ ├── eltorito.h │ ├── entropy.h │ ├── eoib.h │ ├── errfile.h │ ├── errno │ │ ├── efi.h │ │ └── linux.h │ ├── errortab.h │ ├── eth_slow.h │ ├── ethernet.h │ ├── fakedhcp.h │ ├── fault.h │ ├── fbcon.h │ ├── fc.h │ ├── fcels.h │ ├── fcns.h │ ├── fcoe.h │ ├── fcp.h │ ├── fdt.h │ ├── features.h │ ├── fip.h │ ├── fragment.h │ ├── ftp.h │ ├── gcm.h │ ├── gdbserial.h │ ├── gdbstub.h │ ├── gdbudp.h │ ├── gzip.h │ ├── hash_df.h │ ├── hidemem.h │ ├── hmac.h │ ├── hmac_drbg.h │ ├── http.h │ ├── hyperv.h │ ├── i2c.h │ ├── ib_cm.h │ ├── ib_cmrc.h │ ├── ib_mad.h │ ├── ib_mcast.h │ ├── ib_mi.h │ ├── ib_packet.h │ ├── ib_pathrec.h │ ├── ib_service.h │ ├── ib_sma.h │ ├── ib_smc.h │ ├── ib_srp.h │ ├── ibft.h │ ├── icmp.h │ ├── icmpv6.h │ ├── ieee80211.h │ ├── if_arp.h │ ├── if_ether.h │ ├── image.h │ ├── in.h │ ├── infiniband.h │ ├── init.h │ ├── interface.h │ ├── io.h │ ├── iobuf.h │ ├── iomap.h │ ├── iomap_virt.h │ ├── ip.h │ ├── ipoib.h │ ├── ipstat.h │ ├── ipv6.h │ ├── isa.h │ ├── isa_ids.h │ ├── isapnp.h │ ├── iscsi.h │ ├── iso9660.h │ ├── isqrt.h │ ├── job.h │ ├── jumpscroll.h │ ├── keymap.h │ ├── keys.h │ ├── linebuf.h │ ├── lineconsole.h │ ├── linux.h │ ├── linux │ │ ├── dhcparch.h │ │ ├── linux_acpi.h │ │ ├── linux_nap.h │ │ ├── linux_pci.h │ │ ├── linux_smbios.h │ │ ├── linux_time.h │ │ ├── linux_uaccess.h │ │ └── linux_umalloc.h │ ├── linux_api.h │ ├── linux_sysfs.h │ ├── list.h │ ├── lldp.h │ ├── login_ui.h │ ├── malloc.h │ ├── mca.h │ ├── md4.h │ ├── md5.h │ ├── memblock.h │ ├── menu.h │ ├── mii.h │ ├── mii_bit.h │ ├── monojob.h │ ├── mount.h │ ├── nap.h │ ├── ndp.h │ ├── neighbour.h │ ├── net80211.h │ ├── net80211_err.h │ ├── netbios.h │ ├── netdevice.h │ ├── nfs.h │ ├── nfs_open.h │ ├── nfs_uri.h │ ├── nonxen.h │ ├── ntlm.h │ ├── ntp.h │ ├── null_acpi.h │ ├── null_nap.h │ ├── null_reboot.h │ ├── null_sanboot.h │ ├── null_time.h │ ├── nvo.h │ ├── nvs.h │ ├── nvsvpd.h │ ├── ocsp.h │ ├── oncrpc.h │ ├── oncrpc_iob.h │ ├── open.h │ ├── params.h │ ├── parseopt.h │ ├── pccrc.h │ ├── pccrd.h │ ├── pccrr.h │ ├── pci.h │ ├── pci_io.h │ ├── pcibackup.h │ ├── pcibridge.h │ ├── pciea.h │ ├── pcimsix.h │ ├── pcivpd.h │ ├── peerblk.h │ ├── peerdisc.h │ ├── peermux.h │ ├── pem.h │ ├── pending.h │ ├── ping.h │ ├── pinger.h │ ├── pixbuf.h │ ├── png.h │ ├── pnm.h │ ├── pool.h │ ├── portmap.h │ ├── posix_io.h │ ├── privkey.h │ ├── process.h │ ├── profile.h │ ├── pseudobit.h │ ├── quiesce.h │ ├── random_nz.h │ ├── rarp.h │ ├── rbg.h │ ├── rc80211.h │ ├── reboot.h │ ├── refcnt.h │ ├── resolv.h │ ├── retry.h │ ├── rndis.h │ ├── rootcert.h │ ├── rotate.h │ ├── rsa.h │ ├── sanboot.h │ ├── sbat.h │ ├── script.h │ ├── scsi.h │ ├── sec80211.h │ ├── segment.h │ ├── serial.h │ ├── settings.h │ ├── settings_ui.h │ ├── sha1.h │ ├── sha256.h │ ├── sha512.h │ ├── shell.h │ ├── slirp.h │ ├── smbios.h │ ├── socket.h │ ├── spi.h │ ├── spi_bit.h │ ├── srp.h │ ├── stp.h │ ├── string.h │ ├── syslog.h │ ├── tables.h │ ├── tcp.h │ ├── tcpip.h │ ├── test.h │ ├── tftp.h │ ├── threewire.h │ ├── time.h │ ├── timer.h │ ├── tls.h │ ├── uaccess.h │ ├── uart.h │ ├── udp.h │ ├── umalloc.h │ ├── uri.h │ ├── usb.h │ ├── usbhid.h │ ├── usbnet.h │ ├── utf8.h │ ├── uuid.h │ ├── validator.h │ ├── version.h │ ├── virtio-pci.h │ ├── virtio-ring.h │ ├── vlan.h │ ├── vmbus.h │ ├── vsprintf.h │ ├── vtoy.h │ ├── wpa.h │ ├── x509.h │ ├── xen.h │ ├── xenbus.h │ ├── xenevent.h │ ├── xengrant.h │ ├── xenmem.h │ ├── xenstore.h │ ├── xenver.h │ ├── xfer.h │ ├── xferbuf.h │ ├── xsigo.h │ └── zlib.h ├── libgen.h ├── mii.h ├── nic.h ├── old_tcp.h ├── pc_kbd.h ├── pcmcia-opts.h ├── pcmcia.h ├── readline │ └── readline.h ├── stdarg.h ├── stdbool.h ├── stddef.h ├── stdint.h ├── stdio.h ├── stdlib.h ├── string.h ├── strings.h ├── sys │ └── time.h ├── sys_info.h ├── syslog.h ├── time.h ├── unistd.h ├── usr │ ├── autoboot.h │ ├── certmgmt.h │ ├── dhcpmgmt.h │ ├── fcmgmt.h │ ├── ibmgmt.h │ ├── ifmgmt.h │ ├── imgarchive.h │ ├── imgmgmt.h │ ├── imgtrust.h │ ├── ipstat.h │ ├── iwmgmt.h │ ├── lotest.h │ ├── neighmgmt.h │ ├── nslookup.h │ ├── ntpmgmt.h │ ├── pingmgmt.h │ ├── profstat.h │ ├── prompt.h │ ├── route.h │ └── sync.h ├── valgrind │ ├── memcheck.h │ └── valgrind.h ├── wchar.h └── xen │ ├── arch-arm.h │ ├── arch-x86 │ ├── xen-x86_32.h │ ├── xen-x86_64.h │ └── xen.h │ ├── event_channel.h │ ├── features.h │ ├── grant_table.h │ ├── hvm │ ├── hvm_op.h │ └── params.h │ ├── import.pl │ ├── io │ ├── netif.h │ ├── ring.h │ ├── xenbus.h │ └── xs_wire.h │ ├── memory.h │ ├── physdev.h │ ├── trace.h │ ├── version.h │ ├── xen-compat.h │ └── xen.h ├── interface ├── bofm │ └── bofm.c ├── efi │ ├── efi_acpi.c │ ├── efi_autoboot.c │ ├── efi_autoexec.c │ ├── efi_block.c │ ├── efi_bofm.c │ ├── efi_cachedhcp.c │ ├── efi_cmdline.c │ ├── efi_console.c │ ├── efi_debug.c │ ├── efi_download.c │ ├── efi_driver.c │ ├── efi_entropy.c │ ├── efi_fbcon.c │ ├── efi_fdt.c │ ├── efi_file.c │ ├── efi_guid.c │ ├── efi_hii.c │ ├── efi_init.c │ ├── efi_local.c │ ├── efi_null.c │ ├── efi_path.c │ ├── efi_pci.c │ ├── efi_pxe.c │ ├── efi_reboot.c │ ├── efi_rng.c │ ├── efi_smbios.c │ ├── efi_snp.c │ ├── efi_snp_hii.c │ ├── efi_strings.c │ ├── efi_time.c │ ├── efi_timer.c │ ├── efi_uaccess.c │ ├── efi_umalloc.c │ ├── efi_usb.c │ ├── efi_utils.c │ ├── efi_veto.c │ ├── efi_vtoy.c │ ├── efi_vtoy_protocol.c │ ├── efi_watchdog.c │ ├── efi_wrap.c │ ├── efidrvprefix.c │ └── efiprefix.c ├── hyperv │ └── vmbus.c ├── linux │ ├── linux_acpi.c │ ├── linux_api.c │ ├── linux_console.c │ ├── linux_entropy.c │ ├── linux_nap.c │ ├── linux_pci.c │ ├── linux_smbios.c │ ├── linux_sysfs.c │ ├── linux_time.c │ ├── linux_timer.c │ ├── linux_uaccess.c │ ├── linux_umalloc.c │ └── linuxprefix.c ├── smbios │ ├── smbios.c │ └── smbios_settings.c └── xen │ ├── xenbus.c │ ├── xengrant.c │ └── xenstore.c ├── libgcc ├── __divdi3.c ├── __divmoddi4.c ├── __moddi3.c ├── __udivdi3.c ├── __udivmoddi4.c ├── __umoddi3.c ├── icc.c ├── implicit.c └── libgcc.h ├── net ├── 80211 │ ├── net80211.c │ ├── rc80211.c │ ├── sec80211.c │ ├── wep.c │ ├── wpa.c │ ├── wpa_ccmp.c │ ├── wpa_psk.c │ └── wpa_tkip.c ├── aoe.c ├── arp.c ├── dhcpopts.c ├── dhcppkt.c ├── eap.c ├── eapol.c ├── eth_slow.c ├── ethernet.c ├── fakedhcp.c ├── fc.c ├── fcels.c ├── fcns.c ├── fcoe.c ├── fcp.c ├── fragment.c ├── icmp.c ├── icmpv4.c ├── icmpv6.c ├── infiniband.c ├── infiniband │ ├── ib_cm.c │ ├── ib_cmrc.c │ ├── ib_mcast.c │ ├── ib_mi.c │ ├── ib_packet.c │ ├── ib_pathrec.c │ ├── ib_service.c │ ├── ib_sma.c │ ├── ib_smc.c │ ├── ib_srp.c │ └── xsigo.c ├── iobpad.c ├── ipv4.c ├── ipv6.c ├── lldp.c ├── ndp.c ├── neighbour.c ├── netdev_settings.c ├── netdevice.c ├── nullnet.c ├── oncrpc │ ├── mount.c │ ├── nfs.c │ ├── nfs_open.c │ ├── nfs_uri.c │ ├── oncrpc_iob.c │ └── portmap.c ├── pccrc.c ├── pccrd.c ├── peerblk.c ├── peerdisc.c ├── peerdist.c ├── peermux.c ├── ping.c ├── rarp.c ├── retry.c ├── rndis.c ├── socket.c ├── stp.c ├── tcp.c ├── tcp │ ├── ftp.c │ ├── http.c │ ├── httpauth.c │ ├── httpbasic.c │ ├── httpblock.c │ ├── httpconn.c │ ├── httpcore.c │ ├── httpdigest.c │ ├── httpgce.c │ ├── httpntlm.c │ ├── https.c │ ├── iscsi.c │ ├── oncrpc.c │ └── syslogs.c ├── tcpip.c ├── tls.c ├── udp.c ├── udp │ ├── dhcp.c │ ├── dhcpv6.c │ ├── dns.c │ ├── ntp.c │ ├── slam.c │ ├── syslog.c │ └── tftp.c ├── validator.c └── vlan.c ├── scripts ├── efi.lds └── linux.lds ├── tests ├── acpi_test.c ├── aes_test.c ├── asn1_test.c ├── asn1_test.h ├── base16_test.c ├── base64_test.c ├── bigint_test.c ├── bitops_test.c ├── bofm_test.c ├── byteswap_test.c ├── cipher_test.c ├── cipher_test.h ├── cms_test.c ├── crc32_test.c ├── deflate_test.c ├── der_test.c ├── dhe_test.c ├── digest_test.c ├── digest_test.h ├── dns_test.c ├── entropy_sample.c ├── gcm_test.c ├── gzip_test.c ├── hash_df_test.c ├── hmac_drbg_test.c ├── hmac_test.c ├── iobuf_test.c ├── ipv4_test.c ├── ipv6_test.c ├── linebuf_test.c ├── list_test.c ├── math_test.c ├── md4_test.c ├── md5_test.c ├── memcpy_test.c ├── memset_test.c ├── nap_test.c ├── ntlm_test.c ├── ocsp_test.c ├── pccrc_test.c ├── pem_test.c ├── pixbuf_test.c ├── pixbuf_test.h ├── png_test.c ├── pnm_test.c ├── profile_test.c ├── pubkey_test.h ├── rsa_test.c ├── setjmp_test.c ├── settings_test.c ├── sha1_test.c ├── sha256_test.c ├── sha512_test.c ├── string_test.c ├── tcpip_test.c ├── test.c ├── tests.c ├── time_test.c ├── umalloc_test.c ├── uri_test.c ├── utf8_test.c ├── vsprintf_test.c ├── x509_test.c └── zlib_test.c ├── usr ├── autoboot.c ├── certmgmt.c ├── dhcpmgmt.c ├── fcmgmt.c ├── ibmgmt.c ├── ifmgmt.c ├── imgarchive.c ├── imgmgmt.c ├── imgtrust.c ├── ipstat.c ├── iwmgmt.c ├── lotest.c ├── neighmgmt.c ├── nslookup.c ├── ntpmgmt.c ├── pingmgmt.c ├── profstat.c ├── prompt.c ├── pxemenu.c ├── route.c ├── route_ipv4.c ├── route_ipv6.c └── sync.c └── util ├── .gitignore ├── Makefile ├── Option └── ROM.pm ├── catrom.pl ├── diffsize.pl ├── disrom.pl ├── eficompress.c ├── efifatbin.c ├── efirom.c ├── einfo.c ├── elf2efi.c ├── fixrom.pl ├── fnrec.pl ├── genfsimg ├── genkeymap.py ├── get-pci-ids ├── hijack.c ├── licence.pl ├── mergerom.pl ├── modrom.pl ├── mucurses_test.c ├── niclist.pl ├── nrv2b.c ├── padimg.pl ├── parserom.pl ├── relicense.pl ├── romcheck.pl ├── sortobjdump.pl ├── swapdevids.pl ├── symcheck.pl └── zbin.c /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/README.md -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/COPYING -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/COPYING.GPLv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/COPYING.GPLv2 -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/COPYING.UBDL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/COPYING.UBDL -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/README -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/.gitignore -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/Makefile -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/Makefile.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/Makefile.efi -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/Makefile.housekeeping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/Makefile.housekeeping -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/Makefile.linux -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/arch/arm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/arch/arm/Makefile -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/arch/arm/Makefile.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/arch/arm/Makefile.efi -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/arch/arm32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/arch/arm32/Makefile -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/arch/arm64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/arch/arm64/Makefile -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/arch/i386/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/arch/i386/Makefile -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/arch/i386/README.i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/arch/i386/README.i386 -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/arch/loong64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/arch/loong64/Makefile -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/arch/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/arch/x86/Makefile -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/arch/x86/Makefile.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/arch/x86/Makefile.efi -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/arch/x86/core/cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/arch/x86/core/cpuid.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/arch/x86/core/stack.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/arch/x86/core/stack.S -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/arch/x86/image/nbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/arch/x86/image/nbi.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/arch/x86/image/sdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/arch/x86/image/sdi.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/arch/x86/prefix/mbr.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/arch/x86/prefix/mbr.S -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/arch/x86/transitions/libpm.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/arch/x86_64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/arch/x86_64/Makefile -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/build.sh -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/branding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/branding.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/cloud/aws.ipxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/cloud/aws.ipxe -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/cloud/colour.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/cloud/crypto.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/cloud/gce.ipxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/cloud/gce.ipxe -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/cloud/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/cloud/ioapi.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/cloud/serial.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/cloud/sideband.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/cloud/usb.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/colour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/colour.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/config.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/config_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/config_asn1.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/config_efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/config_efi.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/config_fc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/config_fc.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/config_fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/config_fdt.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/config_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/config_http.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/config_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/config_linux.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/config_route.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/config_route.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/config_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/config_timer.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/config_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/config_usb.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/console.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/crypto.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/defaults.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/defaults/efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/defaults/efi.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/dhcp.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/entropy.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/fault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/fault.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/fdt.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/general.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/ioapi.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/isa.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/named.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/named.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/nap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/nap.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/qemu/colour.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/qemu/console.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/qemu/crypto.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/qemu/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/qemu/general.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/qemu/ioapi.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/qemu/serial.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/qemu/settings.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/qemu/sideband.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/qemu/usb.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/reboot.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/rpi/colour.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/rpi/console.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/rpi/crypto.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/rpi/general.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/rpi/ioapi.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/rpi/serial.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/rpi/settings.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/rpi/sideband.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/rpi/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/rpi/usb.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/sanboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/sanboot.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/serial.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/settings.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/sideband.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/sideband.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/time.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/timer.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/umalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/umalloc.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/usb.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/vbox/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/vbox/README -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/vbox/colour.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/vbox/console.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/vbox/crypto.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/vbox/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/config/vbox/general.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/vbox/ioapi.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/vbox/serial.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/vbox/settings.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/vbox/sideband.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/config/vbox/usb.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/acpi.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/acpi_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/acpi_settings.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/acpimac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/acpimac.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/ansicol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/ansicol.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/ansicoldef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/ansicoldef.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/ansiesc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/ansiesc.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/archive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/archive.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/asprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/asprintf.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/assert.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/base16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/base16.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/base64.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/basename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/basename.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/bitmap.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/blockdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/blockdev.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/blocktrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/blocktrans.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/cachedhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/cachedhcp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/console.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/cpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/cpio.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/ctype.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/cwuri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/cwuri.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/debug.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/debug_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/debug_md5.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/device.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/dma.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/downloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/downloader.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/dummy_sanboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/dummy_sanboot.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/dynkeymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/dynkeymap.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/edd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/edd.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/errno.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/exec.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/fault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/fault.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/fbcon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/fbcon.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/fdt.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/fnrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/fnrec.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/gdbserial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/gdbserial.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/gdbstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/gdbstub.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/gdbudp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/gdbudp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/getkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/getkey.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/getopt.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/grub/fs/ext2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/grub/fs/ext2.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/grub/fs/fshelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/grub/fs/fshelp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/grub/include/grub/boottime.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/grub/include/grub/gfxmenu_model.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/grub/io/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/grub/io/gzio.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/grub/kern/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/grub/kern/disk.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/grub/kern/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/grub/kern/env.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/grub/kern/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/grub/kern/err.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/grub/kern/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/grub/kern/file.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/grub/kern/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/grub/kern/fs.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/grub/kern/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/grub/kern/misc.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/grub/lib/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/grub/lib/crc.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/grub/lib/crc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/grub/lib/crc64.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/hw.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/i82365.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/i82365.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/image.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/init.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/interface.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/iobuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/iobuf.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/iomap_virt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/iomap_virt.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/isqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/isqrt.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/job.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/keymap.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/linebuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/linebuf.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/lineconsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/lineconsole.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/list.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/log.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/main.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/malloc.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/menu.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/monojob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/monojob.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/netbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/netbios.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/null_acpi.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | PROVIDE_ACPI_INLINE ( null, acpi_find ); 4 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/null_nap.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | PROVIDE_NAP_INLINE ( null, cpu_nap ); 4 | -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/null_reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/null_reboot.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/null_sanboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/null_sanboot.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/null_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/null_time.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/nvo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/nvo.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/open.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/params.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/parseopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/parseopt.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/pc_kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/pc_kbd.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/pcmcia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/pcmcia.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/pending.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/pending.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/pinger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/pinger.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/pixbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/pixbuf.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/pool.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/posix_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/posix_io.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/process.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/profile.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/quiesce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/quiesce.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/random.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/refcnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/refcnt.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/resolv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/resolv.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/sanboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/sanboot.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/serial.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/settings.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/string.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/stringextra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/stringextra.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/time.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/timer.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/uart.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/uri.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/utf8.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/uuid.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/version.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/vsprintf.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/vtoy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/vtoy.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/wchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/wchar.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/xfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/xfer.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/core/xferbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/core/xferbuf.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/aes.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/aes_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/aes_wrap.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/arc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/arc4.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/asn1.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/bigint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/bigint.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/cbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/cbc.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/certstore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/certstore.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/chap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/chap.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/cms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/cms.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/crc32.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/crypto_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/crypto_null.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/deflate.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/dhe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/dhe.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/drbg.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/ecb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/ecb.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/entropy.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/gcm.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/hash_df.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/hash_df.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/hmac.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/hmac_drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/hmac_drbg.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/md4.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/md5.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/ntlm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/ntlm.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/ocsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/ocsp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/privkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/privkey.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/random_nz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/random_nz.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/rbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/rbg.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/rootcert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/rootcert.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/rsa.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/sha1.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/sha1extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/sha1extra.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/sha224.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/sha224.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/sha256.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/sha384.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/sha384.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/sha512.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/sha512_224.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/sha512_224.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/sha512_256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/sha512_256.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/crypto/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/crypto/x509.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/doc/build_sys.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/doc/build_sys.dox -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/doc/pxe_extensions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/doc/pxe_extensions -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/doxygen.cfg -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/block/ata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/block/ata.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/block/ibft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/block/ibft.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/block/scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/block/scsi.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/block/srp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/block/srp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/bus/cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/bus/cdc.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/bus/ecam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/bus/ecam.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/bus/eisa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/bus/eisa.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/bus/isa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/bus/isa.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/bus/isa_ids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/bus/isa_ids.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/bus/isapnp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/bus/isapnp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/bus/mca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/bus/mca.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/bus/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/bus/pci.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/bus/pciea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/bus/pciea.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/bus/pcimsix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/bus/pcimsix.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/bus/pcivpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/bus/pcivpd.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/bus/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/bus/usb.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/linux/linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/linux/linux.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/linux/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/linux/slirp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/linux/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/linux/tap.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/3c503.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/3c503.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/3c509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/3c509.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/3c509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/3c509.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/3c515.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/3c515.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/3c515.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/3c515.txt -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/3c529.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/3c529.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/3c595.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/3c595.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/3c595.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/3c595.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/3c5x9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/3c5x9.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/3c90x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/3c90x.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/3c90x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/3c90x.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/acm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/acm.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/acm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/acm.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/ath/ath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/ath/ath.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/ath/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/ath/reg.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/atl1e.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/atl1e.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/atl1e.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/atl1e.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/axge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/axge.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/axge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/axge.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/b44.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/b44.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/b44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/b44.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/bnx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/bnx2.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/bnx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/bnx2.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/bnx2_fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/bnx2_fw.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/cs89x0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/cs89x0.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/cs89x0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/cs89x0.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/davicom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/davicom.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/depca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/depca.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/dm96xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/dm96xx.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/dm96xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/dm96xx.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/dmfe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/dmfe.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/ecm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/ecm.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/ecm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/ecm.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/eepro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/eepro.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/efi/nii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/efi/nii.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/efi/nii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/efi/nii.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/efi/snp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/efi/snp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/ena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/ena.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/ena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/ena.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/eoib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/eoib.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/epic100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/epic100.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/epic100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/epic100.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/exanic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/exanic.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/exanic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/exanic.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/hfa384x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/hfa384x.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/ice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/ice.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/ice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/ice.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/icplus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/icplus.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/icplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/icplus.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/intel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/intel.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/intel.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/intelvf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/intelvf.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/intelvf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/intelvf.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/intelx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/intelx.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/intelx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/intelx.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/intelxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/intelxl.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/intelxl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/intelxl.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/iphone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/iphone.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/iphone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/iphone.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/ipoib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/ipoib.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/jme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/jme.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/jme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/jme.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/lan78xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/lan78xx.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/lan78xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/lan78xx.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/legacy.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/mii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/mii.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/myson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/myson.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/myson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/myson.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/natsemi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/natsemi.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/natsemi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/natsemi.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/ncm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/ncm.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/ncm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/ncm.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/ne.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/ne.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/netvsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/netvsc.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/netvsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/netvsc.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/ns8390.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/ns8390.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/ns8390.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/ns8390.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/pcnet32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/pcnet32.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/pcnet32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/pcnet32.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/pnic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/pnic.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/prism2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/prism2.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/rdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/rdc.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/rdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/rdc.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/realtek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/realtek.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/realtek.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/realtek.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/rhine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/rhine.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/rhine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/rhine.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/sis190.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/sis190.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/sis190.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/sis190.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/sis900.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/sis900.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/sis900.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/sis900.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/skge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/skge.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/skge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/skge.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/sky2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/sky2.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/sky2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/sky2.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/smc9000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/smc9000.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/smc9000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/smc9000.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/smscusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/smscusb.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/smscusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/smscusb.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/tg3/tg3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/tg3/tg3.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/tg3/tg3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/tg3/tg3.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/tlan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/tlan.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/tlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/tlan.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/tulip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/tulip.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/tulip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/tulip.txt -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/vmxnet3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/vmxnet3.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/vmxnet3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/vmxnet3.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/w89c840.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/w89c840.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/net/wd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/net/wd.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/nvs/nvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/nvs/nvs.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/nvs/nvsvpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/nvs/nvsvpd.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/nvs/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/nvs/spi.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/usb/ehci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/usb/ehci.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/usb/ehci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/usb/ehci.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/usb/uhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/usb/uhci.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/usb/uhci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/usb/uhci.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/usb/usbblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/usb/usbblk.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/usb/usbblk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/usb/usbblk.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/usb/usbhid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/usb/usbhid.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/usb/usbhub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/usb/usbhub.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/usb/usbhub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/usb/usbhub.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/usb/usbio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/usb/usbio.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/usb/usbio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/usb/usbio.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/usb/usbkbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/usb/usbkbd.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/usb/usbkbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/usb/usbkbd.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/usb/usbnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/usb/usbnet.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/usb/xhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/usb/xhci.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/drivers/usb/xhci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/drivers/usb/xhci.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/hci/editstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/hci/editstring.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/hci/jumpscroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/hci/jumpscroll.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/hci/linux_args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/hci/linux_args.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/hci/mucurses/alert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/hci/mucurses/alert.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/hci/mucurses/clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/hci/mucurses/clear.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/hci/mucurses/colour.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/hci/mucurses/colour.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/hci/mucurses/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/hci/mucurses/cursor.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/hci/mucurses/edging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/hci/mucurses/edging.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/hci/mucurses/kb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/hci/mucurses/kb.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/hci/mucurses/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/hci/mucurses/print.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/hci/mucurses/slk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/hci/mucurses/slk.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/hci/readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/hci/readline.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/hci/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/hci/shell.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/hci/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/hci/strerror.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/hci/tui/login_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/hci/tui/login_ui.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/hci/tui/menu_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/hci/tui/menu_ui.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/hci/tui/settings_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/hci/tui/settings_ui.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/hci/wireless_errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/hci/wireless_errors.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/image/der.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/image/der.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/image/efi_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/image/efi_image.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/image/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/image/elf.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/image/embedded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/image/embedded.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/image/gzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/image/gzip.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/image/pem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/image/pem.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/image/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/image/png.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/image/pnm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/image/pnm.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/image/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/image/script.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/image/segment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/image/segment.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/image/zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/image/zlib.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/alloca.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/assert.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/byteswap.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/coff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/coff.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/compiler.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/cpu.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ctype.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/curses.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/elf.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/endian.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/errno.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/etherboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/etherboot.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/fs.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/getopt.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/i82365.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/i82365.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/acpi.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/aes.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/aoe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/aoe.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/api.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/arc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/arc4.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/arp.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/asn1.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/ata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/ata.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/base16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/base16.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/base64.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/bigint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/bigint.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/bitmap.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/bitops.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/bofm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/bofm.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/cbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/cbc.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/cdc.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/chap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/chap.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/cms.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/cpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/cpio.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/crc32.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/crypto.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/der.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/der.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/device.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/dhcp.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/dhcpv6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/dhcpv6.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/dhe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/dhe.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/dma.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/dns.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/drbg.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/eap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/eap.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/eapol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/eapol.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/ecam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/ecam.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/ecb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/ecb.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/edd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/edd.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/eisa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/eisa.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/elf.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/eoib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/eoib.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/fault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/fault.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/fbcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/fbcon.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/fc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/fc.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/fcels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/fcels.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/fcns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/fcns.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/fcoe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/fcoe.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/fcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/fcp.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/fdt.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/fip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/fip.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/ftp.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/gcm.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/gdbudp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/gdbudp.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/gzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/gzip.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/hmac.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/http.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/hyperv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/hyperv.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/i2c.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/ib_cm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/ib_cm.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/ib_mad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/ib_mad.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/ib_mi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/ib_mi.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/ib_sma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/ib_sma.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/ib_smc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/ib_smc.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/ib_srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/ib_srp.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/ibft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/ibft.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/icmp.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/icmpv6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/icmpv6.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/if_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/if_arp.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/image.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/in.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/init.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/io.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/iobuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/iobuf.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/iomap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/iomap.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/ip.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/ipoib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/ipoib.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/ipstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/ipstat.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/ipv6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/ipv6.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/isa.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/isapnp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/isapnp.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/iscsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/iscsi.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/isqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/isqrt.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/job.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/keymap.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/keys.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/linux.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/list.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/lldp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/lldp.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/malloc.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/mca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/mca.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/md4.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/md5.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/menu.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/mii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/mii.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/mount.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/nap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/nap.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/ndp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/ndp.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/nfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/nfs.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/nonxen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/nonxen.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/ntlm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/ntlm.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/ntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/ntp.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/nvo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/nvo.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/nvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/nvs.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/nvsvpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/nvsvpd.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/ocsp.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/oncrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/oncrpc.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/open.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/params.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/pccrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/pccrc.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/pccrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/pccrd.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/pccrr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/pccrr.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/pci.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/pci_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/pci_io.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/pciea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/pciea.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/pcivpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/pcivpd.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/pem.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/ping.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/pinger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/pinger.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/pixbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/pixbuf.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/png.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/pnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/pnm.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/pool.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/rarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/rarp.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/rbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/rbg.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/reboot.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/refcnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/refcnt.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/resolv.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/retry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/retry.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/rndis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/rndis.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/rotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/rotate.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/rsa.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/sbat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/sbat.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/script.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/scsi.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/serial.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/sha1.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/sha256.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/sha512.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/shell.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/slirp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/slirp.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/smbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/smbios.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/socket.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/spi.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/srp.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/stp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/stp.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/string.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/syslog.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/tables.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/tcp.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/tcpip.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/test.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/tftp.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/time.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/timer.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/tls.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/uart.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/udp.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/uri.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/usb.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/usbhid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/usbhid.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/usbnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/usbnet.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/utf8.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/uuid.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/vlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/vlan.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/vmbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/vmbus.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/vtoy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/vtoy.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/wpa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/wpa.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/x509.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/xen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/xen.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/xenbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/xenbus.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/xenmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/xenmem.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/xenver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/xenver.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/xfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/xfer.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/xsigo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/xsigo.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/ipxe/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/ipxe/zlib.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/libgen.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/mii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/mii.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/nic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/nic.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/old_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/old_tcp.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/pc_kbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/pc_kbd.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/pcmcia-opts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/pcmcia-opts.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/pcmcia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/pcmcia.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/stdarg.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/stdbool.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/stddef.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/stdint.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/stdio.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/stdlib.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/string.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/strings.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/sys/time.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/sys_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/sys_info.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/syslog.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/time.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/unistd.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/usr/fcmgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/usr/fcmgmt.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/usr/ibmgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/usr/ibmgmt.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/usr/ifmgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/usr/ifmgmt.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/usr/imgmgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/usr/imgmgmt.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/usr/ipstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/usr/ipstat.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/usr/iwmgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/usr/iwmgmt.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/usr/lotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/usr/lotest.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/usr/ntpmgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/usr/ntpmgmt.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/usr/prompt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/usr/prompt.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/usr/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/usr/route.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/usr/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/usr/sync.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/wchar.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/xen/import.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/xen/import.pl -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/xen/io/ring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/xen/io/ring.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/xen/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/xen/memory.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/xen/physdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/xen/physdev.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/xen/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/xen/trace.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/xen/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/xen/version.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/include/xen/xen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/include/xen/xen.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/interface/bofm/bofm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/interface/bofm/bofm.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/libgcc/__divdi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/libgcc/__divdi3.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/libgcc/__divmoddi4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/libgcc/__divmoddi4.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/libgcc/__moddi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/libgcc/__moddi3.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/libgcc/__udivdi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/libgcc/__udivdi3.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/libgcc/__udivmoddi4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/libgcc/__udivmoddi4.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/libgcc/__umoddi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/libgcc/__umoddi3.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/libgcc/icc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/libgcc/icc.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/libgcc/implicit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/libgcc/implicit.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/libgcc/libgcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/libgcc/libgcc.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/80211/net80211.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/80211/net80211.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/80211/rc80211.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/80211/rc80211.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/80211/sec80211.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/80211/sec80211.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/80211/wep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/80211/wep.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/80211/wpa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/80211/wpa.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/80211/wpa_ccmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/80211/wpa_ccmp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/80211/wpa_psk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/80211/wpa_psk.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/80211/wpa_tkip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/80211/wpa_tkip.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/aoe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/aoe.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/arp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/dhcpopts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/dhcpopts.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/dhcppkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/dhcppkt.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/eap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/eap.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/eapol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/eapol.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/eth_slow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/eth_slow.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/ethernet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/ethernet.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/fakedhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/fakedhcp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/fc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/fc.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/fcels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/fcels.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/fcns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/fcns.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/fcoe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/fcoe.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/fcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/fcp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/fragment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/fragment.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/icmp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/icmpv4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/icmpv4.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/icmpv6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/icmpv6.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/infiniband.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/infiniband.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/iobpad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/iobpad.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/ipv4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/ipv4.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/ipv6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/ipv6.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/lldp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/lldp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/ndp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/ndp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/neighbour.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/neighbour.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/netdev_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/netdev_settings.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/netdevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/netdevice.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/nullnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/nullnet.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/oncrpc/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/oncrpc/mount.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/oncrpc/nfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/oncrpc/nfs.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/oncrpc/nfs_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/oncrpc/nfs_open.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/oncrpc/nfs_uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/oncrpc/nfs_uri.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/oncrpc/portmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/oncrpc/portmap.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/pccrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/pccrc.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/pccrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/pccrd.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/peerblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/peerblk.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/peerdisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/peerdisc.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/peerdist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/peerdist.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/peermux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/peermux.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/ping.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/rarp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/rarp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/retry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/retry.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/rndis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/rndis.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/socket.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/stp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/stp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/tcp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/tcp/ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/tcp/ftp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/tcp/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/tcp/http.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/tcp/httpauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/tcp/httpauth.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/tcp/httpbasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/tcp/httpbasic.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/tcp/httpblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/tcp/httpblock.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/tcp/httpconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/tcp/httpconn.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/tcp/httpcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/tcp/httpcore.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/tcp/httpdigest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/tcp/httpdigest.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/tcp/httpgce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/tcp/httpgce.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/tcp/httpntlm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/tcp/httpntlm.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/tcp/https.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/tcp/https.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/tcp/iscsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/tcp/iscsi.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/tcp/oncrpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/tcp/oncrpc.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/tcp/syslogs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/tcp/syslogs.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/tcpip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/tcpip.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/tls.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/udp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/udp/dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/udp/dhcp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/udp/dhcpv6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/udp/dhcpv6.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/udp/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/udp/dns.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/udp/ntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/udp/ntp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/udp/slam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/udp/slam.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/udp/syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/udp/syslog.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/udp/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/udp/tftp.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/validator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/validator.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/net/vlan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/net/vlan.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/scripts/efi.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/scripts/efi.lds -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/scripts/linux.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/scripts/linux.lds -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/acpi_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/acpi_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/aes_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/aes_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/asn1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/asn1_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/asn1_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/asn1_test.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/base16_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/base16_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/base64_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/base64_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/bigint_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/bigint_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/bitops_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/bitops_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/bofm_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/bofm_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/byteswap_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/byteswap_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/cipher_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/cipher_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/cipher_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/cipher_test.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/cms_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/cms_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/crc32_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/crc32_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/der_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/der_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/dhe_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/dhe_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/digest_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/digest_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/digest_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/digest_test.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/dns_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/dns_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/gcm_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/gcm_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/gzip_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/gzip_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/hmac_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/hmac_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/iobuf_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/iobuf_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/ipv4_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/ipv4_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/ipv6_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/ipv6_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/list_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/list_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/math_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/math_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/md4_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/md4_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/md5_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/md5_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/memcpy_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/memcpy_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/memset_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/memset_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/nap_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/nap_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/ntlm_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/ntlm_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/ocsp_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/ocsp_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/pccrc_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/pccrc_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/pem_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/pem_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/pixbuf_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/pixbuf_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/pixbuf_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/pixbuf_test.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/png_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/png_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/pnm_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/pnm_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/pubkey_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/pubkey_test.h -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/rsa_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/rsa_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/setjmp_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/setjmp_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/sha1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/sha1_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/sha256_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/sha256_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/sha512_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/sha512_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/string_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/string_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/tcpip_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/tcpip_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/tests.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/time_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/time_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/uri_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/uri_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/utf8_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/utf8_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/x509_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/x509_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/tests/zlib_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/tests/zlib_test.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/autoboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/autoboot.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/certmgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/certmgmt.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/dhcpmgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/dhcpmgmt.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/fcmgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/fcmgmt.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/ibmgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/ibmgmt.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/ifmgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/ifmgmt.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/imgarchive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/imgarchive.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/imgmgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/imgmgmt.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/imgtrust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/imgtrust.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/ipstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/ipstat.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/iwmgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/iwmgmt.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/lotest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/lotest.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/neighmgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/neighmgmt.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/nslookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/nslookup.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/ntpmgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/ntpmgmt.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/pingmgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/pingmgmt.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/profstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/profstat.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/prompt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/prompt.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/pxemenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/pxemenu.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/route.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/route.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/route_ipv4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/route_ipv4.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/route_ipv6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/route_ipv6.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/usr/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/usr/sync.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/.gitignore -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/Makefile -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/Option/ROM.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/Option/ROM.pm -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/catrom.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/catrom.pl -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/diffsize.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/diffsize.pl -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/disrom.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/disrom.pl -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/eficompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/eficompress.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/efifatbin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/efifatbin.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/efirom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/efirom.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/einfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/einfo.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/elf2efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/elf2efi.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/fixrom.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/fixrom.pl -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/fnrec.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/fnrec.pl -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/genfsimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/genfsimg -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/genkeymap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/genkeymap.py -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/get-pci-ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/get-pci-ids -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/hijack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/hijack.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/licence.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/licence.pl -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/mergerom.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/mergerom.pl -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/modrom.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/modrom.pl -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/niclist.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/niclist.pl -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/nrv2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/nrv2b.c -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/padimg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/padimg.pl -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/parserom.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/parserom.pl -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/relicense.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/relicense.pl -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/romcheck.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/romcheck.pl -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/sortobjdump.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/sortobjdump.pl -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/swapdevids.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/swapdevids.pl -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/symcheck.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/symcheck.pl -------------------------------------------------------------------------------- /iPXE/ipxe-bd13697/src/util/zbin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ventoy/PXE/HEAD/iPXE/ipxe-bd13697/src/util/zbin.c --------------------------------------------------------------------------------