diff options
author | Erwan Velu <erwan.velu@free.fr> | 2009-11-20 16:37:36 +0100 |
---|---|---|
committer | Erwan Velu <erwan.velu@free.fr> | 2009-11-20 16:37:36 +0100 |
commit | 30078a2b872a3e137d4809ffab53f34377ffce98 (patch) | |
tree | 77c0bef9b7ddf0cb178b3f41ae952f8238e9c1b7 | |
parent | 875e6c8e0d8bf5815b8598f26c7a74af01ccd8e3 (diff) | |
download | syslinux-30078a2b872a3e137d4809ffab53f34377ffce98.tar.gz syslinux-30078a2b872a3e137d4809ffab53f34377ffce98.tar.xz syslinux-30078a2b872a3e137d4809ffab53f34377ffce98.zip |
hdt: hdt.img must use 8.3 naming
Impact: Loading files is now working again
Prior to that commit, the hdt.img was failing loading files
-rw-r--r-- | com32/hdt/Makefile | 6 | ||||
-rw-r--r-- | com32/hdt/floppy/hdt.cfg | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/com32/hdt/Makefile b/com32/hdt/Makefile index 0d753a9f..abe21f5f 100644 --- a/com32/hdt/Makefile +++ b/com32/hdt/Makefile @@ -50,11 +50,11 @@ hdt.img: hdt.c32 $(FLOPPY_DIR)/hdt.cfg $(FLOPPY_DIR)/mtools.conf $(topdir)/mtool $(topdir)/mtools/syslinux hdt.img -[ ! -f $(GZ_PCI_IDS_FILE) ] && cp /usr/share/hwdata/pci.ids $(PCI_IDS_FILE) && $(GZIPPROG) $(PCI_IDS_FILE) -[ ! -f $(GZ_PCI_IDS_FILE) ] && cp /usr/share/pci.ids $(PCI_IDS_FILE) && $(GZIPPROG) $(PCI_IDS_FILE) - -[ -f $(MODULES_ALIAS_FILE) ] && cat $(MODULES_ALIAS_FILE) | $(GZIPPROG) - -f | MTOOLSRC=$(PWD)/$(FLOPPY_DIR)/mtools.conf $(MCOPY) - a:$(GZ_MODULES_ALIAS_FILE) - -[ -f $(MODULES_PCIMAP_FILE) ] && cat $(MODULES_PCIMAP_FILE) | $(GZIPPROG) - -f | MTOOLSRC=$(PWD)/$(FLOPPY_DIR)/mtools.conf $(MCOPY) - a:$(GZ_MODULES_PCIMAP_FILE) + -[ -f $(MODULES_ALIAS_FILE) ] && cat $(MODULES_ALIAS_FILE) | $(GZIPPROG) - -f | MTOOLSRC=$(PWD)/$(FLOPPY_DIR)/mtools.conf $(MCOPY) - a:modules.alias + -[ -f $(MODULES_PCIMAP_FILE) ] && cat $(MODULES_PCIMAP_FILE) | $(GZIPPROG) - -f | MTOOLSRC=$(PWD)/$(FLOPPY_DIR)/mtools.conf $(MCOPY) - a:modules.pcimap MTOOLSRC=$(PWD)/$(FLOPPY_DIR)/mtools.conf $(MCOPY) hdt.c32 a: MTOOLSRC=$(PWD)/$(FLOPPY_DIR)/mtools.conf $(MCOPY) $(REBOOT_COM32) a: - @ [ -f $(GZ_PCI_IDS_FILE) ] && MTOOLSRC=$(PWD)/$(FLOPPY_DIR)/mtools.conf $(MCOPY) $(GZ_PCI_IDS_FILE) a: || printf "\nThe $(GZ_PCI_IDS_FILE) file is missing and can be downloaded from http://pciids.sourceforge.net and gzipped in\nthe ./com32/hdt/$(FLOPPY_DIR) directory of the extracted Syslinux source.\n\n" + @ [ -f $(GZ_PCI_IDS_FILE) ] && MTOOLSRC=$(PWD)/$(FLOPPY_DIR)/mtools.conf $(MCOPY) $(GZ_PCI_IDS_FILE) a:pci.ids || printf "\nThe $(GZ_PCI_IDS_FILE) file is missing and can be downloaded from http://pciids.sourceforge.net and gzipped in\nthe ./com32/hdt/$(FLOPPY_DIR) directory of the extracted Syslinux source.\n\n" MTOOLSRC=$(PWD)/$(FLOPPY_DIR)/mtools.conf $(MCOPY) $(FLOPPY_DIR)/hdt.cfg a:syslinux.cfg hdt.img.gz: hdt.img diff --git a/com32/hdt/floppy/hdt.cfg b/com32/hdt/floppy/hdt.cfg index 28dfd4f7..7db52a9a 100644 --- a/com32/hdt/floppy/hdt.cfg +++ b/com32/hdt/floppy/hdt.cfg @@ -3,4 +3,4 @@ PROMPT 0 LABEL hdt COM32 hdt.c32 -APPEND modules_pcimap=modules.pcimap.gz modules_alias=modules.alias.gz pciids=pci.ids.gz quiet +APPEND modules_pcimap=modules.pcimap modules_alias=modules.alias pciids=pci.ids quiet |