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