From c6f10907c38ce49ddc321539f75aabf0a9ad6c71 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 15 Apr 2024 10:37:30 +0200 Subject: all: remove akaros support Akaros support is unused, it was shutdown on syzbot for a while, the akaros development seems to be frozen for years as well. We have a bunch of hacks for Akaros since it supported only super old gcc and haven't supported Go. Remove it. --- docs/syscall_descriptions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/syscall_descriptions.md') diff --git a/docs/syscall_descriptions.md b/docs/syscall_descriptions.md index 9b4101a8b..fa1f41fbb 100644 --- a/docs/syscall_descriptions.md +++ b/docs/syscall_descriptions.md @@ -233,7 +233,7 @@ The second step is translation of descriptions into Go code using [pkg/ast](/pkg/ast/) and [pkg/compiler](/pkg/compiler/)). This step uses syscall descriptions and the const files generated during the first step and produces instantiations of `Syscall` and `Type` types defined in [prog/types.go](/prog/types.go). -You can see an example of the compiler output for Akaros in `sys/akaros/gen/amd64.go`. +You can see an example of the compiler output for Linux/AMD64 in `sys/linux/gen/amd64.go`. This step also generates some minimal syscall metadata for C++ code in `executor/syscalls.h`. ## Non-mainline subsystems -- cgit mrf-deployment