From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:52639) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ss98c-0000gp-N3 for qemu-devel@nongnu.org; Fri, 20 Jul 2012 05:04:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ss98V-0003a3-6N for qemu-devel@nongnu.org; Fri, 20 Jul 2012 05:04:42 -0400 Received: from mx1.redhat.com ([209.132.183.28]:13519) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ss98U-0003Zk-UX for qemu-devel@nongnu.org; Fri, 20 Jul 2012 05:04:35 -0400 From: Gerd Hoffmann Date: Fri, 20 Jul 2012 10:59:22 +0200 Message-Id: <1342774765-20640-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH v2 0/3] scsi boot List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: seabios@seabios.org, qemu-devel@nongnu.org Cc: Gerd Hoffmann Hi, Quick review, giving me the opportunity for a quick v2 before disappearing into my summer vacation, fixing the nits pointed out by Kevin. The series also got a third commit which moves the usb mass storage defines from usb-msc.h to usb.h, so the uas code can easily reuse them. cheers, Gerd Gerd Hoffmann (3): move usb mass storage defines to usb.h usb attached scsi boot support lsi53c895a boot support Makefile | 3 +- src/Kconfig | 14 +++- src/block.c | 4 +- src/blockcmd.c | 8 ++- src/disk.h | 2 + src/lsi-scsi.c | 212 +++++++++++++++++++++++++++++++++++++++++++++ src/lsi-scsi.h | 8 ++ src/post.c | 2 + src/usb-msc.h | 11 --- src/usb-uas.c | 264 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/usb-uas.h | 9 ++ src/usb.c | 10 ++- src/usb.h | 11 +++ 13 files changed, 540 insertions(+), 18 deletions(-) create mode 100644 src/lsi-scsi.c create mode 100644 src/lsi-scsi.h create mode 100644 src/usb-uas.c create mode 100644 src/usb-uas.h