Fix usb driver configuartion in l4linux run script

Don't use the xhci USB host controller for HID and NIC in the l4linux
run script. It doesn't work on the Pandaboard, and isn't needed for the
Arndale board. Moreover, provide a MAC address, and add a providing
rule in the KDB UART driver to supress ugly warnings. Fix #763
This commit is contained in:
Stefan Kalkowski 2013-06-05 14:36:02 +02:00 committed by Norman Feske
parent b355897f53
commit 7584bdb22e

View File

@ -50,7 +50,10 @@ set config {
</start>
<start name="kdb_uart_drv">
<resource name="RAM" quantum="1M"/>
<provides><service name="Terminal"/></provides>
<provides>
<service name="Terminal"/>
<service name="Uart"/>
</provides>
<config><policy label="l4linux" uart="0"/></config>
</start> }
@ -93,8 +96,8 @@ append_if $use_usb_driver config {
<service name="Nic"/>
<service name="Input"/>
</provides>
<config uhci="yes" ehci="yes" xhci="yes">
<nic />
<config uhci="yes" ehci="yes">
<nic mac="2e:60:90:0c:4e:01"/>
<hid />
</config>
</start>}