usb_host_drv: move it to legacy_usb_host_drv

To make room for the re-newed usb_host_drv basing on Linux 5.14 and
the re-newed lx_kit/lx_emul we have to move the depot recipe and
consistently name the old drivers with a legacy_ prefix.

Ref genodelabs/genode#4416
This commit is contained in:
Stefan Kalkowski
2022-02-10 21:19:54 +01:00
committed by Norman Feske
parent 17f3e7a38f
commit 3966d6f16f
13 changed files with 14 additions and 14 deletions

View File

@@ -7,9 +7,9 @@ proc have_platform_drv {} {
# Return name of the USB driver binary
#
proc usb_host_drv_binary { } {
if {[have_board rpi]} { return rpi_usb_host_drv }
if {[have_board imx6q_sabrelite]} { return imx6q_sabrelite_usb_host_drv }
if {[have_board pc]} { return x86_pc_usb_host_drv }
if {[have_board rpi]} { return legacy_rpi_usb_host_drv }
if {[have_board imx6q_sabrelite]} { return legacy_imx6q_sabrelite_usb_host_drv }
if {[have_board pc]} { return legacy_pc_usb_host_drv }
return no_usb_drv_available
}