Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
found_bugs.md | 22-Oct-2020 | 294 | |
README.md | 22-Oct-2020 | 813 |
1 # Akaros support 2 3 [Akaros](http://akaros.cs.berkeley.edu/) support is *incomplete*. 4 5 See [Akaros getting started](https://github.com/brho/akaros/blob/master/GETTING_STARTED.md) 6 re kernel building/running. 7 8 Akaros does not support Go at the moment (except for a broken 9 [1.3 port](https://github.com/akaros/go-akaros)). Full Go support is planned 10 for Akaros. Until that happens running on Akaros is challening. However, 11 `syz-stress` can be run as follows: 12 13 ```shell 14 make TARGETOS=linux syz-stress 15 make TARGETOS=akaros SOURCEDIR=/akaros/checkout executor 16 scp -P 5555 -i akaros_id_rsa -o IdentitiesOnly=yes bin/akaros_amd64/syz-executor root@localhost:/ 17 bin/linux_amd64/syz-stress -os=akaros -ipc=pipe -procs=8 -executor "/usr/bin/ssh -p 5555 -i akaros_id_rsa -o IdentitiesOnly=yes root@localhost /syz-executor" 18 ``` 19