On 5/18/20 6:58 PM, Paul Menzel wrote:
Printing the return value of `scsi_is_ready()` is a debug message, so change the log level from 1 to 5.Booting from DVD/CD... Device reports MEDIUM NOT PRESENT scsi_is_ready returned -1 Boot failed: Could not read from CDROM (code 0003) Signed-off-by: Paul Menzel <[email protected]> --- src/cdrom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cdrom.c b/src/cdrom.c index 577d69d..a77671a 100644 --- a/src/cdrom.c +++ b/src/cdrom.c @@ -142,7 +142,7 @@ cdrom_boot(struct drive_s *drive)int ret = scsi_is_ready(&dop);if (ret) - dprintf(1, "scsi_is_ready returned %d\n", ret); + dprintf(5, "scsi_is_ready returned %d\n", ret);// Read the Boot Record Volume Descriptoru8 buffer[CDROM_SECTOR_SIZE];
Reviewed-by: Philippe Mathieu-Daudé <[email protected]> _______________________________________________ SeaBIOS mailing list -- [email protected] To unsubscribe send an email to [email protected]
