Changeset 53fb37cfa09127a56dc68c95f3dfa877d11452f4
- Timestamp:
- 10/27/09 22:33:12 (2 years ago)
- Author:
- Erwan Velu <erwan.velu@…>
- Children:
- 8551c77556c3b1d04c64221a2150d72ef910cc12
- Parents:
- 4dc540d979c770c6131217d6e94b29a6f188e1c1
- git-committer:
- Erwan Velu <erwan.velu@free.fr> / 2009-10-27T23:33:12Z+0100
- Message:
-
hdt: Fixing hdt.iso target, pci.ids was missing
Impact: Iso file is now having pci.ids
The makefile did forget to copy the pci.ids into the iso.
This stupid test is fixed.
Thx gert from reporting it.
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r18d726
|
r53fb37
|
|
| 60 | 60 | cp $(FLOPPY_DIR)/hdt.cfg $(ISO_DIR)/$(ISOLINUX_DIR)/isolinux.cfg |
| 61 | 61 | cp hdt.c32 $(ISO_DIR)/$(ISOLINUX_DIR) |
| 62 | | -[ ! -f $(PCI_IDS_FILE) ] && cp /usr/share/hwdata/pci.ids $(ISO_DIR)/$(ISOLINUX_DIR) |
| 63 | | -[ ! -f $(PCI_IDS_FILE) ] && cp /usr/share/pci.ids $(ISO_DIR)/$(ISOLINUX_DIR) |
| | 62 | -[ ! -f $(PCI_IDS_FILE) ] && cp /usr/share/hwdata/pci.ids $(PCI_IDS_FILE) |
| | 63 | -[ ! -f $(PCI_IDS_FILE) ] && cp /usr/share/pci.ids $(PCI_IDS_FILE) |
| 64 | 64 | -[ -f $(MODULES_ALIAS_FILE) ] && cp $(MODULES_ALIAS_FILE) $(ISO_DIR)/$(ISOLINUX_DIR) |
| 65 | 65 | -[ -f $(MODULES_PCIMAP_FILE) ] && cp $(MODULES_PCIMAP_FILE) $(ISO_DIR)/$(ISOLINUX_DIR) |
| | 66 | -[ ! -f $(ISO_DIR)/$(ISOLINUX_DIR)/pci.ids ] && cp $(PCI_IDS_FILE) $(ISO_DIR)/$(ISOLINUX_DIR) |
| 66 | 67 | -[ ! -f $(ISO_DIR)/$(ISOLINUX_DIR)/pci.ids ] && printf "\nThe $(FLOPPY_DIR)/pci.ids file is missing and can be downloaded from http://pciids.sourceforge.net and put in\nthe ./com32/hdt/$(FLOPPY_DIR) directory of the extracted Syslinux source.\n\n" |
| 67 | 68 | $(MKISOFS) -o hdt.iso -b $(ISOLINUX_DIR)/isolinux.bin -c $(ISOLINUX_DIR)/boot.cat \ |