Home | History | Annotate | only in /external/syslinux/com32/hdt
Up to higher level directory
NameDateSize
art/05-Oct-2017
floppy/05-Oct-2017
hdt-ata.c05-Oct-20171.5K
hdt-ata.h05-Oct-20172.6K
hdt-cli-acpi.c05-Oct-20178.7K
hdt-cli-cpu.c05-Oct-201712.1K
hdt-cli-disk.c05-Oct-20177.1K
hdt-cli-dmi.c05-Oct-201725.4K
hdt-cli-hdt.c05-Oct-201712K
hdt-cli-kernel.c05-Oct-20174.8K
hdt-cli-memory.c05-Oct-20174.2K
hdt-cli-pci.c05-Oct-20179.1K
hdt-cli-pxe.c05-Oct-20173.2K
hdt-cli-syslinux.c05-Oct-20172.3K
hdt-cli-vesa.c05-Oct-20174.3K
hdt-cli-vpd.c05-Oct-20173K
hdt-cli.c05-Oct-201732.2K
hdt-cli.h05-Oct-20176.4K
hdt-common.c05-Oct-201723.4K
hdt-common.h05-Oct-20177.9K
hdt-dump-acpi.c05-Oct-201716.1K
hdt-dump-cpu.c05-Oct-20172K
hdt-dump-disks.c05-Oct-20174.7K
hdt-dump-dmi.c05-Oct-201715.8K
hdt-dump-hdt.c05-Oct-20171.9K
hdt-dump-kernel.c05-Oct-20172.4K
hdt-dump-memory.c05-Oct-20174.3K
hdt-dump-pci.c05-Oct-20174.5K
hdt-dump-pxe.c05-Oct-20173K
hdt-dump-syslinux.c05-Oct-20171.6K
hdt-dump-vesa.c05-Oct-20172.5K
hdt-dump-vpd.c05-Oct-20171.8K
hdt-dump.c05-Oct-20176.6K
hdt-dump.h05-Oct-20174.3K
hdt-menu-about.c05-Oct-20173.6K
hdt-menu-acpi.c05-Oct-20175.3K
hdt-menu-disk.c05-Oct-201710K
hdt-menu-dmi.c05-Oct-201714.7K
hdt-menu-kernel.c05-Oct-20173.2K
hdt-menu-memory.c05-Oct-201713.8K
hdt-menu-pci.c05-Oct-20177.5K
hdt-menu-processor.c05-Oct-201714.6K
hdt-menu-pxe.c05-Oct-20174.7K
hdt-menu-summary.c05-Oct-20177.1K
hdt-menu-syslinux.c05-Oct-20173.3K
hdt-menu-vesa.c05-Oct-20174.9K
hdt-menu-vpd.c05-Oct-20174.3K
hdt-menu.c05-Oct-20179.9K
hdt-menu.h05-Oct-20174.6K
hdt-util.c05-Oct-20173K
hdt-util.h05-Oct-20171.5K
hdt.c05-Oct-20172.8K
hdt.h05-Oct-20171.8K
Makefile05-Oct-20176.9K
README05-Oct-2017868

README

      1 --------------
      2 Compiling HDT
      3 --------------
      4 To build HDT, you just have to do a "make" call in this directory.
      5 
      6 ---------------------------
      7 Creating a bootable floppy
      8 --------------------------
      9 To build a bootable HDT floppy image, you can do a "make hdt.img" call.
     10 This will requires the mtools (http://mtools.linux.lu) to be installed.
     11 The script will try to pick several files from your system :
     12 - /lib/modules/`uname -r`/modules.alias
     13 - /lib/modules/`uname -r`/modules.pcimap
     14 - /usr/share/pci.ids or /usr/share/hwdata/pci.ids
     15 
     16 This paths can be overrided with the following command line:
     17 make MODULES_ALIAS_FILE=$(PWD)/floppy/modules.alias MODULES_PCIMAP_FILE=$(PWD)/floppy/modules.pcimap PCI_IDS_FILE=$(PWD)/floppy/pci.ids hdt.img
     18 
     19 If your system doesn't have pci.ids, please download it from http://pciids.sourceforge.net/ and put it into the floppy/ directory.
     20