summaryrefslogtreecommitdiffstats
path: root/src/include/etherboot.h
diff options
context:
space:
mode:
authorMichael Brown2005-05-01 17:14:22 +0200
committerMichael Brown2005-05-01 17:14:22 +0200
commit1fdbbaa237d678c5805c1677cb842ed00c9ca56b (patch)
tree6a560bffe9a0d0914121694b0304a21da5b094bf /src/include/etherboot.h
parentUpdated to new protocol API, made to compile. (diff)
downloadipxe-1fdbbaa237d678c5805c1677cb842ed00c9ca56b.tar.gz
ipxe-1fdbbaa237d678c5805c1677cb842ed00c9ca56b.tar.xz
ipxe-1fdbbaa237d678c5805c1677cb842ed00c9ca56b.zip
Removed obsolete prototypes.
Diffstat (limited to 'src/include/etherboot.h')
-rw-r--r--src/include/etherboot.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/include/etherboot.h b/src/include/etherboot.h
index d42517b9..3fbf2511 100644
--- a/src/include/etherboot.h
+++ b/src/include/etherboot.h
@@ -207,29 +207,12 @@ extern uint16_t add_ipchksums P((unsigned long offset, uint16_t sum, uint16_t ne
extern int32_t random P((void));
extern long rfc2131_sleep_interval P((long base, int exp));
extern long rfc1112_sleep_interval P((long base, int exp));
-#ifndef DOWNLOAD_PROTO_TFTP
-#define tftp(fname, load_block) 0
-#endif
extern void cleanup P((void));
-/* proto_slam.c */
-extern int url_slam P((const char *name, int (*fnc)(unsigned char *, unsigned int, unsigned int, int)));
-
-/* proto_tftm.c */
-extern int url_tftm P((const char *name, int (*fnc)(unsigned char *, unsigned int, unsigned int, int)));
-
/* config.c */
extern void print_config(void);
-/* isa_probe.c and pci_probe.c */
-struct dev;
-extern void isa_enumerate(void);
-extern int isa_probe(struct dev *, const char *);
-extern void pci_enumerate(void);
-extern int pci_probe(struct dev *, const char *);
-
/* heap.c */
-extern void init_heap(void);
extern void *allot(size_t size);
void forget(void *ptr);
extern void *allot2(size_t size, uint32_t mask);