summaryrefslogtreecommitdiffstats
path: root/README.md
AgeCommit message (Collapse)AuthorFilesLines
2018-11-30lavalab-gen.py: Made ser2net the defaultCorentin LABBE1-3/+4
This patch makes ser2net the default uart handler.
2018-11-26lavalab-gen.py: Permits to bind host /dev to slaveCorentin LABBE1-0/+1
When using a PDU with crelay, we need to access the whole content /dev/hid/ and so need to bind the whole /dev/ This is also necessary when using the HSDK board which have a serial which appears only when board is powered.
2018-11-20README: discourage use of screenCorentin LABBE1-0/+1
2018-11-20lavalab-gen.py: support adding ser2net optionsCorentin LABBE1-0/+3
2018-11-19Merge pull request #67 from montjoie/interfacenumprkhilman1-0/+1
lavalab-gen.py: Remove udev template for support of interfacenum
2018-11-16lavalab-gen.py: Remove udev template for support of interfacenumCorentin LABBE1-0/+1
The current udev templating is bad since adding a new optional keyword lead to numerous ifelse and templates. This patch simply generate a udev line part by part. This made adding interfacenum easier. This will also permit to mix devpath/serial/etc.. without any problem
2018-11-15README: add contact informationsCorentin LABBE1-0/+4
2018-11-02lavalab-gen.py: permit to set env settings on slave via the master nodeCorentin LABBE1-0/+5
Since some setup use distinct boards.yaml for master and slave, a way to set env settings for a slave via the master node is needed.
2018-11-02lavalab-gen.py: permit to set env settings on slaveCorentin LABBE1-1/+9
This patch permits to add some env settings on slave. The primary goal of this is to permits to add a proxy for a specific slave.
2018-11-02lavalab-gen.py: Add slave_keys for copying public slave keysCorentin LABBE1-0/+1
When creating a split boards.yaml with only one master which uses ZMQ, no way to adds slave key exists. This patch fix that by adding a way to copy all slave keys.
2018-11-02README: Add documentation for the slave attribute of boardsCorentin LABBE1-0/+1
This patch adds missing documentation on how to choose the slave owing a device.
2018-10-19README: add documentation on how to add patch for LAVA and device-typeCorentin LABBE1-0/+11
lava-docker can patch LAVA and add/modify device-types, but the documentation was lacking on how to do it.
2018-10-17Permit to set a group on boardsCorentin LABBE1-1/+2
This patch permit to add a group on boards
2018-10-17Permit to create groupsCorentin LABBE1-0/+5
This patch adds support for creating groups
2018-10-15Permit to give board to userCorentin LABBE1-0/+1
By default LAVA give owning of boards to admin, this patch permit to give board to a specific user.
2018-10-15Rename export_ser2net to expose_ser2netCorentin LABBE1-1/+1
This patch rename export_ser2net to expose_ser2net. The old export_ser2net is still handled but we now print a deprecating message.
2018-10-15lavalab-gen.py: Permit to customize exposed ports to a slaveCorentin LABBE1-0/+2
This patch adds a way to choose a number of ports to be exposed from host to slave.
2018-09-28Merge pull request #49 from montjoie/documentation_deps_csrfkhilman1-1/+10
README: enhance documentation on dependencies and CSRF issues
2018-09-27README: document non-x86 buildCorentin LABBE1-0/+8
This patch add documentation on how to use lava-docker on arm64.
2018-09-18README: enhance documentation on dependencies and CSRF issuesCorentin LABBE1-1/+2
This patch add the missing pyyaml requirement in the documentation, fixing issue #31 in the process. Note that this patch adds also a requirements.txt for easy pip install. This patch also a note on http_fqdn stating this option as necessary when using https.
2018-09-13Permit to add tags to devicesCorentin LABBE1-0/+3
This patch permits to add tags to device Signed-off-by: Corentin Labbe <clabbe@baylibre.com>
2018-09-13lavalab-gen.py: permit to have no master in boards.yamlCorentin LABBE1-0/+2
This patch permits to have a boards.yaml without the master node. In the same time, it permit to have also only a master node without slave. Signed-off-by: Corentin Labbe <clabbe@baylibre.com>
2018-09-11Merge pull request #44 from montjoie/ser2net_multiconnectionskhilman1-0/+1
Ser2net multiconnections
2018-09-07lavalab-gen.py: add default max-connections for ser2netCorentin LABBE1-0/+1
This patch add a ser2net max-connections for all boards
2018-09-05Merge pull request #39 from montjoie/readme_upgradekhilman1-3/+3
Be more clear on how to upgrade
2018-09-03lavalab-gen.py: default_slave is a valid keywordCorentin LABBE1-0/+1
default_slave was not in valid keyword and thus generate a warning. This patch set it as valid and document it in the mean time.
2018-08-14Be more clear on how to upgradeCorentin LABBE1-3/+3
2018-07-26Permit to configure email for LAVA usersCorentin LABBE1-0/+1
2018-07-26README: Add an upgrade guideCorentin LABBE1-0/+8
2018-07-26Permit to choose the FQDN printed in emailCorentin LABBE1-0/+1
2018-07-24lavalab-gen.py: token is optional for usersCorentin LABBE1-1/+1
2018-07-23Handle ZMQ authCorentin LABBE1-0/+5
This patch add support for using ZMQ auth. Basicly adding "zmq_auth: True" to a master is sufficient to enable it. Since "ZMQ certificates" are using a custom format (vs X509 classic), we need to use the custom generator. For helping with that a temporary docker is generated which handle generating thoses files.
2018-07-20Permit to backup/restore lavaserver databaseCorentin LABBE1-0/+11
This patch add an easy way to backup postgresql database and needed data stored in filesystem. In the mean time, a way to restore backup during start is added
2018-07-19Made the database persistentCorentin LABBE1-0/+1
Until now, each docker-compose down will loose all data (jobs, devices, etc...). By creating a docker volume, the database will now be persistent other restart. Due to a risk of the lava package reseting the password, it is always reseted at start. This patch add also another volume for job output which are stored in the filesystem and not in database.
2018-07-12Permit to have backported LAVA patchCorentin LABBE1-0/+3
If backporting LAVA patch is necessary, this patch add an easy way to do it.
2018-07-12Support screen for uartCorentin LABBE1-0/+1
This patch add support for using screen instead of conmux-console. screen can be used by adding "use_screen: True" to uart. screen is necessary for some board with internal uart which have a micro cut when switching power (like DRA7-EVM and M3ULCB)
2018-07-04Implement ser2netCorentin LABBE1-0/+1
This patch add support for ser2net. ser2net can be used by adding "use_ser2net: True" to uart.
2018-06-05Permit to access LAVA webadmin via httpsCorentin LABBE1-0/+1
This patch permits to access LAVA webadmin via HTTPS. Resolve SPEC-1493
2018-06-05Implement MultipleslaveCorentin LABBE1-61/+65
This patch implement multiple slave support. Instead of having a maximum of one master and one slave in one docker image, it is now possible to have multiple slave accross several docker host. For helping this change, a new boards.yaml format is introduced (See README.md for details) Note that tokens.yaml is also squashed in boards.yaml
2018-04-13Rename macaddr to uboot_macaddrCorentin LABBE1-1/+1
For clarify the use of macaddr, rename it to uboot_macaddr.
2018-04-13Add uboot_ipaddrCorentin LABBE1-0/+1
Some boards have broken uboot dhcp, so we need to set a static ip in uboot. This patch add a way to specify such IP via uboot_ipaddr.
2018-02-16README: Fix vendor/product ID formatCorentin LABBE1-6/+6
The format for vendor/product ID need to be prefixed by 0x.
2018-02-14Force the use of hexadecimal values for product/vendor IDsCorentin LABBE1-2/+2
Using "idproduct: 6001" let python convert 6001 to 24577 and so corrupt the UDEV line.
2018-02-14Document host_has_cpuflag_kvmCorentin LABBE1-0/+1
Now host_has_cpuflag_kvm is used, we need to document it.
2018-02-02Documentation: document lava-dockerCorentin LABBE1-54/+266
Ths patch documenent lava-docker and add a boards.yaml.example
2018-02-02Change misleading lab-slave-name exampleCorentin LABBE1-1/+1
2018-02-02Permit to customize dispatcher_ipCorentin LABBE1-0/+1
dispatcher_ip is the IP used by boards for contacting/downloading images/dtb/etc... For the moment it was harcoded to 192.168.66.1. This patch permit to easily change it.
2018-02-02Place board under boardlistCorentin LABBE1-9/+10
We need to add some information to lab node, so we need to move all boards under a list("boardlist")
2018-01-09Permit to create staff/superuser usersCorentin LABBE1-0/+2
This patch add two user options staff and superuser. This will permit to create users with thoses flag in LAVA. In the process remove the hardcoded admin user from Dockerfile and move it in tokens.yaml
2018-01-08Disable CSRF cookieCorentin LABBE1-1/+1
When working with HTTP interface, it is impossible to login. Ths patch also document that in Readme.md