R-Car/LAVA

From eLinux.org
< R-Car
Revision as of 10:33, 19 August 2021 by Stephenl (talk | contribs) (added section on setting adb/fastboot serial # in lava-docker)
Jump to: navigation, search

Introduction

This page contains information on using the LAVA CI project on R-Car platforms.

It is not intended as a complete 'end to end' tutorial on running LAVA. There are numerous sources for such tutorials including the official LAVA documentation. Instead, the aim is to explain nuances of using R-Car platforms in LAVA and to accelerate integration.

Glossary

DUT = Device Under Test, e.g. hardware platform to be tested

Serial console

LAVA interacts with the DUT via a serial console. A typical test job will involve restarting the DUT through a power cycle. This can be for multiple reasons. Power cycling means each job starts with the same setup for example. Another is restarting after flashing the DUT to use the flashed software.

The challenge is therefore for LAVA to maintain a serial console connection through such resets. Some R-Car platforms reset the serial on power on causing LAVA to lose the ser2net/telnet console link and therefore its ability to control the DUT. This can be mitigated by setting the LOCAL option for the DUT in the LAVA Worker ser2net configuration file.

Using lava-docker

If you are managing your LAVA instance using lava-docker (a project that simplifies LAVA instances using Docker) you can automate this by setting the option in your boards.yaml:

      ser2net_options:
        - LOCAL

ADB/Fastboot/Android/AOSP

Device definitions

<TBA 1. extending device dictionary>

<TBA 2. extending device-type template>

<2.1. LXC side effect>

Using lava-docker

If you are using lava-docker you tell LAVA the serial number for the DUT in the boards.yaml. This can be done in a custom_option block for the DUT.

For example:

    custom_option:
    - "set fastboot_serial_number = '00012345'"
    - "set adb_serial_number = '00012345'"

Flashing AOSP

<TBA how to flash using R-Car flash script>