It's been a few months since the last SeaBIOS release. I'd like to start preparing for the next release. If you know of any defects or critical features that should go into the next release, please let me know.
I'd like to target January 18th for the next release.
-Kevin
Boot sector write protection. Prevent modify boot sector, master boot record, partition tables.
Less and less computers come with optical disk drivers to run read-only Live distributions from. Would be nice with option to set hard disk drive read-only. So you can use a HDD or USB as a LiveCD/LiveDVD distribution.
On Tue, Jan 8, 2013 at 12:35 AM, Kevin O'Connor kevin@koconnor.net wrote:
It's been a few months since the last SeaBIOS release. I'd like to start preparing for the next release. If you know of any defects or critical features that should go into the next release, please let me know.
I'd like to target January 18th for the next release.
-Kevin
SeaBIOS mailing list SeaBIOS@seabios.org http://www.seabios.org/mailman/listinfo/seabios
On 01/08/2013 12:35 AM, Kevin O'Connor wrote:
It's been a few months since the last SeaBIOS release. I'd like to start preparing for the next release. If you know of any defects or critical features that should go into the next release, please let me know.
I'd like to target January 18th for the next release.
There's a patch for megasas support which is rather critical; without it megasas won't load properly. Please apply.
Thanks.
Cheers,
Hannes
Hannes Reinecke wrote:
+++ b/src/megasas.c @@ -382,18 +382,17 @@ megasas_setup(void) if (pci->vendor != PCI_VENDOR_ID_LSI_LOGIC && pci->vendor != PCI_VENDOR_ID_DELL) continue;
if (pci->device != PCI_DEVICE_ID_LSI_SAS1064R ||
pci->device != PCI_DEVICE_ID_LSI_SAS1078 ||
pci->device != PCI_DEVICE_ID_LSI_SAS1078DE ||
pci->device != PCI_DEVICE_ID_LSI_SAS2108 ||
pci->device != PCI_DEVICE_ID_LSI_SAS2108E ||
pci->device != PCI_DEVICE_ID_LSI_SAS2004 ||
pci->device != PCI_DEVICE_ID_LSI_SAS2008 ||
pci->device != PCI_DEVICE_ID_LSI_VERDE_ZCR ||
pci->device != PCI_DEVICE_ID_DELL_PERC5 ||
pci->device != PCI_DEVICE_ID_LSI_SAS2208 ||
pci->device != PCI_DEVICE_ID_LSI_SAS3108)
continue;
init_megasas(pci);
if (pci->device == PCI_DEVICE_ID_LSI_SAS1064R ||
pci->device == PCI_DEVICE_ID_LSI_SAS1078 ||
pci->device == PCI_DEVICE_ID_LSI_SAS1078DE ||
pci->device == PCI_DEVICE_ID_LSI_SAS2108 ||
pci->device == PCI_DEVICE_ID_LSI_SAS2108E ||
pci->device == PCI_DEVICE_ID_LSI_SAS2004 ||
pci->device == PCI_DEVICE_ID_LSI_SAS2008 ||
pci->device == PCI_DEVICE_ID_LSI_VERDE_ZCR ||
pci->device == PCI_DEVICE_ID_DELL_PERC5 ||
pci->device == PCI_DEVICE_ID_LSI_SAS2208 ||
pci->device == PCI_DEVICE_ID_LSI_SAS3108)
}init_megasas(pci);
switch () would be nice.
//Peter
On Tue, Jan 08, 2013 at 08:20:16AM +0100, Hannes Reinecke wrote:
On 01/08/2013 12:35 AM, Kevin O'Connor wrote:
It's been a few months since the last SeaBIOS release. I'd like to start preparing for the next release. If you know of any defects or critical features that should go into the next release, please let me know.
I'd like to target January 18th for the next release.
There's a patch for megasas support which is rather critical; without it megasas won't load properly. Please apply.
I applied your patch.
-Kevin