- The default interrupt key for the BareboxDriver is now CTRL+D (
\x04) instead of a line feed (\n). barebox v2025.03.0 onwards handles CTRL+D specially to halt autoboot countdown without running interactive hooks like bringing up network interfaces automatically. - Guermok HDMI to USB 3.0 capture dongle supported
- The deprecated pytest plugin option
--env-confighas been removed. Use--lg-envinstead. - The deprecated
NetworkUSBStorageDriverhas been removed. Use the USBStorageDriver instead.
As announced before, this is the first release using gRPC instead of crossbar/autobahn for communication between client/exporter and coordinator.
Crossbar/autobahn are unfortunately not very well maintained anymore. In labgrid, the crossbar component was moved to its own virtualenv to cope with the high number of conflicts caused by outdated dependencies. Also, Python 3.13 is not supported in an official crossbar release.
That's why labgrid moves to gRPC with this release. gRPC is a well maintained RPC framework with a lot of users. As a side effect, the message transfer is more performant and the import times are shorter.
This is a breaking change. Version 25.0 exporters / coordinators / clients can not communicate with Version 24.0 and earlier exporters / coordinators / clients. All exporters, coordinators and clients in a deployment have to be updated at the same time. See the "Breaking changes in 25.0" section below for more information.
- All components can be installed into the same virtualenv again.
- Add support for Python 3.13.
- The QEMUDriver now supports setting the
displayoption toqemu-default, which will neither set the QEMU-displayoption or pass along-nographic. - The amount of buffering in GStreamer video pipelines was reduced to improve
latency for
USBVideoDrivernetwork streaming. - The
RawNetworkInterfaceDrivernow supports live streaming of captured packets, setting/getting various configuration options and reporting statistics. - Add support for LogiLink UA0379 / Microdia cameras to the
USBVideoDriver. - Add more backends to the
NetworkPowerDriver:- Gude 87-1210-18
- Digital Loggers PDUs via the REST API
- Ubiquity mFi mPower power strips
- Add support for sigrok's channel-group parameter.
- Make USB hubs exportable for easier monitoring of large bus topologies.
- Add support for Digital Loggers PDUs via the REST API.
- Add support for custom paths for
ssh,scp,sshfsandrsyncin theSSHDriver. - Make the
QEMUDriverconfiguration more flexible and improve startup error reporting. - Support labgrid-client power via GPIOs.
- The Getting Started chapter in the docs was improved.
- The systemd service for the labgrid-exporter is now configured with
Restart=always. - Support listing only unused/released places with
labgrid-client places. - Replace deprecated SmartStrip class with IotStrip in the tplink power backend.
- Add a
erase()method to theAndroidFastbootDriver.
- Fix ShellDriver to correctly match network interfaces names with dots and/or
dashes in
get_default_interface_device_name(). - Fix reservations for multiple matching tags or values starting with a number.
- Fix concurrent access to USB HID relays.
- Fix support for networks without SSID in the agent used by the NetworkInterfaceDriver.
- Add new stlink USB IDs for the
USBDebuggerresource. - Fix code coverage reporting and submit test results to codecov.
- Fix waiting for
NetworkServicecreated by theDockerDaemon. - Fix error handling for missing interfaces in the
NetworkInterfaceDriver's agent. - Fix
pip installfor archives auto-generated by GitHub.
Maintaining support for both crossbar/autobahn as well as gRPC in labgrid would be a lot of effort due to their different architectures. Therefore, hard migration to gRPC is required.
Previously, the coordinator was running as a component started by the crossbar. Now, it is a standalone service which exposes a gRPC API directly.
Due to the gRPC migration, 25.0 includes the following breaking changes:
- The labgrid environment config option
crossbar_urlwas replaced bycoordinator_address. The environment variableLG_CROSSBARwas replaced byLG_COORDINATOR. - The labgrid environment config option
crossbar_realmis now obsolete as well as the environment variableLG_CROSSBAR_REALM. - The coordinator is available as
labgrid-coordinator(instead ofcrossbar start). No additional configuration file is required. - The systemd services in
contrib/systemd/were updated.
To update your deployment to 25.0, you'll need to:
- Update the coordinator, all clients and all exporters to the new release.
- Start
labgrid-coordinatordirectly (instead of via the crossbar configuration file). If needed, you can set the listening address using the--listenoption. - Update any existing client and exporter configuration by replacing the crossbar URL with the coordinator address.
Other breaking changes include:
- Support for Python 3.8 was dropped.
- The siglent power backend is deprecated because it uses the no longer maintained vxi11 module which again uses the deprecated (and in Python 3.13 removed) xdrlib. See issue #1507.
- gRPC sometimes prints a confusing error message during shutdown. We've worked around this by closing stderr on shutdown. See issue #1544 and PR #1605.
- Fix support for networks without SSID in the agent used by the NetworkInterfaceDriver.
- Fix concurrent access to USB HID relays.
- Fix some actions workflows.
- Limit pysnmp's pyasn1 dependency to <0.6.0 in pyproject.toml to work around pyasn1.compat.octets ModuleNotFoundError.
- Add "six" to crossbar-requirements.txt as a stop-gap solution for implicit six usage of txtorcon (a crossbar dependency). Fixes errors such as: ModuleNotFoundError: No module named 'six'
- When invoking tests with pytest, the
--log-(cli|file)-(level|format)command line arguments and their corresponding pytest.ini configure options are now respected (making it possible to have different format and logging levels in the log file than then console). - A new log level called
CONSOLEhas been added between the defaultINFOandDEBUGlevels. This level will show all reads and writes made to the serial console during testing. - The docker support was extended to support buildx, allowing the build of arm64 container images.
- The tool lookup function has been extended to return the original name in case the path can't be found. This makes specification of the qemu binary easier to use.
- The
bindingsbase class has been extended, allowing the user to retrieve all resources used by a driver. - Support for STLink V2 was added.
UBootStrategywas extended with aforce()function.- labgrid was switched from pysnmp to pysnmp-lexstudio.
- Support for Segger J-Link was added.
- Place tags are now exposed by the RemotePlace.
- The sync-places contrib script has gained support for named matches.
- Remote support for YKush Devices was added.
- Support for sigrok DMMs was added.
- Support for Digital Outputs switched via HTTP was added.
- The
QEMUDriverhas a new get_qemu_base_args() function which can be used to extract the arguments passed to qemu. - The
SSHDriverhas gained support to forward unix sockets. - The exporter has gained an
--fqdnargument to set the hostname to the fully qualified domain name instead of the hostname. - The
QEMUDrivernow has an additionaldisk_optsproperty which can be used to pass additional options for the disk directly to QEMU - All drivers now inherit a logger from the
Driverbase class and many drivers were changed to use this logger. - The new
poe_mibbackend allows switching of power over Ethernet-capable ports on switches that use the corresponding SNMP MIB. - The
RawNetworkInterfaceDriverallows the replay and recording of network packets on ethernet interfaces. - The i.MX93 usb loader USB ID has been added to the
IMXUSBLoaderresource. - Support for udev matched GPIOs has been added.
- labgrid-client now has a
write-filessubcommand to copy files onto mass storage devices. - The
NetworkPowerPortsupports a new backendubus. It controls PoE switches running OpenWrt using the ubus interface. - The pyproject.toml gained a config for ruff.
setuptools_scmis now used to generate a version file.- labgrid-client console will fallback to telnet if microcom is not available.
- A power backend for tinycontrol.eu IP Power Socket 6G10A v2 was added.
- Labgrid now publishes arm64 docker images.
- Labgrid's YAML parser will now warn when mapping keys are duplicated and thus overwritten.
- LC USB Relais are now supported.
- The pypi release now uses the labgrid pyserial fork in the form of the pyserial-labgrid package. This fixes installation with newer versions of pip.
- Several tests have gained an importorskip() call to skip them if the module is not available.
- labgrid now uses its own pyserial fork from pypi since installation from github as an egg is no longer properly supported.
- The build-and-release workflow supports building wheels.
- Fix named SSH lookups in conjunction with an environment file in labgrid-client.
- The crossbar virtual-environment now needs to be separate from the labgrid environment, for more information please consult the current documentation.
- The markers now are restricted to patterns which won't match WARN, ERROR, INFO and similar log notifiers.
- A race inside the
SSHDrivercleanup has been fixed. - The
labgrid-client monitorcommand now outputs the full resource identifier. - Many of the USB loader commands e.g. imx-usb-loader will now print to the console when logging is not enabled.
- An
UnboundLocalErrorinside the atomic_replace code which is used inside the coordinator was fixed. - Resources of different classes can now have the same name.
- A bug within the pytest logging setup was fixed.
- The
QemuDrivercorrectly handles the different command lines for virgl enablement. - A bug was fixed where resource names were ignored during lookup of the correct power driver.
- ManagedFile was fixed to work with the stat command on Darwin.
- Instead of using a private member on the pytest config, the labgrid plugin now uses the pytest config stash.
- The
ShellDriverwas fixed to set the correct status attribute. - The USBNetworkInterface now warns if the interface name is set, as it will be overwritten by the ResourceManager to assign the correct interface name.
- Fix sftp option issue in SSH driver that caused sftp to only work once per test run.
- ManagedFile NFS detection heuristic now does symlink resolution on the local host.
- XModem support within the Shelldriver was fixed by removing the newline from the marker.
- A typo in the
NFSProviderDriverclass was fixed. Documentation was already correct, however the classname contained an additional P. - The
--loopargument for labgrid-client console was fixed. - The password for the
ShellDrivercan now be an empty string. - The default crossbar configuration now enables auto-fragmentation to handle bigger labs where the payload size can be bigger than 1 megabyte.
- The
SSHDriverredirects/dev/nullto stdin of commands run via SSH. This prevents unexpected input, especially when using theManualPowerDriveror a REPL. - The
ser2netversion check for YAML configurations in the exporter was fixed. - The exporter forces
ser2netTCP connections for versions >=4.2.0. - The retrieval of the DTR status for
SerialPortDigitalOutputDriverwas fixed. - The
SSHDriverkeepalive is now correctly stopped when using existing connections. - The power backend for raritan devices now supports devices with more than 16 outlets.
- The
ExternalConsoleDrivernow correctly sets the bufsize to zero to prevent buffering.
Support for Python 3.7 was dropped.
Support for the legacy ticket authentication was dropped: If the coordinator logs ModuleNotFoundError on startup, switch the crossbar config to anonymous authentication (see
.crossbar/config-anonymous.yamlfor an example).The Debian package (
debian/) no longer contains crossbar. Use the coordinator container or install it into a separate local venv as described in the documentation. If you seeWARNING: Ticket authentication is deprecated. Please update your coordinator.on the client when running an updated coordinator, your coordinator configuration may setticketinstead ofanonymousauth.The StepReporter API has been changed. To start step reporting, you must now call
StepReporter.start()instead ofStepReporter(), and set up logging vialabgrid.logging.basicConfig().Logging output when running pytest is no longer sent to stderr by default, since this is both chatty and also unnecessary with the improved logging flexibility. It it recommended to use the
--log-cli-level=INFOcommand line option, orlog_cli_level = INFOoption in pytest.ini, but if you want to restore the old behavior add the following to yourconftest.pyfile (note that doing so may affect the ability to use some more advanced logging features):def pytest_configure(config): import logging import sys logging.basicConfig( level=logging.INFO, format='%(levelname)8s: %(message)s', stream=sys.stderr, )The interpretation of the
-vcommand line argument to pytest has changed slightly.-vvis now an alias for--log-cli-level=INFO(effectively unchanged),-vvvis an alias for--log-cli-level=CONSOLE, and-vvvvis an alias for--log-cli-level=DEBUG.The BareboxDriver now remembers the log level, sets it to
0on initial activation/reset and recovers it onboot(). Duringrun()/run_check()the initially detected log level is used.The NFSProviderDriver now returns mount and path information on
stage()instead of the path to be used on the target. The previous return value did not fit the NFS mount use case.The NFSProvider and RemoteNFSProvider resources no longer expect the
internalandexternalarguments as they do not fit the NFS mount use case.
- Some client commands return 0 even if the command failed.
- In USBVideoDriver, use the
playbin3element instead ofplaybinto fix decoding via VA-API for certain webcams on AMD graphic cards. - Let the SSHDriver redirect
/dev/nullto stdin onrun()to prevent unexpected consumption of stdin of the remotely started process. - Cover more failure scenarios in the exporter and coordinator systemd services, fix the service startup order, do not buffer journal logs.
- Fix readthedocs build by specifying Python version and OS.
- Fix several incompatibilities with doc sphinxcontrib-* dependencies having dropped their explicit Sphinx dependencies, which prevented generation of labgrid's docs.
- Fix dockerfiles syntax error that became fatal in a recent docker release.
- Fix ShellDriver's xmodem functionality.
- Pin pylint to prevent incompatibility with pinned pytest-pylint.
- Fix
labgrid-client console --loopon disappearing serial ports (such as on-board FTDIs).
- Update to PyYAML 6.0.1 to prevent install errors with Cython>=3.0, see: yaml/pyyaml#601 yaml/pyyaml#726 (comment)
- Move SSHDriver's control socket tmpdir clean up after the the SSH process has terminated. Ignore errors on cleanup since it's best effort.
- Add missing class name in
labgrid-client monitorresource output. - Print USB loader process output if log level does not cover logging it.
- Fix UnboundLocalError in
atomic_replace()used by the coordinator andlabgrid-client exportto write config files. - Let Config's
get_tool()return the requested tool if it is not found in the config. Return the resolved path if it exists, otherwise return the value as is. Also drop the now obsolete tool fallbacks from the drivers and add tests. - Fix USBSDMuxDevice/USBSDWireDevice udev race condition leading to outdated control/disk paths.
- Fix SSHDriver's
explicit_sftp_modeoption to allow calls toput()andget()multiple times. Also makescp()respect this option. - Add compatibility with QEMU >= 6.1.0 to QEMUDriver's
displayargument for theegl-headlessoption.
- The pypi release now uses the labgrid pyserial fork in the form of the pyserial-labgrid package. This fixes installation with newer versions of pip.
- Several tests have gained an importorskip() call to skip them if the module is not available.
- The build-and-release workflow supports building wheels.
- The markers now are restricted to patterns which won't match WARN, ERROR, INFO and similar log notifiers.
- Fix named SSH lookups in conjunction with an environment file in labgrid-client.
- Python 3.6 support has been dropped.
- Exporter config templates now have access to the following new variables: isolated (all resource accesses must be tunneled True/False), hostname (of the exporter host), name (of the exporter).
- ModbusRTU driver for instruments
- Support for Eaton ePDU and TP-Link power strips added, either can be used as a NetworkPowerPort.
- The example strategies now wait for complete system startup using systemctl.
- Consider a combination of multiple "lg_feature" markers instead of considering only the closest marker.
- There is a new
get_strategyhelper function which returns the strategy of the target. - labgrid-client now supports an
exportcommand which exposes the resource information as environment variables. - Newer C920 webcams are now supported.
- The pytestplugin now correctly combines feature markers instead of replacing them.
- The ConsoleLoggingReporter is now exported for library usage.
- The HD 2MP Webcam is now supported by the video-driver.
- TP-Link power strips are supported by the NetworkPowerDriver.
- A ModbusRTUResource and Driver has been added to control RS485 equipment.
- The strategies within labgrid learned the force() function.
- The labgrid client SSH command is now able to instantiate the SSHDriver when there are multiple NetworkService resources available.
- eg_pms2_network power port driver supports controlling the Energenie power management series with devices like the EG_PMS2_LAN & EG_PMS2_WLAN.
- The client and coordinator learned of a new "release-from" operation that only releases a place if it acquired by a specific user. This can be used to prevent race conditions when attempting to automate the cleanup of unused places (e.g. in CI jobs).
- ModbusTCPCoil driver supports writing using multiple coils write method in order to make driver usable with Papouch Quido I/O modules.
- If supported, ser2net started by the exporter now allows multiple connections.
- SmallUBootDriver driver now supports wide range of Ralink/mt7621 devices
which expects
boot_secretwithout new line with newboot_secret_nolfboolean config option. - More USBVideo devices have been added.
- labgrid now uses a custom yaml loader/dumper.
- labgrid-client add-match/add-named-match check for duplicate matches
- DFUDriver has been added to communicate with a DFUDevice, a device in DFU (Device Firmware Upgrade) mode.
labgrid-client dfuadded to allow communication with devices in DFU mode.- Support for QEMU Q35 machine added.
- UBootDriver now handles idle console, allowing driver activation on an interrupted U-Boot.
- Support for the STLINK-V3 has been added to the USBDebugger resource.
- labgrid-suggest can now suggest matches for a USBPowerPort used by power switchable USB hubs.
- AndroidFastboot is now deprecated and was replaced by AndroidUSBFastboot. This is more consistent with the AndroidNetFastboot support.
- In case multiple matches are found for a driver, labgrid-client now outputs the available names.
- ProcessWrapper now supports an "input" argument to check_output() that allows a string to be passed to stdin of the process.
- The
NetworkInterfaceDrivernow supports local and remote SSH port forwarding to/from the exporter. - labgrid was switched over to use pyproject.toml.
- A contrib script was added to export coordinator metrics to stasd.
- The SSH connection timeout can now be globally controlled using the
LG_SSH_CONNECT_TIMEOUTenvironment variable. - The QEMUDriver now supports a
displayoption which can specify if an display device should be created.none(the default) will not create a display device,fb-headlesswill create a headless framebuffer device for software rendering, andegl-headlesswill create a headless GPU device for accelerated rendering (but requires host support). - The AndroidFastbootDriver now supports interaction with network devices in fastboot state.
- Add bash completion for labgrid-client.
- The QEMUDriver now support a
nicproperty that can be used to create a network interface when booting. - The SSHDriver now correctly uses the processwrapper for rsync.
- The QEMUDriver now supports API to add port-forwarding from localhost.
- The get() method for sdwire has been added.
- If there are multiple named resources for a target, one of them can be named "default" to select it automatically if no explicit other name is given.
- labgrid-client has been extended with --name/-n for most commands. This allows attaching multiple power sources/usb-muxes and switching them individually from the command line.
- Add DediprogFlashDriver and DediprogFlasher resource.
- Add support for Digital Loggers PDU.
- Add support for Shelly power switches.
- Make labgrid-client use crossbar_url and crossbar_realm from ennvironment config.
- The exporter now exports sysfsgpios during place acquire/release, fixing a race in the sysfspgio agent interface.
- Fixed a bug where using
labgrid-client io getalways returnedlowwhen reading asysfsgpio. - Fix labgrid-client exit code on keyboard interrupt.
- Fixed
labgrid-client forward --remote/-R, which used either the LOCAL part of--local/-Laccidentally (if specified) or raised an UnboundLocalError. - Fix udev matching by attributes.
- Stop Exporter's event loop when register calls fail.
- Fix exit codes for various subcommands.
- Omit role and place output for
labgrid-client reserveto fix shell evaluation.
Config'sget_option()/get_target_option()convert non-string options no longer to strings.- UBootDriver's
boot_expressionattribute is deprecated, it will no longer check for the string during U-Boot boot. This allows activating the driver on an already running U-Boot. - The uuu command handling was fixed for the UUUDriver.
- UBootDriver boot() method was fixed.
- Fix proxying of dynamic port power backends with URL in host parameter and authentication credentials.
- The coordinator was switched over to anonymous static authentication. You'll have to use the legacy crossbar configuration to support older clients/exporters. The 23.1 release will remove support for the legacy ticket authentication.
- AndroidFastboot has been deprecated. Please replace it with the more specific AndroidUSBFastboot with the same semantics.
- Duplicate bindings for the same driver are now allowed (see the QEMUDriver)
- The NetworkPowerDriver now additionally supports: - Siglent SPD3000X series power supplies
- Labgrid client lock now enforces that all matches need to be fulfilled.
- Support for USB HID relays has been added.
- UBootDriver now allows overriding of currently fixed await boot timeout
via new
boot_timeoutargument. - With
--lg-colored-steps, two newdarkandlightcolor schemes which only use the standard 8 ANSI colors can be set inLG_COLOR_SCHEME. The existing color schemes have been renamed todark-256colorandlight-256color. Also, theColoredStepReporternow tries to autodetect whether the terminal supports 8 or 256 colors, and defaults to the respective dark variant. The 256-color schemes now use purple instead of green for therunlines to make them easier distinguishable from pytest's "PASSED" output. - Network controlled relay providing GET/PUT based REST API
- The QEMUDriver gains support for -bios and qcow2 images.
- Support for audio input has been added.
- Usage of sshpass for SSH password input has been replaced with the SSH_ASKPASS environment variable.
- Labgrid supports the Linux Automation GmBH USB Mux now.
- NetworkManager control support on the exporter has been added. This allows control of bluetooth and wifi connected to the exporter.
- TFTP-/NFS-/HTTPProvider has been added, allowing easy staging of files for the DUT to later retrieve.
- Improved LG_PROXY documentation in docs/usage.rst.
- Exporter now checks /usr/sbin/ser2net for SerialPortExport
- Support for Tasmota-flashed power outlets controlled via MQTT has been added.
- The OpenOCDDriver has been reworked with new options and better output.
- A script to synchronize places to an external description was added.
- ShellDriver has regained the support to retrieve the active interface and IP addresses.
- Labgrid has gained support for HTTP Video streams.
- A settle time for the ShellDriver has been added to wait for chatty systems to settle before interacting with the shell.
- Support for Macrosilicon HDMI to USB (MJPEG) adapters was added.
- Console logfiles can now be created by the labgrid client command.
- A ManualSwitchDriver has been added to prompt the user to flip a switch or set a jumper.
- AndroidFastbootDriver now supports booting/flashing images preconfigured in the environment configuration.
pytest --lg-log foobarnow creates the folderfoobarbefore trying to write the log into it, and error handling was improved so that all possible errors that can occur when opening the log file are reported to stderr.- gstreamer log messages are now suppressed when using labgrid-client video.
- Travis CI has been dropped for Github Actions.
EthernetInterfacehas been renamed toNetworkInterface.
- Some client commands return 0 even if the command failed.
- Currently empty passwords are not well supported by the ShellDriver
- All CommandProtocol drivers support the poll_until_success method.
- The new FileDigitalOutputDriver represents a digital signal with a file.
- The new GpioDigitalOutputDriver controls the state of a GPIO via the sysfs interface.
- Crossbar and autobahn have been updated to 19.3.3 and 19.3.5 respectively.
- The InfoDriver was removed. The functions have been integrated into the labgridhelper library, please use the library for the old functionality.
- labgrid-client
write-imagesubcommand: labgrid client now has awrite-imagecommand to write images onto block devices. labgrid-client sshnow also uses port from NetworkService resource if available- The
PLACEandSTATEvariables used by labgrid-client are replaced byLG_PLACEandLG_STATE, the old variables are still supported for the time being. - The SSHDriver's keyfile attribute is now specified relative to the config file just like the images are.
- The ShellDriver's keyfile attribute is now specified relative to the config file just like the images are.
labgrid-client -P <PROXY>and theLG_PROXYenvironment variable can be used to access the coordinator and network resources via that SSH proxy host. Drivers which run commands via SSH to the exporter still connect directly, allowing custom configuration in the user's.ssh/configas needed. Note that not all drivers have been updated to use the ProxyManager yet.- Deditec RELAIS8 devices are now supported by the DeditecRelaisDriver.
- The RKUSBDriver was added to support the rockchip serial download mode.
- The USBStorageDriver gained support for BMAP.
- Flashrom support added, by hard-wiring e.g. an exporter to the DUT, the ROM on the DUT can be written directly. The flashrom driver implements the bootstrap protocol.
- AndroidFastbootDriver now supports 'getvar' and 'oem getenv' subcommands.
- The coordinator now updates the resource acquired state at the exporter. Accordingly, the exporter now starts ser2net only when a resources is acquired. Furthermore, resource conflicts between places are now detected.
- Labgrid now uses the ProcessWrapper for externally called processes. This should include output from these calls better inside the test runs.
- The binding dictionary can now supports type name strings in addition to the types themselves, avoiding the need to import a specific protocol or driver in some cases.
- The remote infrastructure gained support for place reservations, for further information check the section in the documentation.
- The SigrokDriver gained support for the Manson HCS-2302, it allows enabling and disabling channels, measurement and setting the current and voltage limit.
labgrid-client write-imagegained new arguments:--partition,--skip,--seek.- Support for Sentry PDUs has been added.
- Strategies now implement a
forcemethod, toforcea strategy state irrespective of the current state. - SSH Connections can now be proxied over the exporter, used by adding a device suffix to the NetworkService address.
- UBootDriver now allows overriding of default boot command (
run bootcmd) via newboot_commandargument. - The config file supports per-target options, in addition to global options.
- Add power driver to support GEMBIRD SiS-PM implementing SiSPMPowerDriver.
- A cleanup of the cleanup functions was performed, labgrid should now clean up after itself and throws an error if the user needs to handle it himself.
labgrid-clientnow respects theLG_HOSTNAMEandLG_USERNAMEenvironment variables to set the hostname and username when accessing resources.- PyVISA support added, allowing to use PyVISA controlled test equipment from Labgrid.
labgrid-client write-imagegained a new argument--modeto specify which tool should be used to write the image (eitherddorbmaptool)- Exporter configuration file
exporter.yamlnow allows use of environment variables.
- ManagedFile now saves the files in a different directory on the exporter.
Previously
/tmpwas used, labgrid now uses/var/cache/labgrid. A tmpfiles example configuration for systemd is provided in the/contribdirectory. It is also highly recommended to enablefs.protected_regular=1andfs.protected_fifos=1for kernels>=4.19. This requires user intervention after the upgrade to create the directory and setup the cleanup job. @attr.s(cmp=False)is deprecated and all classes have been moved to@attr.s(eq=False), this release requires attrs version 19.2.0- Coordinator work dir is now set to the same dir as the crossbar configuration
dir. Hence coordinator specific files like
places.yamlandresources.yamlare now also stored in the crossbar configuration folder. Previously it would use... - The
HawkbitTestClientandUSBStickclasses have been removed - The original USBStorageDriver was removed,
NetworkUSBStorageDriverwas renamed to USBStorageDriver. A deprecatedNetworkUSBStorageDriverexists temporarily for compatibility reasons.
- There are several reports of
sshpassused within the SSHDriver not working in call cases or only on the first connection. - Some client commands return 0 even if the command failed.
- Currently empty passwords are not well supported by the ShellDriver
- A colored StepReporter was added and can be used with
pytest --lg-colored-steps. labgrid-clientcan now use the last changed information to sort listed resources and places.labgrid-client sshnow uses ip/user/password from NetworkService resource if available- The pytest plugin option
--lg-logenables logging of the serial traffic into a file (see below). - The environement files can contain feature flags which can be used to control which tests are run in pytest.
LG_*variables from the OS environment can be used in the config file with the!templatedirective.- The new "managed file" support takes a local file and synchronizes it to a resource on a remote host. If the resource is not a NetworkResource, the local file is used instead.
- ProxyManager: a class to automatically create ssh forwardings to proxy connections over the exporter
- SSHManager: a global manager to multiplex connections to different exporters
- The target now saves it's attached drivers, resources and protocols in a lookup table, avoiding the need of importing many Drivers and Protocols (see Syntactic sugar for Targets)
- When multiple Drivers implement the same Protocol, the best one can be selected using a priority (see below).
- The new subcommand
labgrid-client monitorshows resource or places changes as they happen, which is useful during development or debugging. - The environment yaml file can now list Python files (under the 'imports' key). They are imported before constructing the Targets, which simplifies using custom Resources, Drivers or Strategies.
- The pytest plugin now stores metadata about the environment yaml file in the junit XML output.
- The
labgrid-clienttool now understands a--stateoption to transition to the provided state using a :any:`Strategy`. This requires an environment yaml file with a :any:`RemotePlace` Resources and matching Drivers. - Resource matches for places configured in the coordinator can now have a name, allowing multiple resources with the same class.
- The new Target.__getitem__ method makes writing using protocols less verbose.
- Experimental: The labgrid-autoinstall tool was added (see below).
- The new DigitalOutputResetDriver adapts a driver implementing the DigitalOutputProtocol to the ResetProtocol.
- The new ModbusCoilDriver support outputs on a ModbusTCP device.
- The new
NetworkUSBStorageDriverallows writing to remote USB storage devices (such as SD cards or memory sticks connected to a mux). - The new QEMUDriver runs a system image in QEmu and implements the :any:`ConsoleProtocol` and :any:`PowerProtocol`. This allows using labgrid without any real hardware.
- The new QuartusHPSDriver controls the "Quartus Prime Programmer and Tools" to flash a target's QSPI.
- The new SerialPortDigitalOutputDriver controls the state of a GPIO using the control lines of a serial port.
- The new SigrokDriver uses a (local or remote) device supported by sigrok to record samples.
- The new SmallUBootDriver supports the extremely limited U-Boot found in cheap WiFi routers.
- The new USBSDMuxDriver controls a Pengutronix USB-SD-Mux device.
- The new USBTMCDriver can fetch measurements and screenshots from the "Keysight DSOX2000 series" and the "Tektronix TDS 2000 series".
- The new USBVideoDriver can stream video from a remote H.264 UVC (USB Video Class) camera using gstreamer over SSH. Currently, configuration for the "Logitech HD Pro Webcam C920" exists.
- The new XenaDriver allows interacting with Xena network testing equipment.
- The new YKUSHPowerDriver and USBPowerDriver support software-controlled USB hubs.
- The bootloader drivers now have a
resetmethod. - The BareboxDriver's boot string is now configurable, which allows it to work
with the
quietLinux boot parameter. - The IMXUSBLoader now recognizes more USB IDs.
- The OpenOCDDriver is now more flexible with loading configuration files.
- The NetworkPowerDriver now additionally supports:
- 24 port "Gude Expert Power Control 8080"
- 8 port "Gude Expert Power Control 8316"
- NETIO 4 models (via telnet)
- a simple REST interface
- The SerialDriver now supports using plain TCP instead of RFC 2217, which is needed from some console servers.
- The ShellDriver has been improved:
- It supports configuring the various timeouts used during the login process.
- It can use xmodem to transfer file from and to the target.
- When using the coordinator, it must be upgrade together with the clients because of the newly introduce match names.
- Resources and Drivers now need to be created with an explicit name
parameter.
It can be
Noneto keep the old behaviour. See below for details. - Classes derived from :any:`Resource` or :any:`Driver` now need to use
@attr.s(cmp=False)instead of@attr.sbecause of a change in the attrs module version 17.1.0.
Targets are now able to retrieve requested drivers, resources or protocols by name instead of by class. This allows removing many imports, e.g.
from labgrid.driver import ShellDriver shell = target.get_driver(ShellDriver)
becomes
shell = target.get_driver("ShellDriver")
Also take a look at the examples, they have been ported to the new syntax as well.
For some Protocols, it is useful to allow multiple instances.
- DigitalOutputProtocol:
- A board may have two jumpers to control the boot mode in addition to a reset GPIO. Previously, it was not possible to use these on a single target.
- ConsoleProtocol:
- Some boards have multiple console interfaces or expose a login prompt via a USB serial gadget.
- PowerProtocol:
- In some cases, multiple power ports need to be controlled for one Target.
To support these use cases, Resources and Drivers must be created with a
name parameter.
When updating your code to this version, you can either simply set the name to
None to keep the previous behaviour.
Alternatively, pass a string as the name.
Old:
>>> t = Target("MyTarget")
>>> SerialPort(t)
SerialPort(target=Target(name='MyTarget', env=None), state=<BindingState.bound: 1>, avail=True, port=None, speed=115200)
>>> SerialDriver(t)
SerialDriver(target=Target(name='MyTarget', env=None), state=<BindingState.bound: 1>, txdelay=0.0)New (with name=None):
>>> t = Target("MyTarget")
>>> SerialPort(t, None)
SerialPort(target=Target(name='MyTarget', env=None), name=None, state=<BindingState.bound: 1>, avail=True, port=None, speed=115200)
>>> SerialDriver(t, None)
SerialDriver(target=Target(name='MyTarget', env=None), name=None, state=<BindingState.bound: 1>, txdelay=0.0)New (with real names):
>>> t = Target("MyTarget")
>>> SerialPort(t, "MyPort")
SerialPort(target=Target(name='MyTarget', env=None), name='MyPort', state=<BindingState.bound: 1>, avail=True, port=None, speed=115200)
>>> SerialDriver(t, "MyDriver")
SerialDriver(target=Target(name='MyTarget', env=None), name='MyDriver', state=<BindingState.bound: 1>, txdelay=0.0)Each driver supports a priorities class variable. This allows drivers which implement the same protocol to add a priority option to each of their protocols. This way a NetworkPowerDriver can implement the ResetProtocol, but if another ResetProtocol driver with a higher protocol is available, it will be selected instead. See the documentation for details.
The ConsoleLoggingReporter can be used with the pytest plugin or the library. It records the Data send from a DUT to the computer running labgrid. The logfile contains a header with the name of the device from the environment configuration and a timestamp.
When using the library, the reporter can be started with:
from labgrid.consoleloggingreporter import ConsoleLoggingReporter
ConsoleLoggingReporter.start(".")
where "." is the output directory.
The pytest plugin accepts the --lg-log commandline option, either with or
without an output path.
To simplify using labgrid for provisioning several boards in parallel, the
labgrid-autoinstall tool was added.
It reads a YAML file defining several targets and a Python script to be run for
each board.
Interally, it spawns a child process for each target, which waits until a matching
resource becomes available and then executes the script.
For example, this makes it simple to load a bootloader via the :any:`BootstrapProtocol`, use the :any:`AndroidFastbootDriver` to upload a kernel with initramfs and then write the target's eMMC over a USB Mass Storage gadget.
Note
labgrid-autoinstall is still experimental and no documentation has been written.
Contributions from: Ahmad Fatoum, Bastian Krause, Björn Lässig, Chris Fiege, Enrico Joerns, Esben Haabendal, Felix Lampe, Florian Scherf, Georg Hofmann, Jan Lübbe, Jan Remmet, Johannes Nau, Kasper Revsbech, Kjeld Flarup, Laurentiu Palcu, Oleksij Rempel, Roland Hieber, Rouven Czerwinski, Stanley Phoong Cheong Kwan, Steffen Trumtrar, Tobi Gschwendtner, Vincent Prince
This is the initial release of labgrid.