Hi LAVA users,
I have set-up a LAVA server, dispatcher and connected my device (banana-pi) board serially via UART to host machine on which dispatcher is running.
I have defined a job which uses deploy "tmpfs" to download .itb file from local file server. After that, under "boot" action, i am using u-boot method to boot the device.
Output:
1. deploy images section runs successfully
2. uboot action starts
3. After connecting to device using telnet, device is reset(pdu-reboot).
4. Device enters in Y modem state waiting for image to get transferred.
5. After some time, "CCC CCCCCCC[ 99.943] spl: ymodem err - Timed out"
Issue/Question:
6. At this stage, i want LAVA dispatcher(HOST machine) to send .itb file over UART using Ymodem to device.
7. But LAVA is unable to execute this command "sz -Y --ymodem /uboot-opensbi.itb < /dev/ttyUSB0 > /dev/ttyUSB0" to transfer opensbi.itb file to device.
8. I need to know what am i missing in writing job definition for this case.
9. Which device template should i use and how it should be extended.
10. is there any job definition syntax to fulfill my requirement?
Regards,
Hello Team,
I am trying to use Azure AD for user authentication in LAVA. I followed the document https://validation.linaro.org/static/docs/v2/authentication.html#using-open… and created a yaml file with all details under /etc/lava-server/settings.d and restarted lava-server-gunicorn.service.
Additionally , added ssl_header configuration to trust X-Forwarded-Proto header for detecting HTTPS.
cat secure_proxy_ssl_header.yaml
SECURE_PROXY_SSL_HEADER:
- HTTP_X_FORWARDED_PROTO
- https
During sign in I am able get Microsoft login page but after successfully login I get "Bad Request (400)" .
Could you please suggest if Lava can work with mozilla-django-oidc or if i am missing any configuration.