├── .gitignore ├── LICENSE ├── README ├── bin └── goa ├── examples ├── cmake_library │ ├── api │ ├── artifacts │ ├── goarc │ ├── src │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── include │ │ │ └── forty_two.h │ │ └── lib.cc │ ├── symbols │ │ └── libforty_two │ ├── used_apis │ └── version ├── cmake_sdl2 │ ├── artifacts │ ├── pkg │ │ └── cmake_sdl2 │ │ │ ├── README │ │ │ ├── archives │ │ │ └── runtime │ ├── src │ │ ├── CMakeLists.txt │ │ └── Main.cpp │ ├── used_apis │ └── version ├── cmake_step2 │ ├── .gitignore │ ├── artifacts │ ├── import │ ├── pkg │ │ └── cmake_step2 │ │ │ ├── README │ │ │ ├── archives │ │ │ └── runtime │ ├── used_apis │ └── version ├── external_rom │ ├── pkg │ │ └── external_rom │ │ │ ├── README │ │ │ ├── archives │ │ │ └── runtime │ └── var │ │ └── rom │ │ └── input ├── hello_make │ ├── artifacts │ ├── pkg │ │ ├── hello_make │ │ │ ├── README │ │ │ └── runtime │ │ └── multiple_hello_make │ │ │ ├── README │ │ │ ├── archives │ │ │ └── runtime │ ├── src │ │ ├── Makefile │ │ └── hello.cc │ ├── used_apis │ └── version ├── hello_meson │ ├── artifacts │ ├── pkg │ │ └── hello_meson │ │ │ ├── README │ │ │ └── runtime │ ├── src │ │ ├── hello.cc │ │ ├── include │ │ │ └── forty_two.h │ │ ├── lib.cc │ │ └── meson.build │ ├── used_apis │ └── version ├── hello_nasm │ ├── README │ ├── artifacts │ ├── pkg │ │ └── hello_nasm │ │ │ ├── README │ │ │ └── runtime │ ├── src │ │ ├── Makefile │ │ └── hello.asm │ ├── used_apis │ └── version ├── hello_posix │ ├── LICENSE │ ├── artifacts │ ├── pkg │ │ └── hello_posix │ │ │ ├── README │ │ │ ├── archives │ │ │ └── runtime │ ├── src │ │ ├── Makefile │ │ └── hello.c │ ├── used_apis │ └── version ├── hello_rust │ ├── LICENSE │ ├── artifacts │ ├── pkg │ │ └── hello_rust │ │ │ ├── README │ │ │ ├── archives │ │ │ └── runtime │ ├── src │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── test │ │ └── artifact │ ├── used_apis │ └── version ├── hello_zig │ ├── artifacts │ ├── pkg │ │ └── hello_zig │ │ │ ├── README │ │ │ ├── archives │ │ │ └── runtime │ ├── src │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README │ │ ├── aux.c │ │ ├── base64.zig │ │ ├── build.zig │ │ └── hello.c │ ├── used_apis │ └── version ├── index │ ├── README │ ├── hello │ │ ├── pkg │ │ │ └── dependent_hello │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ └── runtime │ │ └── version │ ├── hello_posix │ └── index ├── profiling │ ├── artifacts │ ├── pkg │ │ └── profiling │ │ │ ├── README │ │ │ ├── archives │ │ │ └── runtime │ ├── src │ │ ├── Makefile │ │ └── profiling.cc │ └── used_apis ├── qt5_core │ ├── LICENSE │ ├── artifacts │ ├── pkg │ │ └── qt5_core │ │ │ ├── README │ │ │ ├── archives │ │ │ └── runtime │ ├── src │ │ ├── main.cpp │ │ └── qt_core.pro │ ├── test │ │ └── artifact │ ├── used_apis │ └── version ├── rust_debug │ ├── LICENSE │ ├── artifacts │ ├── pkg │ │ └── rust_debug │ │ │ ├── README │ │ │ ├── archives │ │ │ └── runtime │ ├── src │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── used_apis │ └── version └── vfs │ ├── 1-fs_query │ ├── README │ └── pkg │ │ └── 1-fs_query │ │ ├── archives │ │ └── runtime │ ├── 2-import │ ├── README │ ├── artifacts │ ├── pkg │ │ └── 2-import │ │ │ ├── archives │ │ │ └── runtime │ ├── raw │ │ └── file_content │ ├── src │ │ ├── 2-import.cc │ │ └── Makefile │ ├── used_apis │ └── version │ ├── 3-vfs_server │ ├── README │ └── pkg │ │ └── 3-vfs_server │ │ ├── archives │ │ └── runtime │ ├── 4-rump_ext2 │ ├── README │ ├── artifacts │ ├── pkg │ │ └── 4-rump_ext2 │ │ │ ├── archives │ │ │ └── runtime │ ├── raw │ │ └── disk_ext2.img │ ├── src │ │ ├── 4-rump_ext2.cc │ │ └── Makefile │ └── used_apis │ ├── 5-pipe │ ├── README │ └── pkg │ │ └── 5-pipe │ │ ├── archives │ │ └── runtime │ ├── 6-terminal │ ├── README │ └── pkg │ │ └── 6-terminal │ │ ├── archives │ │ └── runtime │ └── 7-lwip │ ├── README │ ├── artifacts │ ├── pkg │ └── 7-lwip │ │ ├── archives │ │ └── runtime │ ├── src │ ├── 7-lwip.cc │ └── Makefile │ └── used_apis └── share ├── bash-completion └── goa └── goa ├── abi ├── abi_symbols ├── check_abi └── internal_abi.list ├── backtrace ├── cargo └── x86_64-unknown-genode.json ├── cmake └── Modules │ └── Platform │ └── Genode.cmake ├── default_depot ├── genodelabs │ ├── download │ └── pubkey ├── jschlatow │ ├── download │ └── pubkey ├── nfeske │ ├── download │ └── pubkey └── ssumpf │ ├── download │ └── pubkey ├── depot ├── dependencies ├── download ├── mk │ ├── categorize_args.inc │ ├── common.inc │ ├── dependencies.inc │ ├── downloader │ ├── front_end.inc │ └── gpg.inc └── publish ├── doc ├── add-depot-user.txt ├── api.txt ├── artifacts.txt ├── build-systems.txt ├── config.txt ├── import.txt ├── index.txt ├── meson.txt ├── overview.txt ├── runtime.txt └── targets.txt ├── gaol ├── goarc ├── gosh ├── LICENSE ├── gosh ├── info.gosh └── man.gosh ├── hid ├── install_rust_toolchain.mk ├── ld ├── genode_dyn.dl ├── genode_dyn.ld └── genode_rel.ld ├── lib ├── actions │ ├── build.tcl │ ├── depot.tcl │ ├── generic.tcl │ ├── import.tcl │ ├── run.tcl │ └── versions.tcl ├── build │ ├── autoconf.tcl │ ├── cargo.tcl │ ├── cmake.tcl │ ├── make.tcl │ ├── meson.tcl │ ├── qmake.tcl │ └── vivado.tcl ├── command_line.tcl ├── config.tcl ├── flags.tcl ├── gen_abi_stubs.mk ├── gen_ldso_support.mk ├── gen_static_stubs.mk ├── hid.tcl ├── install_tool.mk ├── node.tcl ├── pkg-config.tcl ├── query.tcl ├── quirks.tcl ├── run │ ├── common.tcl │ ├── linux.tcl │ └── sculpt.tcl ├── sync_http.mk ├── tcllib │ ├── LICENSE │ ├── README │ ├── json.tcl │ └── json_tcl.tcl ├── test.expect └── util.tcl ├── ports └── mk │ ├── common.inc │ ├── hash.inc │ ├── install.mk │ └── print_hash.mk └── vivado ├── generate_bitstream.tcl └── generate_devices_config.tcl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/README -------------------------------------------------------------------------------- /bin/goa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/bin/goa -------------------------------------------------------------------------------- /examples/cmake_library/api: -------------------------------------------------------------------------------- 1 | include/ 2 | 3 | # vim: ft=tcl 4 | -------------------------------------------------------------------------------- /examples/cmake_library/artifacts: -------------------------------------------------------------------------------- 1 | libforty_two.lib.so 2 | -------------------------------------------------------------------------------- /examples/cmake_library/goarc: -------------------------------------------------------------------------------- 1 | 2 | set license src/LICENSE 3 | 4 | # vim: ft=tcl 5 | -------------------------------------------------------------------------------- /examples/cmake_library/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/cmake_library/src/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cmake_library/src/LICENSE: -------------------------------------------------------------------------------- 1 | The License 2 | -------------------------------------------------------------------------------- /examples/cmake_library/src/include/forty_two.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/cmake_library/src/include/forty_two.h -------------------------------------------------------------------------------- /examples/cmake_library/src/lib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/cmake_library/src/lib.cc -------------------------------------------------------------------------------- /examples/cmake_library/symbols/libforty_two: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/cmake_library/symbols/libforty_two -------------------------------------------------------------------------------- /examples/cmake_library/used_apis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/cmake_library/used_apis -------------------------------------------------------------------------------- /examples/cmake_library/version: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /examples/cmake_sdl2/artifacts: -------------------------------------------------------------------------------- 1 | sdl2_example 2 | -------------------------------------------------------------------------------- /examples/cmake_sdl2/pkg/cmake_sdl2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/cmake_sdl2/pkg/cmake_sdl2/README -------------------------------------------------------------------------------- /examples/cmake_sdl2/pkg/cmake_sdl2/archives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/cmake_sdl2/pkg/cmake_sdl2/archives -------------------------------------------------------------------------------- /examples/cmake_sdl2/pkg/cmake_sdl2/runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/cmake_sdl2/pkg/cmake_sdl2/runtime -------------------------------------------------------------------------------- /examples/cmake_sdl2/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/cmake_sdl2/src/CMakeLists.txt -------------------------------------------------------------------------------- /examples/cmake_sdl2/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/cmake_sdl2/src/Main.cpp -------------------------------------------------------------------------------- /examples/cmake_sdl2/used_apis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/cmake_sdl2/used_apis -------------------------------------------------------------------------------- /examples/cmake_sdl2/version: -------------------------------------------------------------------------------- 1 | 2024-01-11 2 | -------------------------------------------------------------------------------- /examples/cmake_step2/.gitignore: -------------------------------------------------------------------------------- 1 | src 2 | -------------------------------------------------------------------------------- /examples/cmake_step2/artifacts: -------------------------------------------------------------------------------- 1 | Tutorial 2 | -------------------------------------------------------------------------------- /examples/cmake_step2/import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/cmake_step2/import -------------------------------------------------------------------------------- /examples/cmake_step2/pkg/cmake_step2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/cmake_step2/pkg/cmake_step2/README -------------------------------------------------------------------------------- /examples/cmake_step2/pkg/cmake_step2/archives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/cmake_step2/pkg/cmake_step2/archives -------------------------------------------------------------------------------- /examples/cmake_step2/pkg/cmake_step2/runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/cmake_step2/pkg/cmake_step2/runtime -------------------------------------------------------------------------------- /examples/cmake_step2/used_apis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/cmake_step2/used_apis -------------------------------------------------------------------------------- /examples/cmake_step2/version: -------------------------------------------------------------------------------- 1 | 2019-11-21 2 | -------------------------------------------------------------------------------- /examples/external_rom/pkg/external_rom/README: -------------------------------------------------------------------------------- 1 | Goa example for accessing externally provided ROMs 2 | -------------------------------------------------------------------------------- /examples/external_rom/pkg/external_rom/archives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/external_rom/pkg/external_rom/archives -------------------------------------------------------------------------------- /examples/external_rom/pkg/external_rom/runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/external_rom/pkg/external_rom/runtime -------------------------------------------------------------------------------- /examples/external_rom/var/rom/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/external_rom/var/rom/input -------------------------------------------------------------------------------- /examples/hello_make/artifacts: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /examples/hello_make/pkg/hello_make/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_make/pkg/hello_make/README -------------------------------------------------------------------------------- /examples/hello_make/pkg/hello_make/runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_make/pkg/hello_make/runtime -------------------------------------------------------------------------------- /examples/hello_make/pkg/multiple_hello_make/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_make/pkg/multiple_hello_make/README -------------------------------------------------------------------------------- /examples/hello_make/pkg/multiple_hello_make/archives: -------------------------------------------------------------------------------- 1 | genodelabs/src/init 2 | -------------------------------------------------------------------------------- /examples/hello_make/pkg/multiple_hello_make/runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_make/pkg/multiple_hello_make/runtime -------------------------------------------------------------------------------- /examples/hello_make/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_make/src/Makefile -------------------------------------------------------------------------------- /examples/hello_make/src/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_make/src/hello.cc -------------------------------------------------------------------------------- /examples/hello_make/used_apis: -------------------------------------------------------------------------------- 1 | genodelabs/api/base 2 | -------------------------------------------------------------------------------- /examples/hello_make/version: -------------------------------------------------------------------------------- 1 | 2019-11-21 2 | -------------------------------------------------------------------------------- /examples/hello_meson/artifacts: -------------------------------------------------------------------------------- 1 | hello 2 | libforty_two.so 3 | -------------------------------------------------------------------------------- /examples/hello_meson/pkg/hello_meson/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_meson/pkg/hello_meson/README -------------------------------------------------------------------------------- /examples/hello_meson/pkg/hello_meson/runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_meson/pkg/hello_meson/runtime -------------------------------------------------------------------------------- /examples/hello_meson/src/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_meson/src/hello.cc -------------------------------------------------------------------------------- /examples/hello_meson/src/include/forty_two.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_meson/src/include/forty_two.h -------------------------------------------------------------------------------- /examples/hello_meson/src/lib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_meson/src/lib.cc -------------------------------------------------------------------------------- /examples/hello_meson/src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_meson/src/meson.build -------------------------------------------------------------------------------- /examples/hello_meson/used_apis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_meson/used_apis -------------------------------------------------------------------------------- /examples/hello_meson/version: -------------------------------------------------------------------------------- 1 | 2024-06-12 2 | -------------------------------------------------------------------------------- /examples/hello_nasm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_nasm/README -------------------------------------------------------------------------------- /examples/hello_nasm/artifacts: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /examples/hello_nasm/pkg/hello_nasm/README: -------------------------------------------------------------------------------- 1 | Demo Goa package for a NASM hello world on Genode. 2 | -------------------------------------------------------------------------------- /examples/hello_nasm/pkg/hello_nasm/runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_nasm/pkg/hello_nasm/runtime -------------------------------------------------------------------------------- /examples/hello_nasm/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_nasm/src/Makefile -------------------------------------------------------------------------------- /examples/hello_nasm/src/hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_nasm/src/hello.asm -------------------------------------------------------------------------------- /examples/hello_nasm/used_apis: -------------------------------------------------------------------------------- 1 | genodelabs/api/base 2 | -------------------------------------------------------------------------------- /examples/hello_nasm/version: -------------------------------------------------------------------------------- 1 | 2024-05-05 2 | -------------------------------------------------------------------------------- /examples/hello_posix/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/hello_posix/artifacts: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /examples/hello_posix/pkg/hello_posix/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_posix/pkg/hello_posix/README -------------------------------------------------------------------------------- /examples/hello_posix/pkg/hello_posix/archives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_posix/pkg/hello_posix/archives -------------------------------------------------------------------------------- /examples/hello_posix/pkg/hello_posix/runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_posix/pkg/hello_posix/runtime -------------------------------------------------------------------------------- /examples/hello_posix/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_posix/src/Makefile -------------------------------------------------------------------------------- /examples/hello_posix/src/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_posix/src/hello.c -------------------------------------------------------------------------------- /examples/hello_posix/used_apis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_posix/used_apis -------------------------------------------------------------------------------- /examples/hello_posix/version: -------------------------------------------------------------------------------- 1 | 2023-03-08 2 | -------------------------------------------------------------------------------- /examples/hello_rust/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_rust/LICENSE -------------------------------------------------------------------------------- /examples/hello_rust/artifacts: -------------------------------------------------------------------------------- 1 | hello-rust 2 | -------------------------------------------------------------------------------- /examples/hello_rust/pkg/hello_rust/README: -------------------------------------------------------------------------------- 1 | Demo Goa package for a Rust hello world on Genode. 2 | -------------------------------------------------------------------------------- /examples/hello_rust/pkg/hello_rust/archives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_rust/pkg/hello_rust/archives -------------------------------------------------------------------------------- /examples/hello_rust/pkg/hello_rust/runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_rust/pkg/hello_rust/runtime -------------------------------------------------------------------------------- /examples/hello_rust/src/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_rust/src/Cargo.toml -------------------------------------------------------------------------------- /examples/hello_rust/src/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_rust/src/src/main.rs -------------------------------------------------------------------------------- /examples/hello_rust/test/artifact: -------------------------------------------------------------------------------- 1 | \[init -> hello_rust\] inode: 1 2 | -------------------------------------------------------------------------------- /examples/hello_rust/used_apis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_rust/used_apis -------------------------------------------------------------------------------- /examples/hello_rust/version: -------------------------------------------------------------------------------- 1 | 2023-04-21 2 | -------------------------------------------------------------------------------- /examples/hello_zig/artifacts: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /examples/hello_zig/pkg/hello_zig/README: -------------------------------------------------------------------------------- 1 | Demo Goa package for a Zig hello world on Genode. 2 | -------------------------------------------------------------------------------- /examples/hello_zig/pkg/hello_zig/archives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_zig/pkg/hello_zig/archives -------------------------------------------------------------------------------- /examples/hello_zig/pkg/hello_zig/runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_zig/pkg/hello_zig/runtime -------------------------------------------------------------------------------- /examples/hello_zig/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_zig/src/LICENSE -------------------------------------------------------------------------------- /examples/hello_zig/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_zig/src/Makefile -------------------------------------------------------------------------------- /examples/hello_zig/src/README: -------------------------------------------------------------------------------- 1 | Example from https://ziglang.org/documentation/master/#Mixing-Object-Files 2 | -------------------------------------------------------------------------------- /examples/hello_zig/src/aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_zig/src/aux.c -------------------------------------------------------------------------------- /examples/hello_zig/src/base64.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_zig/src/base64.zig -------------------------------------------------------------------------------- /examples/hello_zig/src/build.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_zig/src/build.zig -------------------------------------------------------------------------------- /examples/hello_zig/src/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_zig/src/hello.c -------------------------------------------------------------------------------- /examples/hello_zig/used_apis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/hello_zig/used_apis -------------------------------------------------------------------------------- /examples/hello_zig/version: -------------------------------------------------------------------------------- 1 | 2025-06-10 2 | -------------------------------------------------------------------------------- /examples/index/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/index/README -------------------------------------------------------------------------------- /examples/index/hello/pkg/dependent_hello/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/index/hello/pkg/dependent_hello/README -------------------------------------------------------------------------------- /examples/index/hello/pkg/dependent_hello/archives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/index/hello/pkg/dependent_hello/archives -------------------------------------------------------------------------------- /examples/index/hello/pkg/dependent_hello/runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/index/hello/pkg/dependent_hello/runtime -------------------------------------------------------------------------------- /examples/index/hello/version: -------------------------------------------------------------------------------- 1 | 2023-06-15 2 | -------------------------------------------------------------------------------- /examples/index/hello_posix: -------------------------------------------------------------------------------- 1 | ../hello_posix/ -------------------------------------------------------------------------------- /examples/index/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/index/index -------------------------------------------------------------------------------- /examples/profiling/artifacts: -------------------------------------------------------------------------------- 1 | profiling 2 | -------------------------------------------------------------------------------- /examples/profiling/pkg/profiling/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/profiling/pkg/profiling/README -------------------------------------------------------------------------------- /examples/profiling/pkg/profiling/archives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/profiling/pkg/profiling/archives -------------------------------------------------------------------------------- /examples/profiling/pkg/profiling/runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/profiling/pkg/profiling/runtime -------------------------------------------------------------------------------- /examples/profiling/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/profiling/src/Makefile -------------------------------------------------------------------------------- /examples/profiling/src/profiling.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/profiling/src/profiling.cc -------------------------------------------------------------------------------- /examples/profiling/used_apis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/profiling/used_apis -------------------------------------------------------------------------------- /examples/qt5_core/LICENSE: -------------------------------------------------------------------------------- 1 | BSD 2 | -------------------------------------------------------------------------------- /examples/qt5_core/artifacts: -------------------------------------------------------------------------------- 1 | test-qt_core 2 | -------------------------------------------------------------------------------- /examples/qt5_core/pkg/qt5_core/README: -------------------------------------------------------------------------------- 1 | Qt5 example 2 | -------------------------------------------------------------------------------- /examples/qt5_core/pkg/qt5_core/archives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/qt5_core/pkg/qt5_core/archives -------------------------------------------------------------------------------- /examples/qt5_core/pkg/qt5_core/runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/qt5_core/pkg/qt5_core/runtime -------------------------------------------------------------------------------- /examples/qt5_core/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/qt5_core/src/main.cpp -------------------------------------------------------------------------------- /examples/qt5_core/src/qt_core.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/qt5_core/src/qt_core.pro -------------------------------------------------------------------------------- /examples/qt5_core/test/artifact: -------------------------------------------------------------------------------- 1 | \[init -> qt5_core\] Test done. 2 | -------------------------------------------------------------------------------- /examples/qt5_core/used_apis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/qt5_core/used_apis -------------------------------------------------------------------------------- /examples/qt5_core/version: -------------------------------------------------------------------------------- 1 | 2023-11-07 2 | -------------------------------------------------------------------------------- /examples/rust_debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/rust_debug/LICENSE -------------------------------------------------------------------------------- /examples/rust_debug/artifacts: -------------------------------------------------------------------------------- 1 | rust-debug 2 | -------------------------------------------------------------------------------- /examples/rust_debug/pkg/rust_debug/README: -------------------------------------------------------------------------------- 1 | Demo Goa package for debugging Rust programs on Genode. 2 | -------------------------------------------------------------------------------- /examples/rust_debug/pkg/rust_debug/archives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/rust_debug/pkg/rust_debug/archives -------------------------------------------------------------------------------- /examples/rust_debug/pkg/rust_debug/runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/rust_debug/pkg/rust_debug/runtime -------------------------------------------------------------------------------- /examples/rust_debug/src/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/rust_debug/src/Cargo.toml -------------------------------------------------------------------------------- /examples/rust_debug/src/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/rust_debug/src/src/main.rs -------------------------------------------------------------------------------- /examples/rust_debug/used_apis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/rust_debug/used_apis -------------------------------------------------------------------------------- /examples/rust_debug/version: -------------------------------------------------------------------------------- 1 | 2023-09-09 2 | -------------------------------------------------------------------------------- /examples/vfs/1-fs_query/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/1-fs_query/README -------------------------------------------------------------------------------- /examples/vfs/1-fs_query/pkg/1-fs_query/archives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/1-fs_query/pkg/1-fs_query/archives -------------------------------------------------------------------------------- /examples/vfs/1-fs_query/pkg/1-fs_query/runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/1-fs_query/pkg/1-fs_query/runtime -------------------------------------------------------------------------------- /examples/vfs/2-import/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/2-import/README -------------------------------------------------------------------------------- /examples/vfs/2-import/artifacts: -------------------------------------------------------------------------------- 1 | 2-import 2 | -------------------------------------------------------------------------------- /examples/vfs/2-import/pkg/2-import/archives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/2-import/pkg/2-import/archives -------------------------------------------------------------------------------- /examples/vfs/2-import/pkg/2-import/runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/2-import/pkg/2-import/runtime -------------------------------------------------------------------------------- /examples/vfs/2-import/raw/file_content: -------------------------------------------------------------------------------- 1 | Let's initialize the file. 2 | -------------------------------------------------------------------------------- /examples/vfs/2-import/src/2-import.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/2-import/src/2-import.cc -------------------------------------------------------------------------------- /examples/vfs/2-import/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/2-import/src/Makefile -------------------------------------------------------------------------------- /examples/vfs/2-import/used_apis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/2-import/used_apis -------------------------------------------------------------------------------- /examples/vfs/2-import/version: -------------------------------------------------------------------------------- 1 | 2024-08-26 2 | -------------------------------------------------------------------------------- /examples/vfs/3-vfs_server/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/3-vfs_server/README -------------------------------------------------------------------------------- /examples/vfs/3-vfs_server/pkg/3-vfs_server/archives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/3-vfs_server/pkg/3-vfs_server/archives -------------------------------------------------------------------------------- /examples/vfs/3-vfs_server/pkg/3-vfs_server/runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/3-vfs_server/pkg/3-vfs_server/runtime -------------------------------------------------------------------------------- /examples/vfs/4-rump_ext2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/4-rump_ext2/README -------------------------------------------------------------------------------- /examples/vfs/4-rump_ext2/artifacts: -------------------------------------------------------------------------------- 1 | 4-rump_ext2 2 | -------------------------------------------------------------------------------- /examples/vfs/4-rump_ext2/pkg/4-rump_ext2/archives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/4-rump_ext2/pkg/4-rump_ext2/archives -------------------------------------------------------------------------------- /examples/vfs/4-rump_ext2/pkg/4-rump_ext2/runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/4-rump_ext2/pkg/4-rump_ext2/runtime -------------------------------------------------------------------------------- /examples/vfs/4-rump_ext2/raw/disk_ext2.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/4-rump_ext2/raw/disk_ext2.img -------------------------------------------------------------------------------- /examples/vfs/4-rump_ext2/src/4-rump_ext2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/4-rump_ext2/src/4-rump_ext2.cc -------------------------------------------------------------------------------- /examples/vfs/4-rump_ext2/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/4-rump_ext2/src/Makefile -------------------------------------------------------------------------------- /examples/vfs/4-rump_ext2/used_apis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/4-rump_ext2/used_apis -------------------------------------------------------------------------------- /examples/vfs/5-pipe/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/5-pipe/README -------------------------------------------------------------------------------- /examples/vfs/5-pipe/pkg/5-pipe/archives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/5-pipe/pkg/5-pipe/archives -------------------------------------------------------------------------------- /examples/vfs/5-pipe/pkg/5-pipe/runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/5-pipe/pkg/5-pipe/runtime -------------------------------------------------------------------------------- /examples/vfs/6-terminal/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/6-terminal/README -------------------------------------------------------------------------------- /examples/vfs/6-terminal/pkg/6-terminal/archives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/6-terminal/pkg/6-terminal/archives -------------------------------------------------------------------------------- /examples/vfs/6-terminal/pkg/6-terminal/runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/6-terminal/pkg/6-terminal/runtime -------------------------------------------------------------------------------- /examples/vfs/7-lwip/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/7-lwip/README -------------------------------------------------------------------------------- /examples/vfs/7-lwip/artifacts: -------------------------------------------------------------------------------- 1 | 7-lwip 2 | -------------------------------------------------------------------------------- /examples/vfs/7-lwip/pkg/7-lwip/archives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/7-lwip/pkg/7-lwip/archives -------------------------------------------------------------------------------- /examples/vfs/7-lwip/pkg/7-lwip/runtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/7-lwip/pkg/7-lwip/runtime -------------------------------------------------------------------------------- /examples/vfs/7-lwip/src/7-lwip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/7-lwip/src/7-lwip.cc -------------------------------------------------------------------------------- /examples/vfs/7-lwip/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/7-lwip/src/Makefile -------------------------------------------------------------------------------- /examples/vfs/7-lwip/used_apis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/examples/vfs/7-lwip/used_apis -------------------------------------------------------------------------------- /share/bash-completion/goa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/bash-completion/goa -------------------------------------------------------------------------------- /share/goa/abi/abi_symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/abi/abi_symbols -------------------------------------------------------------------------------- /share/goa/abi/check_abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/abi/check_abi -------------------------------------------------------------------------------- /share/goa/abi/internal_abi.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/abi/internal_abi.list -------------------------------------------------------------------------------- /share/goa/backtrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/backtrace -------------------------------------------------------------------------------- /share/goa/cargo/x86_64-unknown-genode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/cargo/x86_64-unknown-genode.json -------------------------------------------------------------------------------- /share/goa/cmake/Modules/Platform/Genode.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/cmake/Modules/Platform/Genode.cmake -------------------------------------------------------------------------------- /share/goa/default_depot/genodelabs/download: -------------------------------------------------------------------------------- 1 | https://depot.genode.org 2 | -------------------------------------------------------------------------------- /share/goa/default_depot/genodelabs/pubkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/default_depot/genodelabs/pubkey -------------------------------------------------------------------------------- /share/goa/default_depot/jschlatow/download: -------------------------------------------------------------------------------- 1 | https://depot.genode.org 2 | -------------------------------------------------------------------------------- /share/goa/default_depot/jschlatow/pubkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/default_depot/jschlatow/pubkey -------------------------------------------------------------------------------- /share/goa/default_depot/nfeske/download: -------------------------------------------------------------------------------- 1 | https://depot.genode.org 2 | -------------------------------------------------------------------------------- /share/goa/default_depot/nfeske/pubkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/default_depot/nfeske/pubkey -------------------------------------------------------------------------------- /share/goa/default_depot/ssumpf/download: -------------------------------------------------------------------------------- 1 | http://depot.genode.org 2 | -------------------------------------------------------------------------------- /share/goa/default_depot/ssumpf/pubkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/default_depot/ssumpf/pubkey -------------------------------------------------------------------------------- /share/goa/depot/dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/depot/dependencies -------------------------------------------------------------------------------- /share/goa/depot/download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/depot/download -------------------------------------------------------------------------------- /share/goa/depot/mk/categorize_args.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/depot/mk/categorize_args.inc -------------------------------------------------------------------------------- /share/goa/depot/mk/common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/depot/mk/common.inc -------------------------------------------------------------------------------- /share/goa/depot/mk/dependencies.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/depot/mk/dependencies.inc -------------------------------------------------------------------------------- /share/goa/depot/mk/downloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/depot/mk/downloader -------------------------------------------------------------------------------- /share/goa/depot/mk/front_end.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/depot/mk/front_end.inc -------------------------------------------------------------------------------- /share/goa/depot/mk/gpg.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/depot/mk/gpg.inc -------------------------------------------------------------------------------- /share/goa/depot/publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/depot/publish -------------------------------------------------------------------------------- /share/goa/doc/add-depot-user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/doc/add-depot-user.txt -------------------------------------------------------------------------------- /share/goa/doc/api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/doc/api.txt -------------------------------------------------------------------------------- /share/goa/doc/artifacts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/doc/artifacts.txt -------------------------------------------------------------------------------- /share/goa/doc/build-systems.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/doc/build-systems.txt -------------------------------------------------------------------------------- /share/goa/doc/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/doc/config.txt -------------------------------------------------------------------------------- /share/goa/doc/import.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/doc/import.txt -------------------------------------------------------------------------------- /share/goa/doc/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/doc/index.txt -------------------------------------------------------------------------------- /share/goa/doc/meson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/doc/meson.txt -------------------------------------------------------------------------------- /share/goa/doc/overview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/doc/overview.txt -------------------------------------------------------------------------------- /share/goa/doc/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/doc/runtime.txt -------------------------------------------------------------------------------- /share/goa/doc/targets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/doc/targets.txt -------------------------------------------------------------------------------- /share/goa/gaol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/gaol -------------------------------------------------------------------------------- /share/goa/goarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/goarc -------------------------------------------------------------------------------- /share/goa/gosh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/gosh/LICENSE -------------------------------------------------------------------------------- /share/goa/gosh/gosh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/gosh/gosh -------------------------------------------------------------------------------- /share/goa/gosh/info.gosh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/gosh/info.gosh -------------------------------------------------------------------------------- /share/goa/gosh/man.gosh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/gosh/man.gosh -------------------------------------------------------------------------------- /share/goa/hid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/hid -------------------------------------------------------------------------------- /share/goa/install_rust_toolchain.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/install_rust_toolchain.mk -------------------------------------------------------------------------------- /share/goa/ld/genode_dyn.dl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/ld/genode_dyn.dl -------------------------------------------------------------------------------- /share/goa/ld/genode_dyn.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/ld/genode_dyn.ld -------------------------------------------------------------------------------- /share/goa/ld/genode_rel.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/ld/genode_rel.ld -------------------------------------------------------------------------------- /share/goa/lib/actions/build.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/actions/build.tcl -------------------------------------------------------------------------------- /share/goa/lib/actions/depot.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/actions/depot.tcl -------------------------------------------------------------------------------- /share/goa/lib/actions/generic.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/actions/generic.tcl -------------------------------------------------------------------------------- /share/goa/lib/actions/import.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/actions/import.tcl -------------------------------------------------------------------------------- /share/goa/lib/actions/run.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/actions/run.tcl -------------------------------------------------------------------------------- /share/goa/lib/actions/versions.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/actions/versions.tcl -------------------------------------------------------------------------------- /share/goa/lib/build/autoconf.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/build/autoconf.tcl -------------------------------------------------------------------------------- /share/goa/lib/build/cargo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/build/cargo.tcl -------------------------------------------------------------------------------- /share/goa/lib/build/cmake.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/build/cmake.tcl -------------------------------------------------------------------------------- /share/goa/lib/build/make.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/build/make.tcl -------------------------------------------------------------------------------- /share/goa/lib/build/meson.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/build/meson.tcl -------------------------------------------------------------------------------- /share/goa/lib/build/qmake.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/build/qmake.tcl -------------------------------------------------------------------------------- /share/goa/lib/build/vivado.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/build/vivado.tcl -------------------------------------------------------------------------------- /share/goa/lib/command_line.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/command_line.tcl -------------------------------------------------------------------------------- /share/goa/lib/config.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/config.tcl -------------------------------------------------------------------------------- /share/goa/lib/flags.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/flags.tcl -------------------------------------------------------------------------------- /share/goa/lib/gen_abi_stubs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/gen_abi_stubs.mk -------------------------------------------------------------------------------- /share/goa/lib/gen_ldso_support.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/gen_ldso_support.mk -------------------------------------------------------------------------------- /share/goa/lib/gen_static_stubs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/gen_static_stubs.mk -------------------------------------------------------------------------------- /share/goa/lib/hid.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/hid.tcl -------------------------------------------------------------------------------- /share/goa/lib/install_tool.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/install_tool.mk -------------------------------------------------------------------------------- /share/goa/lib/node.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/node.tcl -------------------------------------------------------------------------------- /share/goa/lib/pkg-config.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/pkg-config.tcl -------------------------------------------------------------------------------- /share/goa/lib/query.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/query.tcl -------------------------------------------------------------------------------- /share/goa/lib/quirks.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/quirks.tcl -------------------------------------------------------------------------------- /share/goa/lib/run/common.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/run/common.tcl -------------------------------------------------------------------------------- /share/goa/lib/run/linux.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/run/linux.tcl -------------------------------------------------------------------------------- /share/goa/lib/run/sculpt.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/run/sculpt.tcl -------------------------------------------------------------------------------- /share/goa/lib/sync_http.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/sync_http.mk -------------------------------------------------------------------------------- /share/goa/lib/tcllib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/tcllib/LICENSE -------------------------------------------------------------------------------- /share/goa/lib/tcllib/README: -------------------------------------------------------------------------------- 1 | This folder contains sources from the Standard TCL library (2.0). 2 | -------------------------------------------------------------------------------- /share/goa/lib/tcllib/json.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/tcllib/json.tcl -------------------------------------------------------------------------------- /share/goa/lib/tcllib/json_tcl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/tcllib/json_tcl.tcl -------------------------------------------------------------------------------- /share/goa/lib/test.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/test.expect -------------------------------------------------------------------------------- /share/goa/lib/util.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/lib/util.tcl -------------------------------------------------------------------------------- /share/goa/ports/mk/common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/ports/mk/common.inc -------------------------------------------------------------------------------- /share/goa/ports/mk/hash.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/ports/mk/hash.inc -------------------------------------------------------------------------------- /share/goa/ports/mk/install.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/ports/mk/install.mk -------------------------------------------------------------------------------- /share/goa/ports/mk/print_hash.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/ports/mk/print_hash.mk -------------------------------------------------------------------------------- /share/goa/vivado/generate_bitstream.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/vivado/generate_bitstream.tcl -------------------------------------------------------------------------------- /share/goa/vivado/generate_devices_config.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/genodelabs/goa/HEAD/share/goa/vivado/generate_devices_config.tcl --------------------------------------------------------------------------------