From: Kevin O'Connor Date: Wed, 29 Dec 2010 16:18:04 +0000 (-0500) Subject: Move IPL.checkfloppysig to a global (CheckFloppySig) in boot.c. X-Git-Tag: rel-0.6.2~26 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=baaadb6e1d195e8e871d060dc86b2a86228b076e;p=seabios.git Move IPL.checkfloppysig to a global (CheckFloppySig) in boot.c. --- diff --git a/src/boot.c b/src/boot.c index 8e33d53..dacf639 100644 --- a/src/boot.c +++ b/src/boot.c @@ -86,6 +86,8 @@ int bootprio_find_named_rom(const char *name, int instance) * Boot setup ****************************************************************/ +static int CheckFloppySig = 1; + #define DEFAULT_PRIO 9999 static int DefaultFloppyPrio = 101; @@ -100,12 +102,11 @@ boot_setup(void) return; SET_EBDA(boot_sequence, 0xffff); - IPL.checkfloppysig = 1; if (!CONFIG_COREBOOT) { // On emulators, get boot order from nvram. if (inb_cmos(CMOS_BIOS_BOOTFLAG1) & 1) - IPL.checkfloppysig = 0; + CheckFloppySig = 0; u32 bootorder = (inb_cmos(CMOS_BIOS_BOOTFLAG2) | ((inb_cmos(CMOS_BIOS_BOOTFLAG1) & 0xf0) << 4)); DefaultFloppyPrio = DefaultCDPrio = DefaultHDPrio @@ -473,7 +474,7 @@ do_boot(u16 seq_nr) switch (ie->type) { case IPL_TYPE_FLOPPY: printf("Booting from Floppy...\n"); - boot_disk(0x00, IPL.checkfloppysig); + boot_disk(0x00, CheckFloppySig); break; case IPL_TYPE_HARDDISK: printf("Booting from Hard Disk...\n"); diff --git a/src/boot.h b/src/boot.h index fa455d5..7801ed5 100644 --- a/src/boot.h +++ b/src/boot.h @@ -15,7 +15,6 @@ struct ipl_entry_s { struct ipl_s { struct ipl_entry_s bev[8]; int bevcount; - int checkfloppysig; char **fw_bootorder; int fw_bootorder_count; };