# # \brief Test for using the TCP/IP terminal over USB (RNDIS, CDC_ETHER or USB NIC) # \author Alexander Senier # \date 2017-10-19 # # # Build # set build_components { core init drivers/timer drivers/usb server/tcp_terminal test/terminal_echo } proc gpio_drv { } { if {[have_spec rpi] && [have_spec hw]} { return hw_gpio_drv } if {[have_spec rpi] && [have_spec foc]} { return foc_gpio_drv } return gpio_drv } source ${genode_dir}/repos/base/run/platform_drv.inc append_platform_drv_build_components lappend_if [have_spec gpio] build_components drivers/gpio build $build_components create_boot_directory # # Generate config # set config { } append_platform_drv_config append_if [have_spec gpio] config " " append config { } install_config $config # # Boot modules # # generic modules set boot_modules { core ld.lib.so init timer usb_drv libc.lib.so libc_pipe.lib.so lwip.lib.so pthread.lib.so tcp_terminal test-terminal_echo } append_platform_drv_boot_modules lappend_if [have_spec gpio] boot_modules [gpio_drv] build_boot_image $boot_modules append qemu_args " -device usb-ehci,id=ehci" # Samsung RNDIS (tested with S5, Galaxy Tab S append qemu_args " -device usb-host,bus=ehci.0,vendorid=0x04e8,productid=0x6860" append qemu_args " -device usb-host,bus=ehci.0,vendorid=0x04e8,productid=0x6863" append qemu_args " -device usb-host,bus=ehci.0,vendorid=0x04e8,productid=0x6864" # ASIX Electronics Corp. AX88179 Gigabit Ethernet append qemu_args " -device usb-host,bus=ehci.0,vendorid=0x0b95,productid=0x1790" # Motorola Moto E, G4 Play append qemu_args " -device usb-host,id=motoe,bus=ehci.0,vendorid=0x22b8,productid=0x2e25" # HTC A9 append qemu_args " -device usb-host,id=htc,bus=ehci.0,vendorid=0x0bb4,productid=0x0ffe" append qemu_args " -nographic" run_genode_until forever # vi: set ft=tcl :