Move IPL.bev to static variables in boot.c
[seabios.git] / src / boot.h
index 7801ed53b205fc800f8cd6184dd347973924bd21..94b175db74c6b47b767ccac58601de67b3740874 100644 (file)
@@ -2,30 +2,11 @@
 #ifndef __BOOT_H
 #define __BOOT_H
 
-
-/****************************************************************
- * Initial Program Load (IPL)
- ****************************************************************/
-
-struct ipl_entry_s {
-    u16 type;
-    u32 vector;
-};
-
 struct ipl_s {
-    struct ipl_entry_s bev[8];
-    int bevcount;
     char **fw_bootorder;
     int fw_bootorder_count;
 };
 
-#define IPL_TYPE_FLOPPY      0x01
-#define IPL_TYPE_HARDDISK    0x02
-#define IPL_TYPE_CDROM       0x03
-#define IPL_TYPE_CBFS        0x20
-#define IPL_TYPE_BEV         0x80
-#define IPL_TYPE_BCV         0x81
-
 
 /****************************************************************
  * Function defs