From: Kevin O'Connor Date: Sun, 11 Mar 2012 15:22:07 +0000 (-0400) Subject: Update drive type default boot order. X-Git-Tag: rel-1.7.0~14 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=4e752f5fd08db2dff0376f5a42910d2d2550a648;p=seabios.git Update drive type default boot order. The default boot order among different drive types is determined by the driver id (DTYPE_X). Reorder them to make more sense (USB drives shouldn't have a higher default priority than AHCI/virtio drives). Signed-off-by: Kevin O'Connor --- diff --git a/src/disk.h b/src/disk.h index d344399..a675aeb 100644 --- a/src/disk.h +++ b/src/disk.h @@ -204,10 +204,10 @@ struct drive_s { #define DTYPE_ATAPI 0x03 #define DTYPE_RAMDISK 0x04 #define DTYPE_CDEMU 0x05 -#define DTYPE_USB 0x06 -#define DTYPE_VIRTIO_BLK 0x07 -#define DTYPE_AHCI 0x08 -#define DTYPE_VIRTIO_SCSI 0x09 +#define DTYPE_AHCI 0x06 +#define DTYPE_VIRTIO_SCSI 0x07 +#define DTYPE_VIRTIO_BLK 0x08 +#define DTYPE_USB 0x09 #define MAXDESCSIZE 80