├── .gitignore ├── LICENSE ├── README ├── VERSION ├── doc ├── build_system.txt ├── challenges.txt ├── coding_style.txt ├── components.txt ├── contributions.txt ├── conventions.txt ├── depot.txt ├── getting_started.txt ├── gsoc_2012.txt ├── news.txt ├── porting_guide.txt ├── release_notes │ ├── 08-11.txt │ ├── 09-02.txt │ ├── 09-05.txt │ ├── 09-08.txt │ ├── 09-11.txt │ ├── 10-02.txt │ ├── 10-05.txt │ ├── 10-08.txt │ ├── 10-11.txt │ ├── 11-02.txt │ ├── 11-05.txt │ ├── 11-08.txt │ ├── 11-11.txt │ ├── 12-02.txt │ ├── 12-05.txt │ ├── 12-08.txt │ ├── 12-11.txt │ ├── 13-02.txt │ ├── 13-05.txt │ ├── 13-08.txt │ ├── 13-11.txt │ ├── 14-02.txt │ ├── 14-05.txt │ ├── 14-08.txt │ ├── 14-11.txt │ ├── 15-02.txt │ ├── 15-05.txt │ ├── 15-08.txt │ ├── 15-11.txt │ ├── 16-02.txt │ ├── 16-05.txt │ ├── 16-08.txt │ ├── 16-11.txt │ ├── 17-02.txt │ ├── 17-05.txt │ ├── 17-08.txt │ ├── 17-11.txt │ ├── 18-02.txt │ ├── 18-05.txt │ ├── 18-08.txt │ ├── 18-11.txt │ ├── 19-02.txt │ ├── 19-05.txt │ ├── 19-08.txt │ ├── 19-11.txt │ ├── 20-02.txt │ ├── 20-05.txt │ ├── 20-08.txt │ ├── 20-11.txt │ ├── 21-02.txt │ ├── 21-05.txt │ ├── 21-08.txt │ ├── 21-11.txt │ └── 22-02.txt ├── road_map.txt └── tool_chain.txt ├── repos ├── README ├── base-fiasco │ ├── README │ ├── config │ │ ├── kernel-config.x86 │ │ └── l4env-config.x86 │ ├── etc │ │ └── specs.conf │ ├── lib │ │ ├── import │ │ │ └── import-syscall-fiasco.mk │ │ └── mk │ │ │ ├── base-fiasco-common.mk │ │ │ ├── base-fiasco.mk │ │ │ ├── core-fiasco.inc │ │ │ ├── kernel-fiasco.inc │ │ │ ├── l4_pkg.inc │ │ │ ├── spec │ │ │ └── x86_32 │ │ │ │ ├── core-fiasco.mk │ │ │ │ ├── kernel-fiasco.mk │ │ │ │ ├── ld-fiasco.mk │ │ │ │ ├── startup-fiasco.mk │ │ │ │ └── syscall-fiasco.mk │ │ │ └── syscall-fiasco.inc │ ├── patches │ │ ├── bda.patch │ │ ├── bootstrap.patch │ │ ├── c++11.patch │ │ ├── fiasco_const.patch │ │ └── gcc6.patch │ ├── ports │ │ ├── fiasco.hash │ │ └── fiasco.port │ ├── recipes │ │ └── src │ │ │ └── base-fiasco │ │ │ ├── README │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ └── src │ │ ├── core │ │ ├── core_log_out.cc │ │ ├── fiasco │ │ │ └── target.mk │ │ ├── include │ │ │ ├── ipc_pager.h │ │ │ ├── map_local.h │ │ │ ├── platform.h │ │ │ ├── platform_pd.h │ │ │ ├── platform_thread.h │ │ │ ├── rpc_cap_factory.h │ │ │ └── util.h │ │ ├── io_mem_session_support.cc │ │ ├── irq_session_component.cc │ │ ├── pager.cc │ │ ├── pager_object.cc │ │ ├── platform.cc │ │ ├── platform_pd.cc │ │ ├── platform_thread.cc │ │ ├── ram_dataspace_support.cc │ │ ├── spec │ │ │ └── x86 │ │ │ │ └── platform_x86.cc │ │ └── thread_start.cc │ │ ├── include │ │ ├── base │ │ │ └── internal │ │ │ │ ├── fiasco_thread_helper.h │ │ │ │ ├── lock_helper.h │ │ │ │ ├── native_thread.h │ │ │ │ ├── native_utcb.h │ │ │ │ ├── parent_cap.h │ │ │ │ ├── raw_write_string.h │ │ │ │ └── rpc_destination.h │ │ └── fiasco │ │ │ └── syscall.h │ │ ├── kernel │ │ └── fiasco │ │ │ └── target.mk │ │ ├── lib │ │ ├── base │ │ │ ├── capability_raw.cc │ │ │ ├── ipc.cc │ │ │ ├── lock.cc │ │ │ ├── sleep.cc │ │ │ └── thread_bootstrap.cc │ │ └── ld │ │ │ └── fiasco │ │ │ └── target.mk │ │ └── timer │ │ └── fiasco │ │ └── target.mk ├── base-foc │ ├── README │ ├── config │ │ ├── imx6q_sabrelite.kernel │ │ ├── imx6q_sabrelite.user │ │ ├── imx7d_sabre.kernel │ │ ├── imx7d_sabre.user │ │ ├── pbxa9.kernel │ │ ├── pbxa9.user │ │ ├── rpi.kernel │ │ ├── rpi.user │ │ ├── rpi3.kernel │ │ ├── rpi3.user │ │ ├── x86_32.kernel │ │ ├── x86_32.user │ │ ├── x86_64.kernel │ │ └── x86_64.user │ ├── etc │ │ ├── board.conf │ │ └── specs.conf │ ├── include │ │ ├── foc │ │ │ ├── capability_space.h │ │ │ ├── native_capability.h │ │ │ ├── native_thread.h │ │ │ ├── receive_window.h │ │ │ ├── syscall.h │ │ │ └── thread_state.h │ │ └── foc_native_cpu │ │ │ ├── client.h │ │ │ └── foc_native_cpu.h │ ├── lib │ │ ├── import │ │ │ └── import-syscall-foc.mk │ │ └── mk │ │ │ ├── base-foc-common.inc │ │ │ ├── base-foc-common.mk │ │ │ ├── base-foc.inc │ │ │ ├── core-foc.inc │ │ │ ├── kernel-foc.inc │ │ │ ├── kernel-foc.mk │ │ │ ├── l4_pkg.inc │ │ │ ├── spec │ │ │ ├── arm │ │ │ │ ├── base-foc.mk │ │ │ │ ├── core-foc.mk │ │ │ │ ├── kernel-foc-imx6q_sabrelite.mk │ │ │ │ ├── kernel-foc-imx7d_sabre.mk │ │ │ │ ├── kernel-foc-pbxa9.mk │ │ │ │ ├── kernel-foc-rpi.mk │ │ │ │ ├── ld-foc.mk │ │ │ │ ├── startup-foc.mk │ │ │ │ ├── syscall-foc-imx6q_sabrelite.mk │ │ │ │ ├── syscall-foc-imx7d_sabre.mk │ │ │ │ ├── syscall-foc-pbxa9.mk │ │ │ │ ├── syscall-foc-rpi.mk │ │ │ │ └── syscall-foc.inc │ │ │ ├── arm_64 │ │ │ │ ├── base-foc.mk │ │ │ │ ├── core-foc.mk │ │ │ │ ├── kernel-foc-rpi3.mk │ │ │ │ ├── ld-foc.mk │ │ │ │ ├── startup-foc.mk │ │ │ │ └── syscall-foc-rpi3.mk │ │ │ ├── x86 │ │ │ │ ├── base-foc-common.mk │ │ │ │ ├── base-foc.mk │ │ │ │ ├── core-foc.inc │ │ │ │ └── syscall-foc.inc │ │ │ ├── x86_32 │ │ │ │ ├── core-foc.mk │ │ │ │ ├── kernel-foc-pc.mk │ │ │ │ ├── ld-foc.mk │ │ │ │ ├── startup-foc.mk │ │ │ │ └── syscall-foc-pc.mk │ │ │ └── x86_64 │ │ │ │ ├── core-foc.mk │ │ │ │ ├── kernel-foc-pc.mk │ │ │ │ ├── ld-foc.mk │ │ │ │ ├── startup-foc.mk │ │ │ │ └── syscall-foc-pc.mk │ │ │ ├── syscall-foc.inc │ │ │ └── syscall-foc.mk │ ├── patches │ │ ├── 0001-L4RE-Remove-moe-from-switch_ram_base-target.patch │ │ ├── 0002-FOC-change-l4_task_cap_equal-semantic.patch │ │ ├── 0003-Sigma0-raise-sigma0-s-priority-to-maximum.patch │ │ ├── 0005-FOC-Increase-name-buffer-of-JDB-to-32K.patch │ │ ├── 0007-L4RE-fix-x86-syscall-bindings-to-use-in-C-namespace.patch │ │ ├── 0009-Bootstrap-read-out-comport-on-x86-from-BDA-area.patch │ │ ├── 0010-L4RE-get-rid-of-__builtin_strlen-usage.patch │ │ ├── 0011-Ex_regs-Change-user_flags.patch │ │ ├── 0012-Flush-the-TLB-after-idle-operation.patch │ │ ├── 0014-Always-enable-user-mode-access-for-performance-monit.patch │ │ ├── 0015-VMX-disable-event-injection-if-requested-by-VMM.patch │ │ ├── 0016-svm-provide-cr0-to-guest-if-np-enabled.patch │ │ ├── 0017-svm-avoid-forceful-exit-on-task-switch.patch │ │ ├── 0018-L4-enable-gcc_10.patch │ │ ├── 0019-Bootstrap-do-not-depend-on-any-libstdcxx-feature.patch │ │ ├── 0020-Bootstrap-fix-amd64-build-with-binutils-2_32.patch │ │ ├── 0021-FOC-enable-gcc_10.patch │ │ ├── 0022-FOC-amd64-split-_syscall_entry-into-code-and-data.patch │ │ └── 0023-FOC-arm-link-bootstrap-as-et_rel.patch │ ├── ports │ │ ├── foc.hash │ │ └── foc.port │ ├── recipes │ │ └── src │ │ │ ├── base-foc-imx6q_sabrelite │ │ │ ├── README │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── base-foc-imx7d_sabre │ │ │ ├── README │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── base-foc-pbxa9 │ │ │ ├── README │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── base-foc-pc │ │ │ ├── README │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── base-foc-rpi3 │ │ │ ├── README │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ └── base-foc_content.inc │ ├── run │ │ └── cap_integrity.run │ └── src │ │ ├── core │ │ ├── core_log_out.cc │ │ ├── foc │ │ │ └── target.mk │ │ ├── include │ │ │ ├── cap_id_alloc.h │ │ │ ├── cap_index.h │ │ │ ├── cap_mapping.h │ │ │ ├── ipc_pager.h │ │ │ ├── irq_object.h │ │ │ ├── map_local.h │ │ │ ├── native_cpu_component.h │ │ │ ├── pager_object_exception_state.h │ │ │ ├── platform.h │ │ │ ├── platform_pd.h │ │ │ ├── platform_thread.h │ │ │ ├── rpc_cap_factory.h │ │ │ ├── util.h │ │ │ └── vm_session_component.h │ │ ├── io_mem_session_support.cc │ │ ├── ipc_pager.cc │ │ ├── irq_session_component.cc │ │ ├── native_cpu_component.cc │ │ ├── pager.cc │ │ ├── pager_object.cc │ │ ├── platform.cc │ │ ├── platform_pd.cc │ │ ├── platform_thread.cc │ │ ├── ram_dataspace_support.cc │ │ ├── rpc_cap_factory.cc │ │ ├── signal_source_component.cc │ │ ├── spec │ │ │ ├── arm │ │ │ │ ├── ipc_pager.cc │ │ │ │ └── platform_arm.cc │ │ │ ├── arm_64 │ │ │ │ └── ipc_pager.cc │ │ │ ├── x86 │ │ │ │ ├── ipc_pager.cc │ │ │ │ ├── platform.cc │ │ │ │ └── platform_services.cc │ │ │ ├── x86_32 │ │ │ │ └── ipc_pager.cc │ │ │ └── x86_64 │ │ │ │ └── ipc_pager.cc │ │ ├── stack_area_addr.cc │ │ ├── thread_start.cc │ │ └── vm_session_component.cc │ │ ├── include │ │ ├── base │ │ │ └── internal │ │ │ │ ├── cap_alloc.h │ │ │ │ ├── cap_map.h │ │ │ │ ├── capability_data.h │ │ │ │ ├── child_policy.h │ │ │ │ ├── foc_assert.h │ │ │ │ ├── lock_helper.h │ │ │ │ ├── native_thread.h │ │ │ │ ├── native_utcb.h │ │ │ │ ├── parent_cap.h │ │ │ │ └── raw_write_string.h │ │ ├── foc_native_vcpu │ │ │ └── foc_native_vcpu.h │ │ └── signal_source │ │ │ ├── client.h │ │ │ ├── foc_signal_source.h │ │ │ └── rpc_object.h │ │ ├── kernel │ │ └── foc │ │ │ └── target.mk │ │ ├── lib │ │ ├── base │ │ │ ├── cache.cc │ │ │ ├── cap_alloc.cc │ │ │ ├── cap_map.cc │ │ │ ├── cap_map_remove.cc │ │ │ ├── capability.cc │ │ │ ├── ipc.cc │ │ │ ├── signal_source_client.cc │ │ │ ├── spin_lock.cc │ │ │ ├── thread_bootstrap.cc │ │ │ ├── thread_myself.cc │ │ │ ├── thread_start.cc │ │ │ └── x86 │ │ │ │ └── vm.cc │ │ └── ld │ │ │ └── foc │ │ │ └── target.mk │ │ ├── test │ │ └── cap_integrity │ │ │ ├── main.cc │ │ │ └── target.mk │ │ └── timer │ │ └── foc │ │ └── target.mk ├── base-hw │ ├── board │ │ ├── imx53_qsb │ │ │ ├── arch │ │ │ └── image_link_address │ │ ├── imx53_qsb_tz │ │ │ ├── arch │ │ │ └── image_link_address │ │ ├── imx6q_sabrelite │ │ │ ├── arch │ │ │ └── image_link_address │ │ ├── imx7d_sabre │ │ │ ├── arch │ │ │ └── image_link_address │ │ ├── nit6_solox │ │ │ ├── arch │ │ │ └── image_link_address │ │ ├── pbxa9 │ │ │ ├── arch │ │ │ └── image_link_address │ │ ├── pc │ │ │ ├── arch │ │ │ └── image_link_address │ │ ├── usb_armory │ │ │ ├── arch │ │ │ └── image_link_address │ │ ├── virt_qemu │ │ │ ├── arch │ │ │ └── image_link_address │ │ └── wand_quad │ │ │ ├── arch │ │ │ └── image_link_address │ ├── etc │ │ └── specs.conf │ ├── include │ │ ├── drivers │ │ │ └── defs │ │ │ │ └── imx53_trustzone.h │ │ ├── hw_native_pd │ │ │ ├── client.h │ │ │ └── hw_native_pd.h │ │ ├── kernel │ │ │ ├── interface.h │ │ │ └── types.h │ │ └── spec │ │ │ ├── arm │ │ │ └── cpu │ │ │ │ ├── vm_state_trustzone.h │ │ │ │ └── vm_state_virtualization.h │ │ │ └── arm_64 │ │ │ └── cpu │ │ │ └── vm_state_virtualization.h │ ├── lib │ │ └── mk │ │ │ ├── base-hw-common.mk │ │ │ ├── base-hw.mk │ │ │ ├── bootstrap-hw.inc │ │ │ ├── core-hw.inc │ │ │ ├── spec │ │ │ ├── arm │ │ │ │ ├── core-hw.inc │ │ │ │ ├── ld-hw.mk │ │ │ │ ├── startup-hw.mk │ │ │ │ └── syscall-hw.mk │ │ │ ├── arm_64 │ │ │ │ ├── startup-hw.mk │ │ │ │ └── syscall-hw.mk │ │ │ ├── arm_v7 │ │ │ │ ├── bootstrap-hw-imx53_qsb.inc │ │ │ │ ├── bootstrap-hw-imx53_qsb.mk │ │ │ │ ├── bootstrap-hw-imx53_qsb_tz.mk │ │ │ │ ├── bootstrap-hw-imx6q_sabrelite.mk │ │ │ │ ├── bootstrap-hw-imx7d_sabre.mk │ │ │ │ ├── bootstrap-hw-nit6_solox.mk │ │ │ │ ├── bootstrap-hw-pbxa9.mk │ │ │ │ ├── bootstrap-hw-usb_armory.mk │ │ │ │ ├── bootstrap-hw-virt_qemu.mk │ │ │ │ ├── bootstrap-hw-wand_quad.mk │ │ │ │ ├── core-hw-imx53_qsb.inc │ │ │ │ ├── core-hw-imx53_qsb.mk │ │ │ │ ├── core-hw-imx53_qsb_tz.mk │ │ │ │ ├── core-hw-imx6q_sabrelite.mk │ │ │ │ ├── core-hw-imx7d_sabre.mk │ │ │ │ ├── core-hw-nit6_solox.mk │ │ │ │ ├── core-hw-pbxa9.mk │ │ │ │ ├── core-hw-usb_armory.mk │ │ │ │ ├── core-hw-virt_qemu.mk │ │ │ │ ├── core-hw-wand_quad.mk │ │ │ │ └── core-hw.inc │ │ │ ├── arm_v8 │ │ │ │ ├── bootstrap-hw-virt_qemu.mk │ │ │ │ ├── core-hw-virt_qemu.mk │ │ │ │ ├── core-hw.inc │ │ │ │ └── ld-hw.mk │ │ │ ├── cortex_a15 │ │ │ │ └── core-hw.inc │ │ │ ├── cortex_a8 │ │ │ │ └── core-hw.inc │ │ │ ├── cortex_a9 │ │ │ │ └── core-hw.inc │ │ │ ├── riscv │ │ │ │ ├── ld-hw.mk │ │ │ │ ├── startup-hw.mk │ │ │ │ └── syscall-hw.mk │ │ │ └── x86_64 │ │ │ │ ├── bootstrap-hw-pc.mk │ │ │ │ ├── core-hw-pc.mk │ │ │ │ ├── ld-hw.mk │ │ │ │ ├── startup-hw.mk │ │ │ │ └── syscall-hw.mk │ │ │ └── timeout-hw.mk │ ├── recipes │ │ ├── api │ │ │ └── base-hw │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ └── src │ │ │ ├── base-hw-imx53_qsb │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── base-hw-imx53_qsb_tz │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── base-hw-imx6q_sabrelite │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── base-hw-imx7d_sabre │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── base-hw-nit6_solox │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── base-hw-pbxa9 │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── base-hw-pc │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── base-hw-virt_qemu │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ └── base-hw_content.inc │ ├── run │ │ ├── cpu_scheduler.run │ │ └── double_list.run │ └── src │ │ ├── bootstrap │ │ ├── board │ │ │ ├── imx53_qsb │ │ │ │ ├── board.h │ │ │ │ ├── platform.cc │ │ │ │ └── platform_trustzone.cc │ │ │ ├── imx6q_sabrelite │ │ │ │ └── board.h │ │ │ ├── imx7d_sabre │ │ │ │ ├── board.h │ │ │ │ └── platform.cc │ │ │ ├── nit6_solox │ │ │ │ └── board.h │ │ │ ├── pbxa9 │ │ │ │ ├── board.h │ │ │ │ └── platform.cc │ │ │ ├── usb_armory │ │ │ │ ├── board.h │ │ │ │ └── platform.cc │ │ │ ├── virt_qemu │ │ │ │ ├── board.h │ │ │ │ └── platform.cc │ │ │ ├── virt_qemu_64 │ │ │ │ ├── board.h │ │ │ │ └── platform.cc │ │ │ └── wand_quad │ │ │ │ └── board.h │ │ ├── env.cc │ │ ├── hw │ │ │ └── target.mk │ │ ├── init.cc │ │ ├── lock.cc │ │ ├── log.cc │ │ ├── platform.cc │ │ ├── platform.h │ │ ├── spec │ │ │ ├── arm │ │ │ │ ├── arm_v6_cpu.cc │ │ │ │ ├── arm_v7_cpu.cc │ │ │ │ ├── cortex_a15_cpu.cc │ │ │ │ ├── cortex_a7_a15_virtualization.h │ │ │ │ ├── cortex_a8_mmu.cc │ │ │ │ ├── cortex_a8_page_table.h │ │ │ │ ├── cortex_a9_actlr.h │ │ │ │ ├── cortex_a9_mmu.cc │ │ │ │ ├── cortex_a9_page_table.h │ │ │ │ ├── cpu.cc │ │ │ │ ├── cpu.h │ │ │ │ ├── crt0.s │ │ │ │ ├── gicv2.cc │ │ │ │ ├── gicv3.cc │ │ │ │ ├── imx6_platform.cc │ │ │ │ ├── imx_aipstz.h │ │ │ │ ├── imx_csu.h │ │ │ │ └── imx_tzic.cc │ │ │ ├── arm_64 │ │ │ │ ├── cortex_a53_mmu.cc │ │ │ │ └── crt0.s │ │ │ ├── riscv │ │ │ │ ├── crt0.s │ │ │ │ └── platform.cc │ │ │ └── x86_64 │ │ │ │ ├── board.h │ │ │ │ ├── crt0.s │ │ │ │ ├── crt0_translation_table.s │ │ │ │ ├── multiboot.h │ │ │ │ ├── multiboot2.h │ │ │ │ └── platform.cc │ │ └── thread.cc │ │ ├── core │ │ ├── board │ │ │ ├── imx53_qsb │ │ │ │ └── board.h │ │ │ ├── imx6q_sabrelite │ │ │ │ └── board.h │ │ │ ├── imx7d_sabre │ │ │ │ └── board.h │ │ │ ├── nit6_solox │ │ │ │ └── board.h │ │ │ ├── pbxa9 │ │ │ │ └── board.h │ │ │ ├── pc │ │ │ │ └── board.h │ │ │ ├── usb_armory │ │ │ │ └── board.h │ │ │ ├── virt_qemu │ │ │ │ └── board.h │ │ │ ├── virt_qemu_64 │ │ │ │ └── board.h │ │ │ └── wand_quad │ │ │ │ └── board.h │ │ ├── capability.cc │ │ ├── core_log_out.cc │ │ ├── core_region_map.cc │ │ ├── cpu_session_support.cc │ │ ├── cpu_thread_allocator.h │ │ ├── env.cc │ │ ├── hw │ │ │ └── target.mk │ │ ├── io_mem_session_support.cc │ │ ├── irq_session_component.cc │ │ ├── irq_session_component.h │ │ ├── kernel │ │ │ ├── configuration.h │ │ │ ├── core_interface.h │ │ │ ├── cpu.cc │ │ │ ├── cpu.h │ │ │ ├── cpu_context.h │ │ │ ├── cpu_mp.cc │ │ │ ├── cpu_scheduler.cc │ │ │ ├── cpu_scheduler.h │ │ │ ├── cpu_up.cc │ │ │ ├── double_list.h │ │ │ ├── inter_processor_work.h │ │ │ ├── ipc_node.cc │ │ │ ├── ipc_node.h │ │ │ ├── irq.cc │ │ │ ├── irq.h │ │ │ ├── lock.cc │ │ │ ├── lock.h │ │ │ ├── log.h │ │ │ ├── main.cc │ │ │ ├── main.h │ │ │ ├── object.cc │ │ │ ├── object.h │ │ │ ├── pd.h │ │ │ ├── signal_receiver.cc │ │ │ ├── signal_receiver.h │ │ │ ├── thread.cc │ │ │ ├── thread.h │ │ │ ├── timer.cc │ │ │ ├── timer.h │ │ │ ├── vm.h │ │ │ ├── vm_thread_off.cc │ │ │ └── vm_thread_on.cc │ │ ├── kernel_log.cc │ │ ├── map_local.h │ │ ├── native_pd_component.cc │ │ ├── native_pd_component.h │ │ ├── native_utcb.cc │ │ ├── object.h │ │ ├── pager.cc │ │ ├── pager.h │ │ ├── platform.cc │ │ ├── platform.h │ │ ├── platform_pd.cc │ │ ├── platform_pd.h │ │ ├── platform_thread.cc │ │ ├── platform_thread.h │ │ ├── ram_dataspace_support.cc │ │ ├── region_map_support.cc │ │ ├── rpc_cap_factory.h │ │ ├── signal_broker.h │ │ ├── signal_source_component.h │ │ ├── spec │ │ │ ├── arm │ │ │ │ ├── address_space_id_allocator.h │ │ │ │ ├── cortex_a9_private_timer.cc │ │ │ │ ├── cortex_a9_private_timer.h │ │ │ │ ├── cpu.cc │ │ │ │ ├── cpu_support.h │ │ │ │ ├── crt0.s │ │ │ │ ├── exception_vector.S │ │ │ │ ├── generic_timer.cc │ │ │ │ ├── generic_timer.h │ │ │ │ ├── gicv2.cc │ │ │ │ ├── gicv3.cc │ │ │ │ ├── imx_epit.cc │ │ │ │ ├── imx_epit.h │ │ │ │ ├── imx_tzic.cc │ │ │ │ ├── kernel │ │ │ │ │ ├── cpu.cc │ │ │ │ │ ├── lock.cc │ │ │ │ │ ├── panic.cc │ │ │ │ │ ├── pd.cc │ │ │ │ │ ├── perf_counter.h │ │ │ │ │ ├── thread.cc │ │ │ │ │ └── thread_caches.cc │ │ │ │ ├── platform_support.cc │ │ │ │ ├── trustzone_board.h │ │ │ │ ├── vfpv2.s │ │ │ │ ├── vfpv3-d32.s │ │ │ │ └── virtualization │ │ │ │ │ ├── board.h │ │ │ │ │ ├── gicv2.cc │ │ │ │ │ ├── gicv2.h │ │ │ │ │ ├── gicv3.h │ │ │ │ │ ├── platform_services.cc │ │ │ │ │ └── vm_session_component.cc │ │ │ ├── arm_v6 │ │ │ │ ├── cpu.h │ │ │ │ ├── perf_counter.cc │ │ │ │ ├── synchronize.s │ │ │ │ └── translation_table.h │ │ │ ├── arm_v7 │ │ │ │ ├── cpu_support.h │ │ │ │ ├── perf_counter.cc │ │ │ │ ├── synchronize.s │ │ │ │ ├── trustzone │ │ │ │ │ ├── exception_vector.s │ │ │ │ │ ├── kernel │ │ │ │ │ │ └── vm.cc │ │ │ │ │ ├── platform_services.cc │ │ │ │ │ └── vm_session_component.cc │ │ │ │ └── virtualization │ │ │ │ │ ├── exception_vector.s │ │ │ │ │ └── kernel │ │ │ │ │ └── vm.cc │ │ │ ├── arm_v8 │ │ │ │ ├── address_space_id_allocator.h │ │ │ │ ├── cpu.cc │ │ │ │ ├── cpu.h │ │ │ │ ├── crt0.s │ │ │ │ ├── exception_vector.s │ │ │ │ ├── kernel │ │ │ │ │ ├── cpu.cc │ │ │ │ │ └── thread.cc │ │ │ │ ├── pd_session_support.cc │ │ │ │ ├── translation_table.h │ │ │ │ └── virtualization │ │ │ │ │ ├── exception_vector.s │ │ │ │ │ └── kernel │ │ │ │ │ └── vm.cc │ │ │ ├── cortex_a15 │ │ │ │ ├── cpu.cc │ │ │ │ ├── cpu.h │ │ │ │ └── translation_table.h │ │ │ ├── cortex_a8 │ │ │ │ ├── cpu.h │ │ │ │ └── translation_table.h │ │ │ ├── cortex_a9 │ │ │ │ ├── board.cc │ │ │ │ ├── cpu.cc │ │ │ │ ├── cpu.h │ │ │ │ └── translation_table.h │ │ │ ├── riscv │ │ │ │ ├── address_space_id_allocator.h │ │ │ │ ├── cpu.cc │ │ │ │ ├── cpu.h │ │ │ │ ├── crt0.s │ │ │ │ ├── exception_vector.s │ │ │ │ ├── kernel │ │ │ │ │ ├── cpu.cc │ │ │ │ │ ├── interface.cc │ │ │ │ │ ├── pd.cc │ │ │ │ │ └── thread.cc │ │ │ │ ├── pic.cc │ │ │ │ ├── pic.h │ │ │ │ ├── platform_support.cc │ │ │ │ ├── timer.cc │ │ │ │ └── timer.h │ │ │ └── x86_64 │ │ │ │ ├── address_space_id_allocator.h │ │ │ │ ├── bios_data_area.cc │ │ │ │ ├── cpu.cc │ │ │ │ ├── cpu.h │ │ │ │ ├── crt0.s │ │ │ │ ├── exception_vector.s │ │ │ │ ├── fpu.h │ │ │ │ ├── kernel │ │ │ │ ├── cpu.cc │ │ │ │ ├── pd.cc │ │ │ │ ├── thread.cc │ │ │ │ └── thread_exception.cc │ │ │ │ ├── pic.cc │ │ │ │ ├── pic.h │ │ │ │ ├── pit.cc │ │ │ │ ├── pit.h │ │ │ │ ├── platform_support.cc │ │ │ │ ├── platform_support_common.cc │ │ │ │ ├── port_io.h │ │ │ │ └── translation_table.h │ │ ├── stack_area_addr.cc │ │ ├── thread_start.cc │ │ ├── util.h │ │ ├── vm_session_component.cc │ │ └── vm_session_component.h │ │ ├── include │ │ ├── base │ │ │ └── internal │ │ │ │ ├── align_at.h │ │ │ │ ├── capability_space.h │ │ │ │ ├── lock_helper.h │ │ │ │ ├── native_env.h │ │ │ │ ├── native_thread.h │ │ │ │ ├── native_utcb.h │ │ │ │ ├── parent_cap.h │ │ │ │ └── raw_write_string.h │ │ ├── hw │ │ │ ├── assert.h │ │ │ ├── boot_info.h │ │ │ ├── mapping.h │ │ │ ├── memory_map.h │ │ │ ├── memory_region.h │ │ │ ├── page_flags.h │ │ │ ├── page_table_allocator.h │ │ │ ├── spec │ │ │ │ ├── arm │ │ │ │ │ ├── boot_info.h │ │ │ │ │ ├── cortex_a15.h │ │ │ │ │ ├── cortex_a9.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── gicv2.h │ │ │ │ │ ├── gicv3.h │ │ │ │ │ ├── imx53_qsb_board.h │ │ │ │ │ ├── imx6q_sabrelite_board.h │ │ │ │ │ ├── imx7d_sabre_board.h │ │ │ │ │ ├── imx_tzic.h │ │ │ │ │ ├── lpae.h │ │ │ │ │ ├── nit6_solox_board.h │ │ │ │ │ ├── page_table.h │ │ │ │ │ ├── pbxa9_board.h │ │ │ │ │ ├── pl310.h │ │ │ │ │ ├── psci.h │ │ │ │ │ ├── psci_call.h │ │ │ │ │ ├── register_macros.h │ │ │ │ │ ├── usb_armory_board.h │ │ │ │ │ ├── virt_qemu_board.h │ │ │ │ │ └── wand_quad_board.h │ │ │ │ ├── arm_64 │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── memory_map.h │ │ │ │ │ └── psci_call.h │ │ │ │ ├── riscv │ │ │ │ │ ├── boot_info.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── page_table.h │ │ │ │ │ ├── register_macros.h │ │ │ │ │ └── sbi.h │ │ │ │ └── x86_64 │ │ │ │ │ ├── acpi.h │ │ │ │ │ ├── acpi_rsdp.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── framebuffer.h │ │ │ │ │ ├── page_table.h │ │ │ │ │ ├── pc_board.h │ │ │ │ │ ├── register_macros.h │ │ │ │ │ └── x86_64.h │ │ │ └── util.h │ │ └── hw_native_vcpu │ │ │ └── hw_native_vcpu.h │ │ ├── lib │ │ ├── base │ │ │ ├── arm │ │ │ │ └── kernel │ │ │ │ │ └── interface.cc │ │ │ ├── arm_64 │ │ │ │ └── kernel │ │ │ │ │ └── interface.cc │ │ │ ├── cache.cc │ │ │ ├── capability.cc │ │ │ ├── env_deprecated.cc │ │ │ ├── ipc.cc │ │ │ ├── native_utcb.cc │ │ │ ├── raw_write_string.cc │ │ │ ├── riscv │ │ │ │ └── kernel │ │ │ │ │ └── interface.cc │ │ │ ├── signal_receiver.cc │ │ │ ├── signal_transmitter.cc │ │ │ ├── thread_bootstrap.cc │ │ │ ├── thread_start.cc │ │ │ ├── vm.cc │ │ │ └── x86_64 │ │ │ │ └── kernel │ │ │ │ └── interface.cc │ │ ├── hw │ │ │ ├── capability.cc │ │ │ └── spec │ │ │ │ ├── 32bit │ │ │ │ └── memory_map.cc │ │ │ │ └── 64bit │ │ │ │ └── memory_map.cc │ │ └── ld │ │ │ └── hw │ │ │ └── target.mk │ │ ├── test │ │ ├── cpu_quota │ │ │ ├── include │ │ │ │ └── sync_session │ │ │ │ │ ├── connection.h │ │ │ │ │ └── sync_session.h │ │ │ ├── main.cc │ │ │ ├── sync │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ └── target.mk │ │ ├── cpu_scheduler │ │ │ ├── target.mk │ │ │ └── test.cc │ │ └── double_list │ │ │ ├── target.mk │ │ │ └── test.cc │ │ └── timer │ │ └── hw │ │ ├── target.mk │ │ ├── time_source.cc │ │ └── time_source.h ├── base-linux │ ├── README │ ├── etc │ │ └── specs.conf │ ├── include │ │ └── spec │ │ │ └── arm_64 │ │ │ └── trace │ │ │ └── timestamp.h │ ├── lib │ │ ├── import │ │ │ ├── import-lx_hybrid.mk │ │ │ └── import-syscall-linux.mk │ │ └── mk │ │ │ ├── base-linux-common.mk │ │ │ ├── base-linux.inc │ │ │ ├── base-linux.mk │ │ │ ├── core-linux.inc │ │ │ ├── core-linux.mk │ │ │ ├── lx_hybrid.mk │ │ │ └── spec │ │ │ ├── arm │ │ │ ├── base-linux.mk │ │ │ ├── ld-linux.mk │ │ │ ├── seccomp.mk │ │ │ ├── startup-linux.mk │ │ │ └── syscall-linux.mk │ │ │ ├── arm_64 │ │ │ ├── base-linux.mk │ │ │ ├── ld-linux.mk │ │ │ ├── seccomp.mk │ │ │ ├── startup-linux.mk │ │ │ └── syscall-linux.mk │ │ │ ├── x86 │ │ │ ├── base-linux.mk │ │ │ └── core-linux.mk │ │ │ ├── x86_32 │ │ │ ├── ld-linux.mk │ │ │ ├── seccomp.mk │ │ │ ├── startup-linux.mk │ │ │ └── syscall-linux.mk │ │ │ └── x86_64 │ │ │ ├── ld-linux.mk │ │ │ ├── seccomp.mk │ │ │ ├── startup-linux.mk │ │ │ └── syscall-linux.mk │ ├── recipes │ │ ├── api │ │ │ └── base-linux │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ └── src │ │ │ └── base-linux │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ ├── run │ │ ├── lx_fs.run │ │ ├── lx_fs_notify.run │ │ ├── lx_hybrid_ctors.run │ │ ├── lx_hybrid_errno.run │ │ ├── lx_hybrid_exception.run │ │ ├── lx_hybrid_pthread_ipc.run │ │ ├── lx_rmap.inc │ │ ├── lx_rmap_dynamic.run │ │ ├── lx_rmap_static.run │ │ ├── lx_uid.run │ │ └── region_map_mmap.run │ └── src │ │ ├── core │ │ ├── core_log_out.cc │ │ ├── core_rpc_cap_alloc.cc │ │ ├── include │ │ │ ├── core_linux_syscalls.h │ │ │ ├── core_region_map.h │ │ │ ├── dataspace_component.h │ │ │ ├── io_mem_session_component.h │ │ │ ├── irq_object.h │ │ │ ├── irq_session_component.h │ │ │ ├── native_cpu_component.h │ │ │ ├── native_pd_component.h │ │ │ ├── pager.h │ │ │ ├── platform.h │ │ │ ├── platform_pd.h │ │ │ ├── platform_thread.h │ │ │ ├── region_map_component.h │ │ │ ├── resource_path.h │ │ │ ├── rpc_cap_factory.h │ │ │ └── util.h │ │ ├── linux │ │ │ └── target.mk │ │ ├── native_cpu_component.cc │ │ ├── native_pd_component.cc │ │ ├── platform.cc │ │ ├── platform_thread.cc │ │ ├── ram_dataspace_support.cc │ │ ├── rom_session_component.cc │ │ ├── rpc_cap_factory_linux.cc │ │ ├── spec │ │ │ ├── linux │ │ │ │ ├── dataspace_component.cc │ │ │ │ ├── io_mem_session_component.cc │ │ │ │ ├── io_port_session_component.cc │ │ │ │ ├── irq_session_component.cc │ │ │ │ └── platform_services.cc │ │ │ └── pc │ │ │ │ ├── dataspace_component.cc │ │ │ │ ├── io_mem_session_component.cc │ │ │ │ ├── io_port_session_component.cc │ │ │ │ ├── irq_session_component.cc │ │ │ │ └── platform_services.cc │ │ ├── stack_area.cc │ │ └── thread_linux.cc │ │ ├── include │ │ ├── base │ │ │ └── internal │ │ │ │ ├── capability_space_tpl.h │ │ │ │ ├── local_capability.h │ │ │ │ ├── local_parent.h │ │ │ │ ├── local_pd_session.h │ │ │ │ ├── local_rm_session.h │ │ │ │ ├── local_session.h │ │ │ │ ├── lock_helper.h │ │ │ │ ├── native_thread.h │ │ │ │ ├── native_utcb.h │ │ │ │ ├── parent_socket_handle.h │ │ │ │ ├── platform_env.h │ │ │ │ ├── raw_write_string.h │ │ │ │ ├── region_map_mmap.h │ │ │ │ ├── region_registry.h │ │ │ │ ├── rpc_destination.h │ │ │ │ └── stack_area.h │ │ ├── linux_dataspace │ │ │ ├── client.h │ │ │ └── linux_dataspace.h │ │ ├── linux_native_cpu │ │ │ ├── client.h │ │ │ └── linux_native_cpu.h │ │ └── linux_native_pd │ │ │ ├── client.h │ │ │ └── linux_native_pd.h │ │ ├── ld │ │ └── stack_area.ld │ │ ├── lib │ │ ├── base │ │ │ ├── attach_stack_area.cc │ │ │ ├── capability_raw.cc │ │ │ ├── child_process.cc │ │ │ ├── cpu │ │ │ │ └── arm │ │ │ │ │ └── cache.cc │ │ │ ├── debug.cc │ │ │ ├── ipc.cc │ │ │ ├── native_thread.cc │ │ │ ├── platform.cc │ │ │ ├── platform_env.cc │ │ │ ├── region_map_client.cc │ │ │ ├── region_map_mmap.cc │ │ │ ├── rm_session_client.cc │ │ │ ├── rpc_cap_alloc.cc │ │ │ ├── thread_env.cc │ │ │ └── thread_linux.cc │ │ ├── initramfs │ │ │ ├── init.c │ │ │ └── target.mk │ │ ├── ld │ │ │ └── linux │ │ │ │ └── target.mk │ │ ├── lx_hybrid │ │ │ ├── libgcc.c │ │ │ └── lx_hybrid.cc │ │ ├── seccomp │ │ │ ├── seccomp_bpf_policy.h │ │ │ ├── spec │ │ │ │ ├── arm │ │ │ │ │ └── seccomp_bpf_policy.bin │ │ │ │ ├── arm_64 │ │ │ │ │ └── seccomp_bpf_policy.bin │ │ │ │ ├── x86_32 │ │ │ │ │ └── seccomp_bpf_policy.bin │ │ │ │ └── x86_64 │ │ │ │ │ └── seccomp_bpf_policy.bin │ │ │ └── update.sh │ │ └── syscall │ │ │ ├── linux_syscalls.h │ │ │ └── spec │ │ │ ├── arm │ │ │ ├── lx_clone.S │ │ │ └── lx_syscall.S │ │ │ ├── arm_64 │ │ │ ├── lx_clone.S │ │ │ └── lx_syscall.S │ │ │ ├── x86_32 │ │ │ ├── lx_clone.S │ │ │ └── lx_syscall.S │ │ │ └── x86_64 │ │ │ ├── lx_clone.S │ │ │ ├── lx_restore_rt.S │ │ │ └── lx_syscall.S │ │ ├── test │ │ ├── lx_hybrid_ctors │ │ │ ├── main.cc │ │ │ ├── target.mk │ │ │ ├── testlib.cc │ │ │ └── testlib.h │ │ ├── lx_hybrid_errno │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── lx_hybrid_exception │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── lx_hybrid_pthread_ipc │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── lx_rmap │ │ │ ├── dynamic │ │ │ │ └── target.mk │ │ │ ├── main.cc │ │ │ └── static │ │ │ │ └── target.mk │ │ └── region_map_mmap │ │ │ ├── main.cc │ │ │ └── target.mk │ │ └── timer │ │ └── linux │ │ ├── target.mk │ │ └── time_source.cc ├── base-nova │ ├── README │ ├── etc │ │ └── specs.conf │ ├── include │ │ ├── nova │ │ │ ├── cap_map.h │ │ │ ├── capability_space.h │ │ │ ├── native_thread.h │ │ │ ├── receive_window.h │ │ │ ├── stdint.h │ │ │ ├── syscall-generic.h │ │ │ └── util.h │ │ ├── nova_native_cpu │ │ │ ├── client.h │ │ │ └── nova_native_cpu.h │ │ ├── nova_native_pd │ │ │ ├── client.h │ │ │ └── nova_native_pd.h │ │ └── spec │ │ │ ├── 32bit │ │ │ └── nova │ │ │ │ └── syscalls.h │ │ │ └── 64bit │ │ │ └── nova │ │ │ └── syscalls.h │ ├── lib │ │ └── mk │ │ │ ├── base-nova-common.mk │ │ │ ├── base-nova.mk │ │ │ ├── core-nova.inc │ │ │ └── spec │ │ │ ├── x86_32 │ │ │ ├── core-nova.mk │ │ │ ├── ld-nova.mk │ │ │ └── startup-nova.mk │ │ │ └── x86_64 │ │ │ ├── core-nova.mk │ │ │ ├── ld-nova.mk │ │ │ └── startup-nova.mk │ ├── mk │ │ └── spec │ │ │ ├── nova_x86_32.mk │ │ │ └── nova_x86_64.mk │ ├── patches │ │ └── README │ ├── ports │ │ ├── nova.hash │ │ └── nova.port │ ├── recipes │ │ ├── api │ │ │ └── base-nova │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ └── src │ │ │ └── base-nova │ │ │ ├── README │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ ├── run │ │ └── platform.run │ └── src │ │ ├── core │ │ ├── bios_data_area.cc │ │ ├── core-bss.ld │ │ ├── core_log_out.cc │ │ ├── core_region_map.cc │ │ ├── core_rpc_cap_alloc.cc │ │ ├── include │ │ │ ├── imprint_badge.h │ │ │ ├── ipc_pager.h │ │ │ ├── irq_object.h │ │ │ ├── map_local.h │ │ │ ├── native_cpu_component.h │ │ │ ├── native_pd_component.h │ │ │ ├── nova_util.h │ │ │ ├── pager.h │ │ │ ├── platform.h │ │ │ ├── platform_pd.h │ │ │ ├── platform_thread.h │ │ │ ├── rpc_cap_factory.h │ │ │ ├── signal_broker.h │ │ │ ├── signal_source_component.h │ │ │ ├── util.h │ │ │ └── vm_session_component.h │ │ ├── io_mem_session_support.cc │ │ ├── ipc_pager.cc │ │ ├── irq_session_component.cc │ │ ├── native_cpu_component.cc │ │ ├── native_pd_component.cc │ │ ├── nova │ │ │ └── target.mk │ │ ├── pager.cc │ │ ├── pd_session_support.cc │ │ ├── platform.cc │ │ ├── platform_pd.cc │ │ ├── platform_services.cc │ │ ├── platform_thread.cc │ │ ├── ram_dataspace_support.cc │ │ ├── rpc_cap_factory.cc │ │ ├── spec │ │ │ ├── x86_32 │ │ │ │ └── pager.cc │ │ │ └── x86_64 │ │ │ │ └── pager.cc │ │ ├── thread_start.cc │ │ └── vm_session_component.cc │ │ ├── include │ │ ├── base │ │ │ └── internal │ │ │ │ ├── ipc.h │ │ │ │ ├── lock_helper.h │ │ │ │ ├── native_thread.h │ │ │ │ ├── native_utcb.h │ │ │ │ ├── parent_cap.h │ │ │ │ ├── raw_write_string.h │ │ │ │ └── spin_lock.h │ │ ├── nova_native_vcpu │ │ │ └── nova_native_vcpu.h │ │ └── signal_source │ │ │ ├── client.h │ │ │ └── nova_signal_source.h │ │ ├── kernel │ │ └── nova │ │ │ └── target.mk │ │ ├── lib │ │ ├── base │ │ │ ├── cap_map.cc │ │ │ ├── capability.cc │ │ │ ├── ipc.cc │ │ │ ├── region_map_client.cc │ │ │ ├── rpc_cap_alloc.cc │ │ │ ├── rpc_entrypoint.cc │ │ │ ├── signal_transmitter.cc │ │ │ ├── sleep.cc │ │ │ ├── stack.cc │ │ │ ├── thread_start.cc │ │ │ └── vm.cc │ │ └── ld │ │ │ └── nova │ │ │ └── target.mk │ │ ├── test │ │ └── platform │ │ │ ├── ipc.cc │ │ │ ├── main.cc │ │ │ ├── server.h │ │ │ └── target.mk │ │ └── timer │ │ └── nova │ │ ├── target.mk │ │ ├── time_source.cc │ │ └── time_source.h ├── base-okl4 │ ├── README │ ├── contrib │ │ └── generated │ │ │ ├── README │ │ │ └── x86 │ │ │ ├── asmsyms.h │ │ │ ├── kdb_class_helper.h │ │ │ ├── ktcb_layout.h │ │ │ ├── linker.ld │ │ │ ├── macro_sets.cc │ │ │ └── tcb_layout.h │ ├── etc │ │ └── specs.conf │ ├── lib │ │ ├── import │ │ │ ├── import-kernel-okl4-include.mk │ │ │ └── import-syscall-okl4.mk │ │ └── mk │ │ │ ├── base-okl4-common.mk │ │ │ ├── base-okl4.mk │ │ │ ├── core-okl4.inc │ │ │ ├── kernel-okl4-include.inc │ │ │ ├── kernel-okl4.inc │ │ │ ├── okl4_boot_info.mk │ │ │ ├── spec │ │ │ ├── x86 │ │ │ │ ├── core-okl4.mk │ │ │ │ ├── kernel-okl4-include.mk │ │ │ │ ├── kernel-okl4.mk │ │ │ │ └── syscall-okl4.mk │ │ │ └── x86_32 │ │ │ │ ├── ld-okl4.mk │ │ │ │ └── startup-okl4.mk │ │ │ ├── startup-okl4.mk │ │ │ ├── syscall-okl4.inc │ │ │ └── tools.mk │ ├── patches │ │ ├── README │ │ ├── bda.patch │ │ ├── char_bit.patch │ │ ├── eabi_build.patch │ │ ├── elfweaver.patch │ │ ├── elfweaver_python2.patch │ │ ├── gcc_4.4.5.patch │ │ ├── gdt_init.patch │ │ ├── invalid_opcode_exception_ipc.patch │ │ ├── kdb_reboot.patch │ │ ├── read_write_lock_volatile.patch │ │ ├── reply_tid.patch │ │ ├── suspend_resume.patch │ │ └── syscall_pic.patch │ ├── ports │ │ ├── okl4.hash │ │ └── okl4.port │ ├── recipes │ │ └── src │ │ │ └── base-okl4 │ │ │ ├── README │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ ├── run │ │ └── priority.run │ ├── src │ │ ├── core │ │ │ ├── core_log_out.cc │ │ │ ├── core_region_map.cc │ │ │ ├── include │ │ │ │ ├── ipc_pager.h │ │ │ │ ├── map_local.h │ │ │ │ ├── platform.h │ │ │ │ ├── platform_pd.h │ │ │ │ ├── platform_thread.h │ │ │ │ ├── rpc_cap_factory.h │ │ │ │ ├── stdint.h │ │ │ │ └── util.h │ │ │ ├── io_mem_session_support.cc │ │ │ ├── irq_session_component.cc │ │ │ ├── okl4 │ │ │ │ └── target.mk │ │ │ ├── pager.cc │ │ │ ├── pager_object.cc │ │ │ ├── platform.cc │ │ │ ├── platform_pd.cc │ │ │ ├── platform_thread.cc │ │ │ ├── ram_dataspace_support.cc │ │ │ ├── spec │ │ │ │ └── x86 │ │ │ │ │ └── platform_thread_x86.cc │ │ │ └── thread_start.cc │ │ ├── include │ │ │ ├── base │ │ │ │ └── internal │ │ │ │ │ ├── lock_helper.h │ │ │ │ │ ├── native_thread.h │ │ │ │ │ ├── native_utcb.h │ │ │ │ │ ├── okl4.h │ │ │ │ │ ├── parent_cap.h │ │ │ │ │ ├── raw_write_string.h │ │ │ │ │ └── rpc_destination.h │ │ │ └── bootinfo │ │ │ │ └── internal │ │ │ │ ├── stdint.h │ │ │ │ └── stdio.h │ │ ├── kernel │ │ │ └── okl4 │ │ │ │ └── target.mk │ │ ├── lib │ │ │ ├── base │ │ │ │ ├── capability_raw.cc │ │ │ │ ├── ipc.cc │ │ │ │ └── thread_bootstrap.cc │ │ │ └── ld │ │ │ │ └── okl4 │ │ │ │ └── target.mk │ │ └── timer │ │ │ └── pit │ │ │ └── target.mk │ └── tool │ │ ├── README │ │ └── weaver_x86.xml ├── base-pistachio │ ├── README │ ├── config │ │ └── kernel │ ├── etc │ │ └── specs.conf │ ├── lib │ │ ├── import │ │ │ └── import-syscall-pistachio.mk │ │ └── mk │ │ │ ├── base-pistachio-common.mk │ │ │ ├── base-pistachio.mk │ │ │ ├── core-pistachio.inc │ │ │ ├── spec │ │ │ └── x86_32 │ │ │ │ ├── core-pistachio.mk │ │ │ │ ├── ld-pistachio.mk │ │ │ │ └── startup-pistachio.mk │ │ │ └── syscall-pistachio.mk │ ├── patches │ │ ├── apps.patch │ │ ├── bda.patch │ │ ├── configure.patch │ │ ├── gcc8.patch │ │ ├── size_type.patch │ │ ├── syscall_edi_clobber.patch │ │ └── warnings.patch │ ├── ports │ │ ├── pistachio.hash │ │ └── pistachio.port │ ├── recipes │ │ └── src │ │ │ └── base-pistachio │ │ │ ├── README │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ └── src │ │ ├── core │ │ ├── core_log_out.cc │ │ ├── include │ │ │ ├── ipc_pager.h │ │ │ ├── kip.h │ │ │ ├── map_local.h │ │ │ ├── platform.h │ │ │ ├── platform_pd.h │ │ │ ├── platform_thread.h │ │ │ ├── print_l4_thread_id.h │ │ │ ├── rpc_cap_factory.h │ │ │ └── util.h │ │ ├── io_mem_session_support.cc │ │ ├── irq_session_component.cc │ │ ├── kip.cc │ │ ├── pager.cc │ │ ├── pager_object.cc │ │ ├── pistachio │ │ │ └── target.mk │ │ ├── platform.cc │ │ ├── platform_pd.cc │ │ ├── platform_thread.cc │ │ ├── ram_dataspace_support.cc │ │ ├── spec │ │ │ └── x86 │ │ │ │ └── platform_x86.cc │ │ └── thread_start.cc │ │ ├── include │ │ └── base │ │ │ └── internal │ │ │ ├── child_policy.h │ │ │ ├── lock_helper.h │ │ │ ├── native_thread.h │ │ │ ├── native_utcb.h │ │ │ ├── parent_cap.h │ │ │ ├── pistachio.h │ │ │ ├── raw_write_string.h │ │ │ └── rpc_destination.h │ │ ├── kernel │ │ └── pistachio │ │ │ └── target.mk │ │ ├── lib │ │ ├── base │ │ │ ├── capability_raw.cc │ │ │ ├── ipc.cc │ │ │ └── thread_bootstrap.cc │ │ └── ld │ │ │ └── pistachio │ │ │ └── target.mk │ │ └── timer │ │ └── pit │ │ └── target.mk ├── base-sel4 │ ├── doc │ │ ├── core.txt │ │ ├── ipc_and_virt_mem.txt │ │ └── simple_root_task.txt │ ├── etc │ │ ├── board.conf │ │ └── specs.conf │ ├── include │ │ └── sel4 │ │ │ └── assert.h │ ├── lib │ │ ├── import │ │ │ └── import-syscall-sel4.mk │ │ └── mk │ │ │ ├── base-sel4-common.inc │ │ │ ├── base-sel4-common.mk │ │ │ ├── base-sel4.inc │ │ │ ├── core-sel4.inc │ │ │ ├── spec │ │ │ ├── arm │ │ │ │ ├── base-sel4.mk │ │ │ │ ├── core-sel4.mk │ │ │ │ ├── kernel-sel4-imx6q_sabrelite.mk │ │ │ │ ├── kernel-sel4-imx7d_sabre.mk │ │ │ │ ├── kernel-sel4.inc │ │ │ │ ├── ld-sel4.mk │ │ │ │ ├── startup-sel4.mk │ │ │ │ ├── syscall-sel4-imx6q_sabrelite.mk │ │ │ │ └── syscall-sel4-imx7d_sabre.mk │ │ │ ├── x86 │ │ │ │ ├── base-sel4-common.mk │ │ │ │ └── base-sel4.mk │ │ │ ├── x86_32 │ │ │ │ ├── core-sel4.mk │ │ │ │ ├── kernel-sel4-pc.mk │ │ │ │ ├── ld-sel4.mk │ │ │ │ ├── startup-sel4.mk │ │ │ │ └── syscall-sel4-pc.mk │ │ │ └── x86_64 │ │ │ │ ├── core-sel4.mk │ │ │ │ ├── kernel-sel4-pc.mk │ │ │ │ ├── ld-sel4.mk │ │ │ │ ├── startup-sel4.mk │ │ │ │ └── syscall-sel4-pc.mk │ │ │ ├── syscall-sel4.inc │ │ │ └── syscall-sel4.mk │ ├── mk │ │ └── spec │ │ │ └── sel4_x86_32.mk │ ├── patches │ │ ├── address_of_packed_member.patch │ │ ├── arm_cache.patch │ │ ├── autoconf_32.patch │ │ ├── autoconf_64.patch │ │ ├── config.patch │ │ ├── imx6q_sabrelite.config │ │ ├── imx7d_sabre.config │ │ ├── intel_efer.patch │ │ ├── intel_ug.patch │ │ ├── intel_vmcs.patch │ │ ├── intel_vmx_disable_vpid.patch │ │ ├── intel_vmx_full_state.patch │ │ ├── intel_vtx_check.patch │ │ ├── ioapic.patch │ │ ├── noise.patch │ │ ├── sched_bug_x86.patch │ │ ├── sel4_tlb_x86_bug.patch │ │ └── vcpu_nullptr_bug.patch │ ├── ports │ │ ├── sel4.hash │ │ ├── sel4.port │ │ ├── sel4_tools.hash │ │ └── sel4_tools.port │ ├── recipes │ │ └── src │ │ │ ├── base-sel4-imx6q_sabrelite │ │ │ ├── README │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── base-sel4-imx7d_sabre │ │ │ ├── README │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ └── base-sel4-x86 │ │ │ ├── README │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ └── src │ │ ├── core │ │ ├── capability_space.cc │ │ ├── core_log_out.cc │ │ ├── core_region_map.cc │ │ ├── include │ │ │ ├── cap_sel_alloc.h │ │ │ ├── cnode.h │ │ │ ├── core_capability_data.h │ │ │ ├── core_cspace.h │ │ │ ├── initial_untyped_pool.h │ │ │ ├── install_mapping.h │ │ │ ├── ipc_pager.h │ │ │ ├── irq_object.h │ │ │ ├── kernel_object.h │ │ │ ├── map_local.h │ │ │ ├── page_table_registry.h │ │ │ ├── pager.h │ │ │ ├── platform.h │ │ │ ├── platform_pd.h │ │ │ ├── platform_thread.h │ │ │ ├── rpc_cap_factory.h │ │ │ ├── sel4_boot_info.h │ │ │ ├── thread_sel4.h │ │ │ ├── untyped_memory.h │ │ │ ├── util.h │ │ │ ├── vm_session_component.h │ │ │ └── vm_space.h │ │ ├── io_mem_session_support.cc │ │ ├── irq_session_component.cc │ │ ├── pager.cc │ │ ├── platform.cc │ │ ├── platform_pd.cc │ │ ├── platform_thread.cc │ │ ├── ram_dataspace_support.cc │ │ ├── rpc_cap_factory.cc │ │ ├── sel4 │ │ │ └── target.mk │ │ ├── signal_source_component.cc │ │ ├── spec │ │ │ ├── arm │ │ │ │ ├── arch_kernel_object.h │ │ │ │ ├── boot_info.cc │ │ │ │ ├── fault_info.h │ │ │ │ ├── irq.cc │ │ │ │ ├── platform.cc │ │ │ │ ├── platform_thread.cc │ │ │ │ ├── thread.cc │ │ │ │ └── vm_space.cc │ │ │ ├── x86 │ │ │ │ ├── fault_info.h │ │ │ │ ├── io_port_session_support.cc │ │ │ │ ├── irq.cc │ │ │ │ ├── platform_services.cc │ │ │ │ ├── platform_thread.cc │ │ │ │ ├── vm_session_component.cc │ │ │ │ └── vm_space.cc │ │ │ ├── x86_32 │ │ │ │ ├── arch_kernel_object.h │ │ │ │ ├── boot_info.cc │ │ │ │ ├── platform.cc │ │ │ │ ├── platform_pd.cc │ │ │ │ ├── thread.cc │ │ │ │ └── vm_space.cc │ │ │ └── x86_64 │ │ │ │ ├── arch_kernel_object.h │ │ │ │ ├── boot_info.cc │ │ │ │ ├── platform.cc │ │ │ │ ├── platform_pd.cc │ │ │ │ ├── thread.cc │ │ │ │ └── vm_space.cc │ │ ├── stack_area.cc │ │ └── thread_start.cc │ │ ├── include │ │ ├── base │ │ │ └── internal │ │ │ │ ├── assert.h │ │ │ │ ├── capability_space_sel4.h │ │ │ │ ├── kernel_debugger.h │ │ │ │ ├── lock_helper.h │ │ │ │ ├── native_thread.h │ │ │ │ ├── native_utcb.h │ │ │ │ ├── parent_cap.h │ │ │ │ ├── raw_write_string.h │ │ │ │ └── sel4.h │ │ ├── sel4_native_vcpu │ │ │ └── sel4_native_vcpu.h │ │ └── signal_source │ │ │ ├── client.h │ │ │ ├── rpc_object.h │ │ │ └── sel4_signal_source.h │ │ ├── kernel │ │ └── sel4 │ │ │ └── target.mk │ │ ├── lib │ │ ├── base │ │ │ ├── arm │ │ │ │ └── cache.cc │ │ │ ├── capability_raw.cc │ │ │ ├── capability_space.cc │ │ │ ├── ipc.cc │ │ │ ├── thread_bootstrap.cc │ │ │ ├── thread_init.cc │ │ │ └── x86 │ │ │ │ └── vm.cc │ │ └── ld │ │ │ └── sel4 │ │ │ └── target.mk │ │ └── timer │ │ ├── epit │ │ └── imx6q_sabrelite │ │ │ └── target.mk │ │ ├── gpt │ │ └── imx7d_sabre │ │ │ └── target.mk │ │ └── pit │ │ └── target.mk ├── base │ ├── README │ ├── board │ │ ├── pbxa9 │ │ │ ├── devices │ │ │ └── qemu_args │ │ ├── pc │ │ │ └── qemu_args │ │ └── virt_qemu │ │ │ └── qemu_args │ ├── etc │ │ ├── README │ │ └── tools.conf │ ├── include │ │ ├── README │ │ ├── base │ │ │ ├── affinity.h │ │ │ ├── allocator.h │ │ │ ├── allocator_avl.h │ │ │ ├── attached_dataspace.h │ │ │ ├── attached_io_mem_dataspace.h │ │ │ ├── attached_ram_dataspace.h │ │ │ ├── attached_rom_dataspace.h │ │ │ ├── blockade.h │ │ │ ├── blocking.h │ │ │ ├── buffered_output.h │ │ │ ├── cache.h │ │ │ ├── capability.h │ │ │ ├── child.h │ │ │ ├── component.h │ │ │ ├── connection.h │ │ │ ├── console.h │ │ │ ├── debug.h │ │ │ ├── duration.h │ │ │ ├── entrypoint.h │ │ │ ├── env.h │ │ │ ├── exception.h │ │ │ ├── heap.h │ │ │ ├── id_space.h │ │ │ ├── ipc.h │ │ │ ├── ipc_msgbuf.h │ │ │ ├── local_connection.h │ │ │ ├── lock.h │ │ │ ├── lock_guard.h │ │ │ ├── log.h │ │ │ ├── mutex.h │ │ │ ├── native_capability.h │ │ │ ├── object_pool.h │ │ │ ├── output.h │ │ │ ├── quota_guard.h │ │ │ ├── quota_transfer.h │ │ │ ├── ram_allocator.h │ │ │ ├── registry.h │ │ │ ├── rpc.h │ │ │ ├── rpc_args.h │ │ │ ├── rpc_client.h │ │ │ ├── rpc_server.h │ │ │ ├── semaphore.h │ │ │ ├── service.h │ │ │ ├── session_label.h │ │ │ ├── session_object.h │ │ │ ├── session_state.h │ │ │ ├── shared_object.h │ │ │ ├── signal.h │ │ │ ├── slab.h │ │ │ ├── sleep.h │ │ │ ├── snprintf.h │ │ │ ├── stdint.h │ │ │ ├── synced_allocator.h │ │ │ ├── synced_interface.h │ │ │ ├── thread.h │ │ │ ├── thread_state.h │ │ │ ├── trace │ │ │ │ ├── buffer.h │ │ │ │ ├── events.h │ │ │ │ ├── logger.h │ │ │ │ ├── policy.h │ │ │ │ └── types.h │ │ │ ├── tslab.h │ │ │ └── weak_ptr.h │ │ ├── cpu │ │ │ └── cache.h │ │ ├── cpu_session │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── cpu_session.h │ │ ├── cpu_thread │ │ │ ├── client.h │ │ │ └── cpu_thread.h │ │ ├── dataspace │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ └── dataspace.h │ │ ├── deprecated │ │ │ └── env.h │ │ ├── drivers │ │ │ ├── defs │ │ │ │ ├── arm_v7.h │ │ │ │ ├── imx53.h │ │ │ │ ├── imx53_qsb.h │ │ │ │ ├── imx6.h │ │ │ │ ├── imx6q_sabrelite.h │ │ │ │ ├── imx7d_sabre.h │ │ │ │ ├── nit6_solox.h │ │ │ │ ├── pbxa9.h │ │ │ │ ├── usb_armory.h │ │ │ │ └── wand_quad.h │ │ │ ├── platform │ │ │ │ └── bcm2837_control.h │ │ │ ├── timer │ │ │ │ └── util.h │ │ │ └── uart │ │ │ │ ├── imx.h │ │ │ │ ├── pl011.h │ │ │ │ └── x86_pc.h │ │ ├── io_mem_session │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── io_mem_session.h │ │ ├── io_port_session │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── io_port_session.h │ │ ├── irq_session │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── irq_session.h │ │ ├── log_session │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── log_session.h │ │ ├── parent │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ └── parent.h │ │ ├── pd_session │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── pd_session.h │ │ ├── region_map │ │ │ ├── client.h │ │ │ └── region_map.h │ │ ├── rm_session │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── rm_session.h │ │ ├── rom_session │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── rom_session.h │ │ ├── root │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── component.h │ │ │ └── root.h │ │ ├── session │ │ │ ├── capability.h │ │ │ └── session.h │ │ ├── spec │ │ │ ├── 32bit │ │ │ │ └── base │ │ │ │ │ └── fixed_stdint.h │ │ │ ├── 64bit │ │ │ │ └── base │ │ │ │ │ └── fixed_stdint.h │ │ │ ├── arm │ │ │ │ └── cpu │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── consts.h │ │ │ │ │ ├── cpu_state.h │ │ │ │ │ └── string.h │ │ │ ├── arm_64 │ │ │ │ ├── cpu │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── consts.h │ │ │ │ │ ├── cpu_state.h │ │ │ │ │ ├── memory_barrier.h │ │ │ │ │ └── string.h │ │ │ │ └── trace │ │ │ │ │ └── timestamp.h │ │ │ ├── arm_v6 │ │ │ │ ├── cpu │ │ │ │ │ └── memory_barrier.h │ │ │ │ └── trace │ │ │ │ │ └── timestamp.h │ │ │ ├── arm_v7 │ │ │ │ ├── cpu │ │ │ │ │ └── memory_barrier.h │ │ │ │ └── trace │ │ │ │ │ └── timestamp.h │ │ │ ├── riscv │ │ │ │ ├── cpu │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── consts.h │ │ │ │ │ ├── cpu_state.h │ │ │ │ │ ├── memory_barrier.h │ │ │ │ │ └── string.h │ │ │ │ └── trace │ │ │ │ │ └── timestamp.h │ │ │ ├── x86 │ │ │ │ ├── bios_data_area.h │ │ │ │ └── cpu │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── consts.h │ │ │ │ │ ├── memory_barrier.h │ │ │ │ │ ├── string.h │ │ │ │ │ └── vcpu_state.h │ │ │ ├── x86_32 │ │ │ │ ├── cpu │ │ │ │ │ └── cpu_state.h │ │ │ │ └── trace │ │ │ │ │ └── timestamp.h │ │ │ └── x86_64 │ │ │ │ ├── cpu │ │ │ │ └── cpu_state.h │ │ │ │ └── trace │ │ │ │ └── timestamp.h │ │ ├── timer │ │ │ └── timeout.h │ │ ├── timer_session │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── timer_session.h │ │ ├── trace_session │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── trace_session.h │ │ ├── util │ │ │ ├── arg_string.h │ │ │ ├── array.h │ │ │ ├── attempt.h │ │ │ ├── avl_string.h │ │ │ ├── avl_tree.h │ │ │ ├── bit_allocator.h │ │ │ ├── bit_array.h │ │ │ ├── construct_at.h │ │ │ ├── fifo.h │ │ │ ├── flex_iterator.h │ │ │ ├── interface.h │ │ │ ├── list.h │ │ │ ├── list_model.h │ │ │ ├── meta.h │ │ │ ├── misc_math.h │ │ │ ├── mmio.h │ │ │ ├── noncopyable.h │ │ │ ├── print_lines.h │ │ │ ├── reconstructible.h │ │ │ ├── register.h │ │ │ ├── register_set.h │ │ │ ├── retry.h │ │ │ ├── string.h │ │ │ ├── token.h │ │ │ ├── touch.h │ │ │ ├── xml_generator.h │ │ │ └── xml_node.h │ │ └── vm_session │ │ │ ├── connection.h │ │ │ ├── handler.h │ │ │ └── vm_session.h │ ├── lib │ │ ├── README │ │ ├── mk │ │ │ ├── README │ │ │ ├── base-common.inc │ │ │ ├── base.inc │ │ │ ├── base.mk │ │ │ ├── cxx.mk │ │ │ ├── ld-platform.inc │ │ │ ├── ld.mk │ │ │ ├── ldso_so_support.mk │ │ │ ├── spec │ │ │ │ ├── arm │ │ │ │ │ ├── ld-platform.inc │ │ │ │ │ └── startup.inc │ │ │ │ ├── arm_64 │ │ │ │ │ ├── ld-platform.inc │ │ │ │ │ └── startup.inc │ │ │ │ ├── riscv │ │ │ │ │ └── ld-platform.inc │ │ │ │ ├── x86_32 │ │ │ │ │ ├── ld-platform.inc │ │ │ │ │ └── startup.inc │ │ │ │ └── x86_64 │ │ │ │ │ ├── ld-platform.inc │ │ │ │ │ └── startup.inc │ │ │ ├── startup.inc │ │ │ ├── timeout-arm.mk │ │ │ └── timeout.mk │ │ └── symbols │ │ │ └── ld │ ├── mk │ │ ├── README │ │ ├── base-libs.mk │ │ ├── dep_lib.mk │ │ ├── dep_prg.mk │ │ ├── generic.mk │ │ ├── global.mk │ │ ├── lib.mk │ │ ├── prg.mk │ │ ├── spec │ │ │ ├── 32bit.mk │ │ │ ├── 64bit.mk │ │ │ ├── arm.mk │ │ │ ├── arm_v6.mk │ │ │ ├── arm_v7.mk │ │ │ ├── arm_v7a.mk │ │ │ ├── arm_v8a.mk │ │ │ ├── experimental.mk │ │ │ ├── release.mk │ │ │ ├── riscv.mk │ │ │ ├── x86_32.mk │ │ │ └── x86_64.mk │ │ └── util.inc │ ├── ports │ │ ├── grub2.hash │ │ └── grub2.port │ ├── recipes │ │ ├── api │ │ │ ├── base │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── so │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── timer_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ └── vm_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ ├── pkg │ │ │ ├── test-ds_ownership │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-entrypoint │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-log │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-mmio │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-new_delete │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-reconstructible │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-registry │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-rm_fault │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-rm_fault_no_nox │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-rm_nested │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-rm_stress │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-sanitizer │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-stack_smash │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-synced_interface │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-timer │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-tls │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-token │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-xml_generator │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ └── test-xml_node │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ └── src │ │ │ ├── base_content.inc │ │ │ ├── content.inc │ │ │ ├── test-ds_ownership │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-entrypoint │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-log │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-mmio │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-new_delete │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-reconstructible │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-registry │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-rm_fault │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-rm_nested │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-rm_stress │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-sanitizer │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-segfault │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-stack_smash │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-synced_interface │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-timer │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-tls │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-token │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-xml_generator │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ └── test-xml_node │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ ├── run │ │ ├── log.run │ │ ├── migrate.run │ │ ├── platform_drv.inc │ │ ├── smp.run │ │ ├── sub_rm.run │ │ ├── thread.run │ │ ├── timeout_smp.run │ │ ├── timer_accuracy.run │ │ └── timer_rate.run │ ├── src │ │ ├── README │ │ ├── core │ │ │ ├── capability_space.cc │ │ │ ├── core_log.cc │ │ │ ├── core_mem_alloc.cc │ │ │ ├── core_region_map.cc │ │ │ ├── core_rpc_cap_alloc.cc │ │ │ ├── cpu_session_component.cc │ │ │ ├── cpu_session_support.cc │ │ │ ├── cpu_thread_component.cc │ │ │ ├── dataspace_component.cc │ │ │ ├── default_log.cc │ │ │ ├── dump_alloc.cc │ │ │ ├── heartbeat.cc │ │ │ ├── include │ │ │ │ ├── account.h │ │ │ │ ├── address_space.h │ │ │ │ ├── assertion.h │ │ │ │ ├── boot_modules.h │ │ │ │ ├── constrained_core_ram.h │ │ │ │ ├── core_capability_space.h │ │ │ │ ├── core_env.h │ │ │ │ ├── core_log.h │ │ │ │ ├── core_mem_alloc.h │ │ │ │ ├── core_region_map.h │ │ │ │ ├── core_service.h │ │ │ │ ├── cpu_root.h │ │ │ │ ├── cpu_session_component.h │ │ │ │ ├── cpu_thread_allocator.h │ │ │ │ ├── cpu_thread_component.h │ │ │ │ ├── dataspace_component.h │ │ │ │ ├── io_mem_root.h │ │ │ │ ├── io_mem_session_component.h │ │ │ │ ├── io_port_root.h │ │ │ │ ├── io_port_session_component.h │ │ │ │ ├── irq_args.h │ │ │ │ ├── irq_object.h │ │ │ │ ├── irq_root.h │ │ │ │ ├── irq_session_component.h │ │ │ │ ├── log_root.h │ │ │ │ ├── log_session_component.h │ │ │ │ ├── mapping.h │ │ │ │ ├── native_cpu_component.h │ │ │ │ ├── native_pd_component.h │ │ │ │ ├── pager.h │ │ │ │ ├── pager_object_exception_state.h │ │ │ │ ├── pd_root.h │ │ │ │ ├── pd_session_component.h │ │ │ │ ├── platform_generic.h │ │ │ │ ├── platform_services.h │ │ │ │ ├── ram_dataspace_factory.h │ │ │ │ ├── region_map_component.h │ │ │ │ ├── rm_root.h │ │ │ │ ├── rm_session_component.h │ │ │ │ ├── rom_fs.h │ │ │ │ ├── rom_root.h │ │ │ │ ├── rom_session_component.h │ │ │ │ ├── rpc_cap_factory.h │ │ │ │ ├── signal_broker.h │ │ │ │ ├── signal_context_slab.h │ │ │ │ ├── signal_delivery_proxy.h │ │ │ │ ├── signal_source_component.h │ │ │ │ ├── signal_transmitter.h │ │ │ │ ├── synced_ram_allocator.h │ │ │ │ ├── synced_range_allocator.h │ │ │ │ ├── trace │ │ │ │ │ ├── control_area.h │ │ │ │ │ ├── policy_registry.h │ │ │ │ │ ├── root.h │ │ │ │ │ ├── session_component.h │ │ │ │ │ ├── source_registry.h │ │ │ │ │ └── subject_registry.h │ │ │ │ └── vm_root.h │ │ │ ├── io_mem_session_component.cc │ │ │ ├── main.cc │ │ │ ├── pager_ep.cc │ │ │ ├── pager_object.cc │ │ │ ├── pd_session_component.cc │ │ │ ├── pd_session_support.cc │ │ │ ├── platform_rom_modules.cc │ │ │ ├── platform_services.cc │ │ │ ├── ram_dataspace_factory.cc │ │ │ ├── region_map_component.cc │ │ │ ├── rom_session_component.cc │ │ │ ├── rpc_cap_factory.cc │ │ │ ├── rpc_cap_factory_l4.cc │ │ │ ├── signal_receiver.cc │ │ │ ├── signal_source_component.cc │ │ │ ├── signal_transmitter_noinit.cc │ │ │ ├── signal_transmitter_proxy.cc │ │ │ ├── spec │ │ │ │ └── x86 │ │ │ │ │ ├── io_port_session_component.cc │ │ │ │ │ ├── io_port_session_support.cc │ │ │ │ │ └── platform_services.cc │ │ │ ├── stack_area.cc │ │ │ ├── target.inc │ │ │ ├── trace_session_component.cc │ │ │ ├── version.cc │ │ │ ├── version.inc │ │ │ └── vm_session_common.cc │ │ ├── include │ │ │ ├── base │ │ │ │ └── internal │ │ │ │ │ ├── attached_stack_area.h │ │ │ │ │ ├── capability_data.h │ │ │ │ │ ├── capability_space.h │ │ │ │ │ ├── capability_space_tpl.h │ │ │ │ │ ├── child_policy.h │ │ │ │ │ ├── crt0.h │ │ │ │ │ ├── elf.h │ │ │ │ │ ├── elf_format.h │ │ │ │ │ ├── expanding_cpu_session_client.h │ │ │ │ │ ├── expanding_parent_client.h │ │ │ │ │ ├── expanding_pd_session_client.h │ │ │ │ │ ├── expanding_region_map_client.h │ │ │ │ │ ├── globals.h │ │ │ │ │ ├── ipc_server.h │ │ │ │ │ ├── non_core_stack_area_addr.h │ │ │ │ │ ├── output.h │ │ │ │ │ ├── page_size.h │ │ │ │ │ ├── parent_cap.h │ │ │ │ │ ├── platform_env.h │ │ │ │ │ ├── rpc_obj_key.h │ │ │ │ │ ├── spin_lock.h │ │ │ │ │ ├── stack.h │ │ │ │ │ ├── stack_allocator.h │ │ │ │ │ ├── stack_area.h │ │ │ │ │ ├── trace_control.h │ │ │ │ │ ├── unmanaged_singleton.h │ │ │ │ │ └── upgradeable_client.h │ │ │ ├── pager │ │ │ │ └── capability.h │ │ │ └── signal_source │ │ │ │ ├── capability.h │ │ │ │ ├── client.h │ │ │ │ ├── rpc_object.h │ │ │ │ └── signal_source.h │ │ ├── ld │ │ │ ├── genode.ld │ │ │ ├── genode_dyn.dl │ │ │ ├── genode_dyn.ld │ │ │ └── genode_rel.ld │ │ ├── lib │ │ │ ├── base │ │ │ │ ├── allocator_avl.cc │ │ │ │ ├── avl_tree.cc │ │ │ │ ├── cache.cc │ │ │ │ ├── capability.cc │ │ │ │ ├── capability_space.cc │ │ │ │ ├── child.cc │ │ │ │ ├── child_process.cc │ │ │ │ ├── component.cc │ │ │ │ ├── console.cc │ │ │ │ ├── default_log.cc │ │ │ │ ├── elf_binary.cc │ │ │ │ ├── entrypoint.cc │ │ │ │ ├── env_deprecated.cc │ │ │ │ ├── env_session_id_space.cc │ │ │ │ ├── heap.cc │ │ │ │ ├── heartbeat.cc │ │ │ │ ├── lock.cc │ │ │ │ ├── log.cc │ │ │ │ ├── main_thread_cap.cc │ │ │ │ ├── mutex.cc │ │ │ │ ├── output.cc │ │ │ │ ├── platform.cc │ │ │ │ ├── raw_output.cc │ │ │ │ ├── region_map_client.cc │ │ │ │ ├── registry.cc │ │ │ │ ├── rm_session_client.cc │ │ │ │ ├── root_proxy.cc │ │ │ │ ├── rpc_cap_alloc.cc │ │ │ │ ├── rpc_dispatch_loop.cc │ │ │ │ ├── rpc_entrypoint.cc │ │ │ │ ├── session_state.cc │ │ │ │ ├── signal.cc │ │ │ │ ├── signal_common.cc │ │ │ │ ├── signal_transmitter.cc │ │ │ │ ├── slab.cc │ │ │ │ ├── sleep.cc │ │ │ │ ├── sliced_heap.cc │ │ │ │ ├── stack_allocator.cc │ │ │ │ ├── stack_area.cc │ │ │ │ ├── stack_area_addr.cc │ │ │ │ ├── stack_protector.cc │ │ │ │ ├── thread.cc │ │ │ │ ├── thread_bootstrap.cc │ │ │ │ ├── thread_myself.cc │ │ │ │ ├── thread_start.cc │ │ │ │ ├── trace.cc │ │ │ │ ├── trace_buffer.cc │ │ │ │ ├── utcb.cc │ │ │ │ ├── vm.cc │ │ │ │ └── xml_generator.cc │ │ │ ├── cxx │ │ │ │ ├── emutls.cc │ │ │ │ ├── exception.cc │ │ │ │ ├── guard.cc │ │ │ │ ├── malloc_free.cc │ │ │ │ ├── misc.cc │ │ │ │ ├── new_delete.cc │ │ │ │ └── unwind.c │ │ │ ├── ldso │ │ │ │ ├── README │ │ │ │ ├── debug.cc │ │ │ │ ├── dependency.cc │ │ │ │ ├── exception.cc │ │ │ │ ├── include │ │ │ │ │ ├── config.h │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── dynamic.h │ │ │ │ │ ├── dynamic_generic.h │ │ │ │ │ ├── elf.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── init.h │ │ │ │ │ ├── linker.h │ │ │ │ │ ├── region_map.h │ │ │ │ │ ├── relocation_generic.h │ │ │ │ │ ├── types.h │ │ │ │ │ └── util.h │ │ │ │ ├── linker.ld │ │ │ │ ├── linux-32.ld │ │ │ │ ├── main.cc │ │ │ │ ├── shared_object.cc │ │ │ │ ├── so_support.c │ │ │ │ ├── spec │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── jmp_slot.s │ │ │ │ │ │ └── relocation.h │ │ │ │ │ ├── arm_64 │ │ │ │ │ │ ├── jmp_slot.s │ │ │ │ │ │ └── relocation.h │ │ │ │ │ ├── riscv │ │ │ │ │ │ ├── jmp_slot.s │ │ │ │ │ │ └── relocation.h │ │ │ │ │ ├── x86_32 │ │ │ │ │ │ ├── jmp_slot.s │ │ │ │ │ │ └── relocation.h │ │ │ │ │ └── x86_64 │ │ │ │ │ │ ├── jmp_slot.s │ │ │ │ │ │ └── relocation.h │ │ │ │ └── test.cc │ │ │ ├── startup │ │ │ │ ├── _main.cc │ │ │ │ ├── init_main_thread.cc │ │ │ │ └── spec │ │ │ │ │ ├── arm │ │ │ │ │ └── crt0.s │ │ │ │ │ ├── arm_64 │ │ │ │ │ └── crt0.s │ │ │ │ │ ├── riscv │ │ │ │ │ └── crt0.s │ │ │ │ │ ├── x86_32 │ │ │ │ │ └── crt0.s │ │ │ │ │ └── x86_64 │ │ │ │ │ └── crt0.s │ │ │ ├── target.mk │ │ │ └── timeout │ │ │ │ ├── arm │ │ │ │ └── timer_connection_time.cc │ │ │ │ ├── duration.cc │ │ │ │ ├── hw │ │ │ │ └── timer_connection_timestamp.cc │ │ │ │ ├── timeout.cc │ │ │ │ ├── timer_connection.cc │ │ │ │ ├── timer_connection_time.cc │ │ │ │ └── timer_connection_timestamp.cc │ │ ├── test │ │ │ ├── ds_ownership │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── entrypoint │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── log │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── migrate │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── mmio │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── new_delete │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── reconstructible │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── registry │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── rm_fault │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── rm_nested │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── rm_stress │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── sanitizer │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── segfault │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── smp │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── stack_smash │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── sub_rm │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── synced_interface │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── thread │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── timeout_smp │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── timer │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── timer_accuracy │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── timer_rate │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── tls │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── token │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── xml_generator │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ └── xml_node │ │ │ │ ├── target.mk │ │ │ │ └── test.cc │ │ └── timer │ │ │ ├── epit │ │ │ ├── imx6 │ │ │ │ ├── target.inc │ │ │ │ └── timer.cc │ │ │ ├── time_source.cc │ │ │ └── time_source.h │ │ │ ├── fiasco │ │ │ └── time_source.cc │ │ │ ├── gpt │ │ │ ├── imx7 │ │ │ │ ├── target.inc │ │ │ │ └── timer.cc │ │ │ ├── time_source.cc │ │ │ └── time_source.h │ │ │ ├── include │ │ │ ├── root_component.h │ │ │ ├── session_component.h │ │ │ ├── signalled_time_source.h │ │ │ └── threaded_time_source.h │ │ │ ├── main.cc │ │ │ ├── periodic │ │ │ ├── time_source.cc │ │ │ └── time_source.h │ │ │ ├── pit │ │ │ ├── target.inc │ │ │ ├── time_source.cc │ │ │ └── time_source.h │ │ │ └── target.inc │ └── xsd │ │ └── base_types.xsd ├── dde_bsd │ ├── README │ ├── audio.list │ ├── include │ │ └── audio │ │ │ └── audio.h │ ├── lib │ │ ├── import │ │ │ └── import-dde_bsd_audio_include.mk │ │ └── mk │ │ │ ├── dde_bsd_audio.inc │ │ │ ├── dde_bsd_audio_include.mk │ │ │ ├── dde_bsd_audio_pci.mk │ │ │ └── spec │ │ │ ├── x86_32 │ │ │ └── dde_bsd_audio.mk │ │ │ └── x86_64 │ │ │ └── dde_bsd_audio.mk │ ├── patches │ │ ├── azalia_c.patch │ │ ├── azalia_codec_c.patch │ │ ├── azalia_h.patch │ │ ├── notify.patch │ │ └── oppress_warning.patch │ ├── ports │ │ ├── dde_bsd.hash │ │ └── dde_bsd.port │ ├── recipes │ │ ├── pkg │ │ │ └── bsd_audio_drv │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ └── src │ │ │ └── bsd_audio_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ ├── run │ │ ├── audio_in.run │ │ └── audio_out.run │ └── src │ │ ├── drivers │ │ └── audio │ │ │ ├── main.cc │ │ │ └── pci_audio_drv │ │ │ └── target.mk │ │ ├── lib │ │ └── audio │ │ │ ├── bsd.h │ │ │ ├── bsd_emul.c │ │ │ ├── bsd_emul_pci.c │ │ │ ├── driver.cc │ │ │ ├── dummies.cc │ │ │ ├── include │ │ │ ├── bsd_emul.h │ │ │ ├── extern_c_begin.h │ │ │ ├── extern_c_end.h │ │ │ ├── list.h │ │ │ ├── scheduler.h │ │ │ └── spec │ │ │ │ ├── x86_32 │ │ │ │ └── platform │ │ │ │ │ └── platform.h │ │ │ │ └── x86_64 │ │ │ │ └── platform │ │ │ │ └── platform.h │ │ │ ├── irq.cc │ │ │ ├── mem.cc │ │ │ ├── misc.cc │ │ │ ├── pci.cc │ │ │ ├── scheduler.cc │ │ │ ├── spec │ │ │ ├── x86_32 │ │ │ │ └── setjmp.S │ │ │ └── x86_64 │ │ │ │ └── setjmp.S │ │ │ └── timer.cc │ │ └── test │ │ └── audio_in │ │ ├── README │ │ ├── main.cc │ │ └── target.mk ├── dde_ipxe │ ├── README │ ├── include │ │ └── dde_ipxe │ │ │ ├── nic.h │ │ │ └── support.h │ ├── lib │ │ └── mk │ │ │ ├── dde_ipxe_nic.inc │ │ │ └── spec │ │ │ ├── x86_32 │ │ │ └── dde_ipxe_nic.mk │ │ │ └── x86_64 │ │ │ └── dde_ipxe_nic.mk │ ├── patches │ │ ├── dde_ipxe.patch │ │ ├── intel.patch │ │ ├── intel_update.patch │ │ ├── realtek.patch │ │ └── tg3.patch │ ├── ports │ │ ├── dde_ipxe.hash │ │ └── dde_ipxe.port │ ├── recipes │ │ ├── pkg │ │ │ └── ipxe_nic_drv │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ └── src │ │ │ └── ipxe_nic_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ └── src │ │ ├── drivers │ │ └── nic │ │ │ ├── main.cc │ │ │ └── target.mk │ │ └── lib │ │ └── dde_ipxe │ │ ├── dde.c │ │ ├── dde_support.cc │ │ ├── dummies.c │ │ ├── include │ │ ├── bits │ │ │ ├── byteswap.h │ │ │ ├── compiler.h │ │ │ ├── cpu.h │ │ │ ├── eltorito.h │ │ │ ├── endian.h │ │ │ ├── errfile.h │ │ │ ├── io.h │ │ │ ├── nap.h │ │ │ ├── pci_io.h │ │ │ ├── smbios.h │ │ │ ├── stdint.h │ │ │ ├── string.h │ │ │ ├── timer.h │ │ │ ├── uaccess.h │ │ │ └── umalloc.h │ │ ├── config │ │ │ └── local │ │ │ │ ├── console.h │ │ │ │ ├── general.h │ │ │ │ ├── ioapi.h │ │ │ │ ├── nap.h │ │ │ │ ├── serial.h │ │ │ │ ├── timer.h │ │ │ │ └── umalloc.h │ │ ├── dde_support.h │ │ └── env_dde_kit.h │ │ ├── local.h │ │ └── nic.c ├── dde_linux │ ├── README │ ├── fec.list │ ├── include │ │ ├── lxip │ │ │ └── lxip.h │ │ └── wifi │ │ │ ├── ctrl.h │ │ │ ├── rfkill.h │ │ │ └── socket_call.h │ ├── lib │ │ ├── import │ │ │ ├── import-fec_nic_include.mk │ │ │ ├── import-libnl.mk │ │ │ ├── import-libnl_include.mk │ │ │ ├── import-lx_emul.mk │ │ │ ├── import-lx_emul_common.inc │ │ │ ├── import-lxip_include.mk │ │ │ ├── import-usb_arch_include.mk │ │ │ ├── import-usb_hid_include.mk │ │ │ ├── import-usb_host_include.mk │ │ │ ├── import-usb_modem_include.mk │ │ │ └── import-usb_net_include.mk │ │ └── mk │ │ │ ├── fec_nic_include.mk │ │ │ ├── libnl.inc │ │ │ ├── libnl_include.mk │ │ │ ├── lx_emul.mk │ │ │ ├── lxip.mk │ │ │ ├── lxip_include.mk │ │ │ ├── spec │ │ │ ├── arm │ │ │ │ └── lx_kit_setjmp.mk │ │ │ ├── arm_64 │ │ │ │ ├── lx_kit_setjmp.mk │ │ │ │ ├── virt_linux_generated.mk │ │ │ │ └── wireguard.mk │ │ │ ├── x86 │ │ │ │ ├── wpa_driver_nl80211.mk │ │ │ │ └── wpa_supplicant.mk │ │ │ ├── x86_32 │ │ │ │ ├── libnl.mk │ │ │ │ └── lx_kit_setjmp.mk │ │ │ └── x86_64 │ │ │ │ ├── libnl.mk │ │ │ │ ├── lx_kit_setjmp.mk │ │ │ │ ├── virt_linux_generated.mk │ │ │ │ └── wireguard.mk │ │ │ ├── usb_hid_include.mk │ │ │ ├── usb_host_include.mk │ │ │ ├── usb_modem_include.mk │ │ │ ├── usb_net_include.mk │ │ │ ├── vfs_lxip.mk │ │ │ ├── virt_linux_generated.inc │ │ │ └── wireguard.inc │ ├── lxip.list │ ├── patches │ │ ├── fec_ndev_owner.patch │ │ ├── fec_skbuff_cast.patch │ │ ├── fec_tx_bounce_dma.patch │ │ ├── fec_tx_sync_dma_write.patch │ │ ├── libnl.patch │ │ ├── lxip_icmp.patch │ │ ├── lxip_ip_config.patch │ │ ├── lxip_log2.patch │ │ ├── lxip_netlink.patch │ │ ├── lxip_request_sock.patch │ │ ├── lxip_sk_wq.patch │ │ ├── lxip_skbuff_cast.patch │ │ ├── usb_hid_evdev.patch │ │ ├── usb_hid_hid.patch │ │ ├── usb_hid_input.patch │ │ ├── usb_hid_usbhid.patch │ │ ├── usb_hid_wacom_sys.patch │ │ ├── usb_host_dwc_otg.patch │ │ ├── usb_host_isoc_bei.patch │ │ ├── usb_host_mem.patch │ │ ├── usb_host_omap.patch │ │ ├── usb_host_update_event_ring.patch │ │ ├── usb_modem_skbuff_cast.patch │ │ ├── usb_net_skbuff_cast.patch │ │ └── wpa_supplicant.patch │ ├── ports │ │ ├── dde_linux.hash │ │ ├── dde_linux.port │ │ ├── libnl.hash │ │ ├── libnl.port │ │ ├── linux-firmware.hash │ │ ├── linux-firmware.port │ │ ├── linux.hash │ │ ├── linux.port │ │ ├── wpa_supplicant.hash │ │ └── wpa_supplicant.port │ ├── recipes │ │ ├── pkg │ │ │ └── usb_modem_drv │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ ├── raw │ │ │ └── wifi_firmware │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ └── src │ │ │ ├── fec_nic_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── legacy_usb_host_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── usb_hid_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── usb_modem_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── usb_net_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ └── vfs_lxip │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ ├── run │ │ ├── nic_router_uplinks.run │ │ ├── usb_hid_raw.run │ │ ├── usb_hid_reconnect.run │ │ ├── usb_net.run │ │ ├── usb_terminal.run │ │ ├── vfs_cfg.run │ │ ├── vfs_lxip.inc │ │ ├── wg_fetchurl.run │ │ ├── wg_lighttpd.run │ │ ├── wg_ping_inwards.run │ │ ├── wg_ping_outwards.run │ │ └── wg_qemu_tap_preamble.inc │ ├── src │ │ ├── app │ │ │ └── wireguard │ │ │ │ ├── README │ │ │ │ ├── arp_cache.cc │ │ │ │ ├── arp_cache.h │ │ │ │ ├── arp_waiter.cc │ │ │ │ ├── arp_waiter.h │ │ │ │ ├── base64.cc │ │ │ │ ├── base64.h │ │ │ │ ├── config_model.cc │ │ │ │ ├── config_model.h │ │ │ │ ├── dhcp.h │ │ │ │ ├── dhcp_client.cc │ │ │ │ ├── dhcp_client.h │ │ │ │ ├── dummies.c │ │ │ │ ├── genode_c_api │ │ │ │ ├── wireguard.c │ │ │ │ └── wireguard.h │ │ │ │ ├── ipv4_address_prefix.cc │ │ │ │ ├── ipv4_address_prefix.h │ │ │ │ ├── ipv4_config.cc │ │ │ │ ├── ipv4_config.h │ │ │ │ ├── irq.cc │ │ │ │ ├── list.h │ │ │ │ ├── lx_emul.c │ │ │ │ ├── lx_emul.h │ │ │ │ ├── lx_emul │ │ │ │ ├── alloc.cc │ │ │ │ └── shadow │ │ │ │ │ └── arch │ │ │ │ │ └── arm64 │ │ │ │ │ └── kernel │ │ │ │ │ └── cpufeature.c │ │ │ │ ├── lx_kit │ │ │ │ ├── device.h │ │ │ │ └── memory.cc │ │ │ │ ├── main.cc │ │ │ │ ├── nic_connection.cc │ │ │ │ ├── nic_connection.h │ │ │ │ ├── pointer.h │ │ │ │ ├── spec │ │ │ │ ├── arm_64 │ │ │ │ │ ├── dummies_arch.c │ │ │ │ │ ├── generated_dummies.c │ │ │ │ │ ├── genode_c_api_arch.c │ │ │ │ │ ├── lx_emul │ │ │ │ │ │ └── initcall_order.h │ │ │ │ │ ├── source.list │ │ │ │ │ └── target.mk │ │ │ │ └── x86_64 │ │ │ │ │ ├── dummies_arch.c │ │ │ │ │ ├── generated_dummies.c │ │ │ │ │ ├── genode_c_api_arch.c │ │ │ │ │ ├── lx_emul │ │ │ │ │ └── initcall_order.h │ │ │ │ │ ├── source.list │ │ │ │ │ └── target.mk │ │ │ │ ├── target.inc │ │ │ │ ├── uplink_connection.cc │ │ │ │ └── uplink_connection.h │ │ ├── drivers │ │ │ ├── nic │ │ │ │ ├── fec │ │ │ │ │ ├── dummy.c │ │ │ │ │ ├── lx_emul.cc │ │ │ │ │ ├── lx_emul.h │ │ │ │ │ ├── lxc.c │ │ │ │ │ ├── lxc.h │ │ │ │ │ ├── main.cc │ │ │ │ │ ├── spec │ │ │ │ │ │ ├── arm_64 │ │ │ │ │ │ │ └── target.mk │ │ │ │ │ │ └── arm_v7 │ │ │ │ │ │ │ └── target.mk │ │ │ │ │ ├── target.inc │ │ │ │ │ ├── uplink_client.cc │ │ │ │ │ └── uplink_client.h │ │ │ │ ├── linux_network_session_base.cc │ │ │ │ └── linux_network_session_base.h │ │ │ ├── usb_hid │ │ │ │ ├── README │ │ │ │ ├── driver.h │ │ │ │ ├── dummies.c │ │ │ │ ├── evdev.cc │ │ │ │ ├── led_state.h │ │ │ │ ├── lx_emul.cc │ │ │ │ ├── lx_emul.h │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── usb_host │ │ │ │ ├── README │ │ │ │ ├── dummies.c │ │ │ │ ├── lx_emul.cc │ │ │ │ ├── lx_emul.h │ │ │ │ ├── main.cc │ │ │ │ ├── platform.h │ │ │ │ ├── raw.cc │ │ │ │ ├── raw.h │ │ │ │ ├── raw_driver.c │ │ │ │ ├── signal.h │ │ │ │ ├── spec │ │ │ │ │ ├── arm │ │ │ │ │ │ └── platform.cc │ │ │ │ │ ├── imx6q_sabrelite │ │ │ │ │ │ ├── platform.cc │ │ │ │ │ │ └── target.mk │ │ │ │ │ ├── rpi │ │ │ │ │ │ ├── platform.cc │ │ │ │ │ │ └── target.mk │ │ │ │ │ ├── x86 │ │ │ │ │ │ ├── platform.cc │ │ │ │ │ │ └── target.inc │ │ │ │ │ ├── x86_32 │ │ │ │ │ │ └── target.mk │ │ │ │ │ └── x86_64 │ │ │ │ │ │ └── target.mk │ │ │ │ └── target.inc │ │ │ ├── usb_modem │ │ │ │ ├── README │ │ │ │ ├── driver.h │ │ │ │ ├── dummies.c │ │ │ │ ├── fec_nic.cc │ │ │ │ ├── fec_nic.h │ │ │ │ ├── lx_emul.cc │ │ │ │ ├── lx_emul.h │ │ │ │ ├── lxc.c │ │ │ │ ├── lxc.h │ │ │ │ ├── main.cc │ │ │ │ ├── target.mk │ │ │ │ ├── terminal.cc │ │ │ │ ├── terminal.h │ │ │ │ ├── uplink_client.cc │ │ │ │ └── uplink_client.h │ │ │ └── usb_net │ │ │ │ ├── README │ │ │ │ ├── driver.h │ │ │ │ ├── dummies.c │ │ │ │ ├── lx_emul.cc │ │ │ │ ├── lx_emul.h │ │ │ │ ├── lxc.c │ │ │ │ ├── lxc.h │ │ │ │ ├── main.cc │ │ │ │ ├── target.mk │ │ │ │ ├── uplink_client.cc │ │ │ │ └── uplink_client.h │ │ ├── include │ │ │ ├── legacy │ │ │ │ ├── lx_emul │ │ │ │ │ ├── atomic.h │ │ │ │ │ ├── bitops.h │ │ │ │ │ ├── bug.h │ │ │ │ │ ├── byteorder.h │ │ │ │ │ ├── compiler.h │ │ │ │ │ ├── completion.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── extern_c_begin.h │ │ │ │ │ ├── extern_c_end.h │ │ │ │ │ ├── gfp.h │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── completion.h │ │ │ │ │ │ ├── delay.h │ │ │ │ │ │ ├── gfp.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── kernel.h │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ ├── pci.h │ │ │ │ │ │ ├── pci_resource.h │ │ │ │ │ │ ├── sched.h │ │ │ │ │ │ ├── slab.h │ │ │ │ │ │ ├── spinlock.h │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ ├── usb.h │ │ │ │ │ │ ├── wait.h │ │ │ │ │ │ └── work.h │ │ │ │ │ ├── ioport.h │ │ │ │ │ ├── irq.h │ │ │ │ │ ├── jiffies.h │ │ │ │ │ ├── kernel.h │ │ │ │ │ ├── kobject.h │ │ │ │ │ ├── list.h │ │ │ │ │ ├── mmio.h │ │ │ │ │ ├── module.h │ │ │ │ │ ├── mutex.h │ │ │ │ │ ├── pci.h │ │ │ │ │ ├── pm.h │ │ │ │ │ ├── printf.h │ │ │ │ │ ├── scatterlist.h │ │ │ │ │ ├── semaphore.h │ │ │ │ │ ├── spinlock.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── timer.h │ │ │ │ │ ├── types.h │ │ │ │ │ └── work.h │ │ │ │ └── lx_kit │ │ │ │ │ ├── addr_to_page_mapping.h │ │ │ │ │ ├── backend_alloc.h │ │ │ │ │ ├── env.h │ │ │ │ │ ├── internal │ │ │ │ │ ├── io_port.h │ │ │ │ │ ├── list.h │ │ │ │ │ ├── pci_dev.h │ │ │ │ │ ├── slab_alloc.h │ │ │ │ │ ├── slab_backend_alloc.h │ │ │ │ │ └── task.h │ │ │ │ │ ├── irq.h │ │ │ │ │ ├── malloc.h │ │ │ │ │ ├── mapped_io_mem_range.h │ │ │ │ │ ├── pci.h │ │ │ │ │ ├── pci_dev_registry.h │ │ │ │ │ ├── scheduler.h │ │ │ │ │ ├── timer.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── usb.h │ │ │ │ │ └── work.h │ │ │ ├── lx_emul │ │ │ │ ├── alloc.h │ │ │ │ ├── clock.h │ │ │ │ ├── debug.h │ │ │ │ ├── init.h │ │ │ │ ├── io_mem.h │ │ │ │ ├── io_port.h │ │ │ │ ├── irq.h │ │ │ │ ├── log.h │ │ │ │ ├── page_virt.h │ │ │ │ ├── pci_config_space.h │ │ │ │ ├── pin.h │ │ │ │ ├── random.h │ │ │ │ ├── shadow │ │ │ │ │ ├── arch │ │ │ │ │ │ ├── arm │ │ │ │ │ │ │ └── include │ │ │ │ │ │ │ │ └── asm │ │ │ │ │ │ │ │ ├── irqflags.h │ │ │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ │ │ ├── page.h │ │ │ │ │ │ │ │ ├── pgtable.h │ │ │ │ │ │ │ │ └── spinlock.h │ │ │ │ │ │ ├── arm64 │ │ │ │ │ │ │ └── include │ │ │ │ │ │ │ │ └── asm │ │ │ │ │ │ │ │ ├── irqflags.h │ │ │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ │ │ ├── page.h │ │ │ │ │ │ │ │ ├── pgtable.h │ │ │ │ │ │ │ │ └── spinlock.h │ │ │ │ │ │ └── x86 │ │ │ │ │ │ │ └── include │ │ │ │ │ │ │ ├── asm │ │ │ │ │ │ │ ├── atomic64_32.h │ │ │ │ │ │ │ ├── cpufeature.h │ │ │ │ │ │ │ ├── debugreg.h │ │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ │ ├── irqflags.h │ │ │ │ │ │ │ ├── memory_model.h │ │ │ │ │ │ │ ├── page.h │ │ │ │ │ │ │ ├── page_64.h │ │ │ │ │ │ │ ├── pgtable.h │ │ │ │ │ │ │ ├── sections.h │ │ │ │ │ │ │ ├── special_insns.h │ │ │ │ │ │ │ ├── spinlock.h │ │ │ │ │ │ │ ├── string_32.h │ │ │ │ │ │ │ ├── switch_to.h │ │ │ │ │ │ │ ├── sync_core.h │ │ │ │ │ │ │ ├── uaccess.h │ │ │ │ │ │ │ ├── uaccess_32.h │ │ │ │ │ │ │ └── uaccess_64.h │ │ │ │ │ │ │ └── linux │ │ │ │ │ │ │ ├── pci.h │ │ │ │ │ │ │ └── swapops.h │ │ │ │ │ └── include │ │ │ │ │ │ ├── asm │ │ │ │ │ │ ├── bug.h │ │ │ │ │ │ ├── current.h │ │ │ │ │ │ └── percpu.h │ │ │ │ │ │ └── linux │ │ │ │ │ │ ├── compiler-gcc.h │ │ │ │ │ │ ├── init.h │ │ │ │ │ │ ├── of.h │ │ │ │ │ │ └── pgtable.h │ │ │ │ ├── shared_dma_buffer.h │ │ │ │ ├── task.h │ │ │ │ ├── time.h │ │ │ │ └── usb.h │ │ │ ├── lx_kit │ │ │ │ ├── byte_range.h │ │ │ │ ├── console.h │ │ │ │ ├── device.h │ │ │ │ ├── dma_buffer.h │ │ │ │ ├── env.h │ │ │ │ ├── init.h │ │ │ │ ├── initial_config.h │ │ │ │ ├── map.h │ │ │ │ ├── memory.h │ │ │ │ ├── scheduler.h │ │ │ │ ├── task.h │ │ │ │ └── timeout.h │ │ │ ├── lx_user │ │ │ │ ├── init.h │ │ │ │ └── io.h │ │ │ └── spec │ │ │ │ ├── arm │ │ │ │ └── lx_kit │ │ │ │ │ └── arch_execute.h │ │ │ │ ├── arm_64 │ │ │ │ ├── legacy │ │ │ │ │ └── lx_emul │ │ │ │ │ │ └── barrier.h │ │ │ │ └── lx_kit │ │ │ │ │ └── arch_execute.h │ │ │ │ ├── arm_v6 │ │ │ │ └── legacy │ │ │ │ │ └── lx_emul │ │ │ │ │ └── barrier.h │ │ │ │ ├── arm_v7 │ │ │ │ └── legacy │ │ │ │ │ └── lx_emul │ │ │ │ │ └── barrier.h │ │ │ │ ├── x86 │ │ │ │ ├── legacy │ │ │ │ │ └── lx_emul │ │ │ │ │ │ └── barrier.h │ │ │ │ └── lx_kit │ │ │ │ │ └── platform_session │ │ │ │ │ ├── connection.h │ │ │ │ │ └── device.h │ │ │ │ ├── x86_32 │ │ │ │ └── lx_kit │ │ │ │ │ └── arch_execute.h │ │ │ │ └── x86_64 │ │ │ │ └── lx_kit │ │ │ │ └── arch_execute.h │ │ ├── lib │ │ │ ├── legacy │ │ │ │ └── lx_kit │ │ │ │ │ ├── bug.cc │ │ │ │ │ ├── env.cc │ │ │ │ │ ├── irq.cc │ │ │ │ │ ├── malloc.cc │ │ │ │ │ ├── mapped_io_mem_range.cc │ │ │ │ │ ├── pci.cc │ │ │ │ │ ├── printf.cc │ │ │ │ │ ├── scheduler.cc │ │ │ │ │ ├── timer.cc │ │ │ │ │ └── work.cc │ │ │ ├── libnl │ │ │ │ ├── if.cc │ │ │ │ ├── include │ │ │ │ │ ├── defs.h │ │ │ │ │ ├── endian.h │ │ │ │ │ ├── libnl_emul.h │ │ │ │ │ ├── linux │ │ │ │ │ │ ├── errqueue.h │ │ │ │ │ │ ├── filter.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── netpacket │ │ │ │ │ │ └── packet.h │ │ │ │ │ └── spec │ │ │ │ │ │ ├── 32bit │ │ │ │ │ │ └── platform │ │ │ │ │ │ │ └── types.h │ │ │ │ │ │ └── 64bit │ │ │ │ │ │ └── platform │ │ │ │ │ │ └── types.h │ │ │ │ ├── lxcc_emul.cc │ │ │ │ └── socket.cc │ │ │ ├── lx_emul │ │ │ │ ├── alloc.cc │ │ │ │ ├── clock.cc │ │ │ │ ├── clocksource.c │ │ │ │ ├── debug.cc │ │ │ │ ├── init.cc │ │ │ │ ├── io_mem.cc │ │ │ │ ├── io_port.cc │ │ │ │ ├── irq.cc │ │ │ │ ├── log.cc │ │ │ │ ├── page_virt.cc │ │ │ │ ├── pci_config_space.cc │ │ │ │ ├── pci_init.cc │ │ │ │ ├── pin.cc │ │ │ │ ├── random.cc │ │ │ │ ├── shadow │ │ │ │ │ ├── arch │ │ │ │ │ │ └── arm64 │ │ │ │ │ │ │ ├── kernel │ │ │ │ │ │ │ └── smp.c │ │ │ │ │ │ │ └── mm │ │ │ │ │ │ │ └── ioremap.c │ │ │ │ │ ├── drivers │ │ │ │ │ │ ├── base │ │ │ │ │ │ │ └── power │ │ │ │ │ │ │ │ ├── common.c │ │ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ │ │ └── runtime.c │ │ │ │ │ │ └── clk │ │ │ │ │ │ │ ├── clk.c │ │ │ │ │ │ │ └── clkdev.c │ │ │ │ │ ├── fs │ │ │ │ │ │ └── exec.c │ │ │ │ │ ├── kernel │ │ │ │ │ │ ├── cpu.c │ │ │ │ │ │ ├── dma │ │ │ │ │ │ │ └── mapping.c │ │ │ │ │ │ ├── exit.c │ │ │ │ │ │ ├── fork.c │ │ │ │ │ │ ├── irq │ │ │ │ │ │ │ └── spurious.c │ │ │ │ │ │ ├── locking │ │ │ │ │ │ │ └── spinlock.c │ │ │ │ │ │ ├── pid.c │ │ │ │ │ │ ├── printk │ │ │ │ │ │ │ └── printk.c │ │ │ │ │ │ ├── rcu │ │ │ │ │ │ │ ├── srcutree.c │ │ │ │ │ │ │ └── tree.c │ │ │ │ │ │ ├── sched │ │ │ │ │ │ │ ├── core.c │ │ │ │ │ │ │ └── sched.c │ │ │ │ │ │ ├── smp.c │ │ │ │ │ │ ├── softirq.c │ │ │ │ │ │ └── stop_machine.c │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── devres.c │ │ │ │ │ │ └── smp_processor_id.c │ │ │ │ │ └── mm │ │ │ │ │ │ ├── memblock.c │ │ │ │ │ │ ├── page_alloc.c │ │ │ │ │ │ ├── percpu.c │ │ │ │ │ │ ├── slab_common.c │ │ │ │ │ │ └── slub.c │ │ │ │ ├── shared_dma_buffer.cc │ │ │ │ ├── spec │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── irqchip.c │ │ │ │ │ │ └── start.c │ │ │ │ │ ├── x86 │ │ │ │ │ │ ├── irqchip.c │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ └── start.c │ │ │ │ │ └── x86_32 │ │ │ │ │ │ └── atomic64_32.c │ │ │ │ ├── start.c │ │ │ │ ├── task.cc │ │ │ │ ├── time.cc │ │ │ │ ├── usb.c │ │ │ │ └── virt_to_page.c │ │ │ ├── lx_kit │ │ │ │ ├── console.cc │ │ │ │ ├── device.cc │ │ │ │ ├── env.cc │ │ │ │ ├── init.cc │ │ │ │ ├── memory.cc │ │ │ │ ├── memory_dma.cc │ │ │ │ ├── memory_non_dma.cc │ │ │ │ ├── scheduler.cc │ │ │ │ ├── spec │ │ │ │ │ ├── arm │ │ │ │ │ │ └── setjmp.S │ │ │ │ │ ├── arm_64 │ │ │ │ │ │ └── setjmp.S │ │ │ │ │ ├── x86 │ │ │ │ │ │ └── platform.cc │ │ │ │ │ ├── x86_32 │ │ │ │ │ │ └── setjmp.S │ │ │ │ │ └── x86_64 │ │ │ │ │ │ └── setjmp.S │ │ │ │ ├── task.cc │ │ │ │ └── timeout.cc │ │ │ ├── lxip │ │ │ │ ├── driver.c │ │ │ │ ├── dummies.cc │ │ │ │ ├── dummies_c.c │ │ │ │ ├── include │ │ │ │ │ ├── linux │ │ │ │ │ │ ├── in.h │ │ │ │ │ │ ├── in6.h │ │ │ │ │ │ ├── ip.h │ │ │ │ │ │ ├── ipv6.h │ │ │ │ │ │ ├── module.h │ │ │ │ │ │ ├── netfilter_arp.h │ │ │ │ │ │ ├── netfilter_ipv4.h │ │ │ │ │ │ └── sockios.h │ │ │ │ │ ├── lx_emul.h │ │ │ │ │ ├── msghdr.h │ │ │ │ │ ├── net │ │ │ │ │ │ ├── fib_rules.h │ │ │ │ │ │ ├── gen_stats.h │ │ │ │ │ │ ├── inet_ecn.h │ │ │ │ │ │ └── xfrm.h │ │ │ │ │ └── nic.h │ │ │ │ ├── lx.h │ │ │ │ ├── lxc_emul.c │ │ │ │ ├── lxcc_emul.cc │ │ │ │ ├── nic_handler.cc │ │ │ │ ├── random.cc │ │ │ │ └── timer_handler.cc │ │ │ ├── vfs │ │ │ │ └── lxip │ │ │ │ │ ├── symbol.map │ │ │ │ │ ├── target.mk │ │ │ │ │ └── vfs.cc │ │ │ ├── wpa_driver_nl80211 │ │ │ │ ├── dummies.cc │ │ │ │ ├── include │ │ │ │ │ ├── lx_user_emul.h │ │ │ │ │ ├── net │ │ │ │ │ │ ├── if.h │ │ │ │ │ │ └── if_arp.h │ │ │ │ │ └── netpacket │ │ │ │ │ │ └── packet.h │ │ │ │ ├── ioctl.cc │ │ │ │ ├── rfkill_genode.cc │ │ │ │ └── symbol.map │ │ │ └── wpa_supplicant │ │ │ │ ├── ctrl_iface_genode.c │ │ │ │ ├── main.c │ │ │ │ └── symbol.map │ │ ├── server │ │ │ └── usb_terminal │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ ├── test │ │ │ └── vfs_lxip │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ └── virt_linux │ │ │ ├── README │ │ │ ├── arm_64 │ │ │ └── target.mk │ │ │ ├── target.inc │ │ │ ├── x86_32 │ │ │ └── target.mk │ │ │ └── x86_64 │ │ │ └── target.mk │ ├── usb.list │ ├── usb_hid.list │ ├── usb_host.list │ ├── usb_modem.list │ └── usb_net.list ├── dde_rump │ ├── README │ ├── lib │ │ ├── import │ │ │ └── import-rump.mk │ │ └── mk │ │ │ ├── rump.inc │ │ │ ├── rump_common.inc │ │ │ ├── rump_fs.mk │ │ │ ├── rump_include.inc │ │ │ ├── rump_prefix.inc │ │ │ ├── rump_tools.mk │ │ │ ├── spec │ │ │ ├── arm │ │ │ │ ├── rump.mk │ │ │ │ └── rump_include.mk │ │ │ ├── arm_64 │ │ │ │ ├── rump.mk │ │ │ │ └── rump_include.mk │ │ │ ├── x86_32 │ │ │ │ ├── rump.mk │ │ │ │ └── rump_include.mk │ │ │ └── x86_64 │ │ │ │ ├── rump.mk │ │ │ │ └── rump_include.mk │ │ │ └── vfs_rump.mk │ ├── patches │ │ ├── aarch64.patch │ │ ├── rump.patch │ │ └── sync.patch │ ├── ports │ │ ├── dde_rump.hash │ │ └── dde_rump.port │ ├── recipes │ │ └── src │ │ │ └── rump │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ ├── rump.list │ ├── run │ │ ├── fs_rom_update_ext2.run │ │ ├── libc_vfs_ext2.run │ │ ├── libc_vfs_fs_ext2.run │ │ ├── rump_ext2.run │ │ ├── rump_fat.run │ │ ├── rump_iso.run │ │ ├── vfs_stress_ext2.run │ │ └── vfs_stress_rump_fs.run │ └── src │ │ ├── include │ │ ├── rump │ │ │ ├── env.h │ │ │ └── timed_semaphore.h │ │ ├── rump_fs │ │ │ └── fs.h │ │ └── util │ │ │ ├── allocator_fap.h │ │ │ ├── hard_context.h │ │ │ └── random.h │ │ └── lib │ │ ├── rump │ │ ├── bootstrap.cc │ │ ├── dummies.cc │ │ ├── env.cc │ │ ├── hypercall.cc │ │ ├── io.cc │ │ ├── sched.h │ │ ├── spec │ │ │ └── arm_64 │ │ │ │ └── arm │ │ │ │ └── pic │ │ │ │ └── picvar.h │ │ ├── sync.cc │ │ └── sync_thread.c │ │ └── vfs │ │ └── rump │ │ ├── README │ │ ├── random.cc │ │ ├── target.mk │ │ └── vfs_rump.cc ├── demo │ ├── doc │ │ ├── demo.txt │ │ └── img │ │ │ ├── genode_logo.png │ │ │ ├── launchpad.png │ │ │ ├── liquid_fb.png │ │ │ ├── liquid_fb_small.png │ │ │ ├── setup.png │ │ │ ├── x-ray.png │ │ │ └── x-ray_small.png │ ├── include │ │ ├── launchpad │ │ │ └── launchpad.h │ │ ├── libpng_static │ │ │ ├── png.h │ │ │ ├── pngconf.h │ │ │ └── pngusr.h │ │ ├── libz_static │ │ │ ├── zconf.h │ │ │ └── zlib.h │ │ ├── mini_c │ │ │ ├── errno.h │ │ │ ├── init.h │ │ │ ├── limits.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ └── sys │ │ │ │ └── types.h │ │ ├── scout │ │ │ ├── canvas.h │ │ │ ├── element.h │ │ │ ├── event.h │ │ │ ├── fader.h │ │ │ ├── graphics_backend.h │ │ │ ├── graphics_backend_impl.h │ │ │ ├── misc_math.h │ │ │ ├── parent_element.h │ │ │ ├── platform.h │ │ │ ├── string.h │ │ │ ├── texture_allocator.h │ │ │ ├── tick.h │ │ │ ├── types.h │ │ │ ├── user_state.h │ │ │ └── window.h │ │ ├── scout_gfx │ │ │ ├── horizontal_shadow_painter.h │ │ │ ├── icon_painter.h │ │ │ ├── random.h │ │ │ ├── refracted_icon_painter.h │ │ │ └── sky_texture_painter.h │ │ └── util │ │ │ └── lazy_value.h │ ├── lib │ │ ├── import │ │ │ ├── import-libpng_static.mk │ │ │ ├── import-libz_static.mk │ │ │ └── import-mini_c.mk │ │ └── mk │ │ │ ├── launchpad.mk │ │ │ ├── libpng_static.mk │ │ │ ├── libz_static.mk │ │ │ ├── mini_c.mk │ │ │ ├── scout_gfx.mk │ │ │ └── scout_widgets.mk │ ├── recipes │ │ ├── api │ │ │ └── scout_gfx │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ └── src │ │ │ └── demo │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ └── src │ │ ├── app │ │ ├── launchpad │ │ │ ├── README │ │ │ ├── child_entry.h │ │ │ ├── launch_entry.h │ │ │ ├── launcher.cc │ │ │ ├── launchpad_window.cc │ │ │ ├── launchpad_window.h │ │ │ ├── loadbar.h │ │ │ ├── main.cc │ │ │ ├── section.h │ │ │ ├── status_entry.h │ │ │ └── target.mk │ │ └── scout │ │ │ ├── about.cc │ │ │ ├── browser.h │ │ │ ├── browser_window.cc │ │ │ ├── browser_window.h │ │ │ ├── config.h │ │ │ ├── data │ │ │ ├── about.rgba │ │ │ ├── backward.rgba │ │ │ ├── closed_icon.rgba │ │ │ ├── cover.rgba │ │ │ ├── downarrow.rgba │ │ │ ├── droidsansb10.tff │ │ │ ├── forward.rgba │ │ │ ├── home.rgba │ │ │ ├── index.rgba │ │ │ ├── ior.map │ │ │ ├── kill_icon.rgba │ │ │ ├── loadbar.rgba │ │ │ ├── mono16.tff │ │ │ ├── nav_next.rgba │ │ │ ├── nav_prev.rgba │ │ │ ├── opened_icon.rgba │ │ │ ├── pointer.rgba │ │ │ ├── redbar.rgba │ │ │ ├── sizer.rgba │ │ │ ├── slider.rgba │ │ │ ├── test.png │ │ │ ├── titlebar.rgba │ │ │ ├── uparrow.rgba │ │ │ ├── vera16.tff │ │ │ ├── vera18.tff │ │ │ ├── vera20.tff │ │ │ ├── vera22.tff │ │ │ ├── vera24.tff │ │ │ ├── verabi10.tff │ │ │ ├── verai16.tff │ │ │ └── whitebar.rgba │ │ │ ├── doc.cc │ │ │ ├── elements.cc │ │ │ ├── elements.h │ │ │ ├── fade_icon.h │ │ │ ├── history.h │ │ │ ├── launcher.cc │ │ │ ├── launcher_config.h │ │ │ ├── main.cc │ │ │ ├── navbar.cc │ │ │ ├── png_image.cc │ │ │ ├── refracted_icon.h │ │ │ ├── scrollbar.cc │ │ │ ├── scrollbar.h │ │ │ ├── sky_texture.h │ │ │ ├── styles.h │ │ │ ├── target.mk │ │ │ ├── tick.cc │ │ │ ├── titlebar.h │ │ │ ├── widgets.cc │ │ │ └── widgets.h │ │ ├── lib │ │ ├── launchpad │ │ │ └── launchpad.cc │ │ ├── libpng │ │ │ ├── contrib │ │ │ │ ├── png.c │ │ │ │ ├── pngerror.c │ │ │ │ ├── pngget.c │ │ │ │ ├── pngmem.c │ │ │ │ ├── pngpread.c │ │ │ │ ├── pngread.c │ │ │ │ ├── pngrio.c │ │ │ │ ├── pngrtran.c │ │ │ │ ├── pngrutil.c │ │ │ │ ├── pngset.c │ │ │ │ ├── pngtrans.c │ │ │ │ ├── pngwio.c │ │ │ │ ├── pngwrite.c │ │ │ │ ├── pngwtran.c │ │ │ │ └── pngwutil.c │ │ │ ├── main.cc │ │ │ ├── stdio.h │ │ │ └── target.mk │ │ ├── libz │ │ │ └── contrib │ │ │ │ ├── adler32.c │ │ │ │ ├── compress.c │ │ │ │ ├── crc32.c │ │ │ │ ├── crc32.h │ │ │ │ ├── deflate.c │ │ │ │ ├── deflate.h │ │ │ │ ├── gzio.c │ │ │ │ ├── infback.c │ │ │ │ ├── inffast.c │ │ │ │ ├── inffast.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inflate.h │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── trees.c │ │ │ │ ├── trees.h │ │ │ │ ├── uncompr.c │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ ├── mini_c │ │ │ ├── README │ │ │ ├── abort.cc │ │ │ ├── atol.cc │ │ │ ├── malloc_free.cc │ │ │ ├── memcmp.cc │ │ │ ├── memset.cc │ │ │ ├── mini_c.cc │ │ │ ├── snprintf.cc │ │ │ ├── strlen.cc │ │ │ ├── strtod.cc │ │ │ ├── strtol.cc │ │ │ └── vsnprintf.cc │ │ └── scout_gfx │ │ │ └── sky_texture_painter.cc │ │ └── server │ │ ├── liquid_framebuffer │ │ ├── README │ │ ├── framebuffer_window.h │ │ ├── main.cc │ │ ├── services.cc │ │ ├── services.h │ │ └── target.mk │ │ └── nitlog │ │ ├── main.cc │ │ ├── mono.tff │ │ └── target.mk ├── gems │ ├── README │ ├── include │ │ ├── aes_cbc_4k │ │ │ └── aes_cbc_4k.h │ │ ├── cbe │ │ │ ├── check │ │ │ │ └── library.h │ │ │ ├── crypto │ │ │ │ └── interface.h │ │ │ ├── dump │ │ │ │ ├── configuration.h │ │ │ │ └── library.h │ │ │ ├── init │ │ │ │ ├── configuration.h │ │ │ │ └── library.h │ │ │ ├── library.h │ │ │ ├── spark_object.h │ │ │ ├── types.h │ │ │ └── vfs │ │ │ │ ├── io_job.h │ │ │ │ └── trust_anchor_vfs.h │ │ ├── depot │ │ │ └── archive.h │ │ ├── gems │ │ │ ├── animated_geometry.h │ │ │ ├── animator.h │ │ │ ├── cached_font.h │ │ │ ├── chunky_texture.h │ │ │ ├── color_hsv.h │ │ │ ├── dither_painter.h │ │ │ ├── file.h │ │ │ ├── gui_buffer.h │ │ │ ├── local_reporter.h │ │ │ ├── lru_cache.h │ │ │ ├── png_image.h │ │ │ ├── texture_utils.h │ │ │ ├── ttf_font.h │ │ │ ├── vfs_font.h │ │ │ ├── wrapped_gui_session.h │ │ │ └── xml_anchor.h │ │ ├── nano3d │ │ │ ├── cube_shape.h │ │ │ ├── dodecahedron_shape.h │ │ │ ├── scene.h │ │ │ ├── sincos_frac16.h │ │ │ ├── sqrt.h │ │ │ └── vertex_array.h │ │ └── polygon_gfx │ │ │ ├── clipping.h │ │ │ ├── interpolate_rgb565.h │ │ │ ├── interpolate_rgba.h │ │ │ ├── line_painter.h │ │ │ ├── polygon_painter_base.h │ │ │ ├── shaded_polygon_painter.h │ │ │ ├── textured_polygon_painter.h │ │ │ └── texturize_rgba.h │ ├── lib │ │ ├── import │ │ │ ├── import-aes_cbc_4k.mk │ │ │ ├── import-cbe.mk │ │ │ ├── import-cbe_check.mk │ │ │ ├── import-cbe_common.mk │ │ │ ├── import-cbe_dump.mk │ │ │ ├── import-cbe_init.mk │ │ │ ├── import-sha256_4k.mk │ │ │ └── import-vfs_gpu.mk │ │ ├── mk │ │ │ ├── aes_cbc_4k.mk │ │ │ ├── cpu_sampler_platform-generic.mk │ │ │ ├── cpu_sampler_platform.mk │ │ │ ├── file.mk │ │ │ ├── generate_ada_main_pkg.inc │ │ │ ├── sha256_4k.mk │ │ │ ├── spec │ │ │ │ ├── foc │ │ │ │ │ └── cpu_sampler_platform-foc.mk │ │ │ │ ├── nova │ │ │ │ │ └── cpu_sampler_platform-nova.mk │ │ │ │ └── x86_64 │ │ │ │ │ ├── cbe.mk │ │ │ │ │ ├── cbe_check.mk │ │ │ │ │ ├── cbe_check_cxx.mk │ │ │ │ │ ├── cbe_common.mk │ │ │ │ │ ├── cbe_cxx.mk │ │ │ │ │ ├── cbe_cxx_common.mk │ │ │ │ │ ├── cbe_dump.mk │ │ │ │ │ ├── cbe_dump_cxx.mk │ │ │ │ │ ├── cbe_init.mk │ │ │ │ │ ├── cbe_init_cxx.mk │ │ │ │ │ ├── vfs_cbe.mk │ │ │ │ │ ├── vfs_cbe_crypto_aes_cbc.mk │ │ │ │ │ ├── vfs_cbe_crypto_memcopy.mk │ │ │ │ │ └── vfs_cbe_trust_anchor.mk │ │ │ ├── ttf_font.mk │ │ │ ├── vfs_audit.mk │ │ │ ├── vfs_gpu.mk │ │ │ ├── vfs_import.mk │ │ │ ├── vfs_pipe.mk │ │ │ ├── vfs_trace.mk │ │ │ └── vfs_ttf.mk │ │ └── symbols │ │ │ ├── cbe_check_cxx │ │ │ ├── cbe_cxx │ │ │ ├── cbe_dump_cxx │ │ │ ├── cbe_init_cxx │ │ │ ├── cpu_sampler_platform │ │ │ └── vfs_gpu │ ├── ports │ │ ├── cbe.hash │ │ └── cbe.port │ ├── recipes │ │ ├── api │ │ │ ├── aes_cbc_4k │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── cbe │ │ │ │ ├── content.mk │ │ │ │ ├── hash │ │ │ │ └── used_apis │ │ │ ├── gems │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── nano3d │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── polygon_gfx │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ └── vfs_gpu │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ ├── pkg │ │ │ ├── backdrop │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── cbe_check │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── cbe_demo │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ └── hash │ │ │ ├── cbe_fs │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── cbe_init │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── cbe_shell │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── cbe_ta_fs │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── cbe_ta_vfs │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── cbe_vbox5-nova │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── cbe_vfs │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── cbe_vm_fs │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── depot_download │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ └── hash │ │ │ ├── download_coreplus │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── drivers_managed-pc │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ └── hash │ │ │ ├── drivers_nic-pc │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ └── hash │ │ │ ├── file_vault │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── fonts_fs │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── motif_decorator │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── motif_wm │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── nano3d │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── sculpt │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ └── hash │ │ │ ├── sculpt_distribution-pc │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ └── hash │ │ │ ├── sculpt_distribution │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ └── hash │ │ │ ├── sticks_blue_backdrop │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── terminal │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-depot_query_index │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-fs_tool │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-libc_vfs_audit │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── themed_decorator │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── themed_wm │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── touch_keyboard │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── trace_fs │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── window_layouter │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ └── wm │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ ├── raw │ │ │ ├── depot_download │ │ │ │ ├── content.mk │ │ │ │ ├── depot_download.config │ │ │ │ └── hash │ │ │ ├── download_coreplus │ │ │ │ ├── content.mk │ │ │ │ ├── disk0.vmdk │ │ │ │ ├── hash │ │ │ │ ├── init.config │ │ │ │ └── machine.vbox │ │ │ ├── drivers_managed-pc │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── drivers_nic-pc │ │ │ │ ├── content.mk │ │ │ │ ├── drivers.config │ │ │ │ └── hash │ │ │ ├── fonts_fs │ │ │ │ ├── content.mk │ │ │ │ ├── fonts_fs.config │ │ │ │ └── hash │ │ │ ├── genode_bg │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── motif_wm │ │ │ │ ├── content.mk │ │ │ │ ├── decorator_init.config │ │ │ │ ├── hash │ │ │ │ ├── layouter.config │ │ │ │ └── wm.config │ │ │ ├── sticks_blue_backdrop │ │ │ │ ├── backdrop.config │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── terminal │ │ │ │ ├── content.mk │ │ │ │ ├── hash │ │ │ │ └── terminal.config │ │ │ ├── themed_wm │ │ │ │ ├── content.mk │ │ │ │ ├── decorator_init.config │ │ │ │ └── hash │ │ │ ├── touch_keyboard │ │ │ │ ├── content.mk │ │ │ │ ├── hash │ │ │ │ └── touch_keyboard_layout.config │ │ │ ├── window_layouter │ │ │ │ ├── content.mk │ │ │ │ ├── hash │ │ │ │ └── window_layouter.config │ │ │ └── wm │ │ │ │ ├── content.mk │ │ │ │ ├── hash │ │ │ │ └── wm.config │ │ └── src │ │ │ ├── backdrop │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── cbe │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── cpu_load_display │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── decorator │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── depot_deploy │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── depot_download_manager │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── depot_query │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── driver_manager │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── file_terminal │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── file_vault │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── fs_query │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── fs_tool │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── gpt_write │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── gui_fader │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── menu_view │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── mixer_gui_qt │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── nano3d │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── sculpt_manager │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── terminal │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-tiled_wm │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── text_area │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── themed_decorator │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── touch_keyboard │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── vfs_audit │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── vfs_gpu │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── vfs_import │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── vfs_pipe │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── vfs_trace │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── vfs_ttf │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── window_layouter │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ └── wm │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ ├── run │ │ ├── aes_cbc_4k.run │ │ ├── cbe_tester.run │ │ ├── cpu_load_display.run │ │ ├── cpu_sampler.run │ │ ├── decorator.run │ │ ├── decorator_stress.run │ │ ├── depot_autopilot.run │ │ ├── depot_deploy.run │ │ ├── depot_download.run │ │ ├── depot_query.run │ │ ├── driver_manager.run │ │ ├── file_vault.run │ │ ├── fs_query.run │ │ ├── gpt_write.run │ │ ├── gui_fader.run │ │ ├── leitzentrale.run │ │ ├── menu_view.run │ │ ├── mixer_gui_qt_test.run │ │ ├── nano3d.run │ │ ├── sculpt.run │ │ ├── sculpt │ │ │ ├── drop_shadow.png │ │ │ ├── index │ │ │ └── vimrc │ │ ├── sculpt_test.run │ │ ├── tcp_terminal.run │ │ ├── terminal_echo.run │ │ ├── terminal_log.run │ │ ├── text_area.run │ │ ├── text_painter.run │ │ ├── tiled_wm.run │ │ ├── vfs_cbe.run │ │ ├── vfs_cbe.sh │ │ ├── vfs_cbe_init.run │ │ ├── vfs_import.run │ │ └── wm.run │ ├── sculpt │ │ ├── clipboard │ │ │ └── default │ │ ├── default-linux.sculpt │ │ ├── default-pc.sculpt │ │ ├── deploy │ │ │ ├── default │ │ │ └── example │ │ ├── depot │ │ │ ├── alex-ab │ │ │ │ ├── download │ │ │ │ └── pubkey │ │ │ ├── blarson │ │ │ │ ├── download │ │ │ │ └── pubkey │ │ │ ├── chelmuth │ │ │ │ ├── download │ │ │ │ └── pubkey │ │ │ ├── cnuke │ │ │ │ ├── download │ │ │ │ └── pubkey │ │ │ ├── cproc │ │ │ │ ├── download │ │ │ │ └── pubkey │ │ │ ├── genodelabs │ │ │ │ ├── download │ │ │ │ └── pubkey │ │ │ ├── jschlatow │ │ │ │ ├── download │ │ │ │ └── pubkey │ │ │ ├── mstein │ │ │ │ ├── download │ │ │ │ └── pubkey │ │ │ ├── nfeske │ │ │ │ ├── download │ │ │ │ └── pubkey │ │ │ ├── rite │ │ │ │ ├── download │ │ │ │ └── pubkey │ │ │ ├── skalk │ │ │ │ ├── download │ │ │ │ └── pubkey │ │ │ ├── ssumpf │ │ │ │ ├── download │ │ │ │ └── pubkey │ │ │ └── trimpim │ │ │ │ ├── download │ │ │ │ └── pubkey │ │ ├── drivers │ │ │ ├── linux │ │ │ └── pc │ │ ├── event_filter │ │ │ ├── default │ │ │ └── pc │ │ ├── fb_drv │ │ │ └── default │ │ ├── fonts │ │ │ └── default │ │ ├── global_keys │ │ │ └── default │ │ ├── gpu_drv │ │ │ └── intel │ │ ├── launcher │ │ │ ├── nano3d │ │ │ ├── shared_fs │ │ │ ├── sticks_blue_backdrop │ │ │ ├── system_shell │ │ │ ├── touch_keyboard │ │ │ ├── trace_logger │ │ │ ├── usb_devices_rom │ │ │ └── vm_fs │ │ ├── leitzentrale │ │ │ └── default │ │ ├── nitpicker │ │ │ └── default │ │ ├── numlock_remap │ │ │ └── default │ │ ├── ram_fs │ │ │ ├── default │ │ │ └── depot │ │ ├── runtime │ │ │ └── default │ │ ├── system │ │ │ ├── default │ │ │ └── pc │ │ ├── usb │ │ │ └── default │ │ └── wifi │ │ │ └── default │ └── src │ │ ├── app │ │ ├── backdrop │ │ │ ├── README │ │ │ ├── genode_logo.png │ │ │ ├── grid.png │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── cbe_check │ │ │ ├── README │ │ │ ├── config.xsd │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── cbe_dump │ │ │ ├── README │ │ │ ├── config.xsd │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── cbe_init │ │ │ ├── README │ │ │ ├── config.xsd │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── cbe_init_trust_anchor │ │ │ ├── component.cc │ │ │ └── target.mk │ │ ├── cbe_tester │ │ │ ├── README │ │ │ ├── crypto.cc │ │ │ ├── crypto.h │ │ │ ├── main.cc │ │ │ ├── module_type.h │ │ │ ├── target.mk │ │ │ ├── trust_anchor.cc │ │ │ ├── trust_anchor.h │ │ │ ├── util.h │ │ │ ├── verbose_node.h │ │ │ ├── vfs_utilities.cc │ │ │ └── vfs_utilities.h │ │ ├── cpu_load_display │ │ │ ├── README │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── decorator │ │ │ ├── canvas.h │ │ │ ├── closer.rgba │ │ │ ├── config.h │ │ │ ├── default_font.cc │ │ │ ├── main.cc │ │ │ ├── maximize.rgba │ │ │ ├── minimize.rgba │ │ │ ├── target.mk │ │ │ ├── texture_by_id.cc │ │ │ ├── window.cc │ │ │ ├── window.h │ │ │ ├── window_element.h │ │ │ └── windowed.rgba │ │ ├── depot_autopilot │ │ │ ├── README │ │ │ ├── child.cc │ │ │ ├── child.h │ │ │ ├── children.h │ │ │ ├── config.xsd │ │ │ ├── list.h │ │ │ ├── main.cc │ │ │ ├── pointer.h │ │ │ └── target.mk │ │ ├── depot_deploy │ │ │ ├── child.h │ │ │ ├── children.h │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── depot_download_manager │ │ │ ├── gen_chroot.cc │ │ │ ├── gen_depot_query.cc │ │ │ ├── gen_extract.cc │ │ │ ├── gen_fetchurl.cc │ │ │ ├── gen_verify.cc │ │ │ ├── import.h │ │ │ ├── job.h │ │ │ ├── main.cc │ │ │ ├── target.mk │ │ │ ├── types.h │ │ │ └── xml.h │ │ ├── depot_query │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── driver_manager │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── file_vault │ │ │ ├── README │ │ │ ├── capacity.cc │ │ │ ├── capacity.h │ │ │ ├── child_exit_state.h │ │ │ ├── child_state.h │ │ │ ├── const_pointer.h │ │ │ ├── dynamic_array.h │ │ │ ├── gui_input_event_handler.h │ │ │ ├── gui_session_component.h │ │ │ ├── input.h │ │ │ ├── main.cc │ │ │ ├── menu_view_dialog.cc │ │ │ ├── menu_view_dialog.h │ │ │ ├── report_session_component.h │ │ │ ├── sandbox.h │ │ │ ├── snapshot.h │ │ │ ├── sync_to_cbe_vfs_init │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── target.mk │ │ │ ├── truncate_file │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── types.h │ │ │ └── utf8.h │ │ ├── fs_query │ │ │ ├── README │ │ │ ├── for_each_subdir_name.h │ │ │ ├── main.cc │ │ │ ├── sorted_for_each.h │ │ │ └── target.mk │ │ ├── fs_tool │ │ │ ├── README │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── gpt_write │ │ │ ├── README │ │ │ ├── gpt.h │ │ │ ├── main.cc │ │ │ ├── pmbr.h │ │ │ ├── target.mk │ │ │ ├── util.cc │ │ │ └── util.h │ │ ├── menu_view │ │ │ ├── animated_color.h │ │ │ ├── box_layout_widget.h │ │ │ ├── button_widget.h │ │ │ ├── cursor.h │ │ │ ├── depgraph_widget.h │ │ │ ├── float_widget.h │ │ │ ├── frame_widget.h │ │ │ ├── label_widget.h │ │ │ ├── main.cc │ │ │ ├── root_widget.h │ │ │ ├── scratch_surface.h │ │ │ ├── style_database.h │ │ │ ├── styles │ │ │ │ ├── button │ │ │ │ │ ├── back │ │ │ │ │ │ ├── default.png │ │ │ │ │ │ ├── hovered.png │ │ │ │ │ │ ├── hselected.png │ │ │ │ │ │ └── selected.png │ │ │ │ │ ├── checkbox │ │ │ │ │ │ ├── default.png │ │ │ │ │ │ ├── hovered.png │ │ │ │ │ │ ├── hselected.png │ │ │ │ │ │ └── selected.png │ │ │ │ │ ├── default │ │ │ │ │ │ ├── default.png │ │ │ │ │ │ ├── hovered.png │ │ │ │ │ │ ├── hselected.png │ │ │ │ │ │ └── selected.png │ │ │ │ │ ├── enter │ │ │ │ │ │ ├── default.png │ │ │ │ │ │ ├── hovered.png │ │ │ │ │ │ ├── hselected.png │ │ │ │ │ │ └── selected.png │ │ │ │ │ ├── invisible │ │ │ │ │ │ └── default.png │ │ │ │ │ ├── radio │ │ │ │ │ │ ├── default.png │ │ │ │ │ │ ├── hovered.png │ │ │ │ │ │ ├── hselected.png │ │ │ │ │ │ └── selected.png │ │ │ │ │ ├── subdued │ │ │ │ │ │ ├── default.png │ │ │ │ │ │ ├── hovered.png │ │ │ │ │ │ ├── hselected.png │ │ │ │ │ │ └── selected.png │ │ │ │ │ └── unimportant │ │ │ │ │ │ ├── default.png │ │ │ │ │ │ ├── hovered.png │ │ │ │ │ │ ├── hselected.png │ │ │ │ │ │ └── selected.png │ │ │ │ ├── cursor │ │ │ │ │ ├── default │ │ │ │ │ │ └── cursor.png │ │ │ │ │ └── hover │ │ │ │ │ │ └── cursor.png │ │ │ │ ├── frame │ │ │ │ │ ├── default │ │ │ │ │ │ └── background.png │ │ │ │ │ ├── full │ │ │ │ │ │ └── background.png │ │ │ │ │ ├── invisible │ │ │ │ │ │ └── background.png │ │ │ │ │ ├── transient │ │ │ │ │ │ └── background.png │ │ │ │ │ └── unimportant │ │ │ │ │ │ └── background.png │ │ │ │ └── label │ │ │ │ │ └── invisible │ │ │ │ │ └── style │ │ │ ├── target.mk │ │ │ ├── text_selection.h │ │ │ ├── types.h │ │ │ ├── widget.h │ │ │ └── widget_factory.h │ │ ├── mixer_gui_qt │ │ │ ├── main.cpp │ │ │ ├── main_window.cpp │ │ │ ├── main_window.h │ │ │ ├── mixer_gui_qt.pro │ │ │ ├── style.qrc │ │ │ ├── style.qss │ │ │ └── target.mk │ │ ├── nano3d │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── sculpt_manager │ │ │ ├── deploy.cc │ │ │ ├── deploy.h │ │ │ ├── depot_query.h │ │ │ ├── graph.cc │ │ │ ├── graph.h │ │ │ ├── gui.cc │ │ │ ├── gui.h │ │ │ ├── input_event_handler.h │ │ │ ├── keyboard_focus.h │ │ │ ├── main.cc │ │ │ ├── managed_config.h │ │ │ ├── menu_view.cc │ │ │ ├── menu_view.h │ │ │ ├── model │ │ │ │ ├── access_point.h │ │ │ │ ├── block_device.h │ │ │ │ ├── capacity.h │ │ │ │ ├── child_exit_state.h │ │ │ │ ├── child_state.h │ │ │ │ ├── component.h │ │ │ │ ├── discovery_state.h │ │ │ │ ├── download_queue.h │ │ │ │ ├── file_browser_state.h │ │ │ │ ├── file_operation_queue.h │ │ │ │ ├── launchers.h │ │ │ │ ├── nic_state.h │ │ │ │ ├── nic_target.h │ │ │ │ ├── partition.h │ │ │ │ ├── pci_info.h │ │ │ │ ├── popup.h │ │ │ │ ├── ram_fs_state.h │ │ │ │ ├── route.h │ │ │ │ ├── runtime_config.h │ │ │ │ ├── runtime_state.h │ │ │ │ ├── sculpt_version.h │ │ │ │ ├── service.h │ │ │ │ ├── settings.h │ │ │ │ ├── storage_device.h │ │ │ │ ├── storage_devices.h │ │ │ │ ├── storage_target.h │ │ │ │ ├── usb_storage_device.h │ │ │ │ ├── wifi_connection.h │ │ │ │ └── wpa_passphrase.h │ │ │ ├── network.cc │ │ │ ├── network.h │ │ │ ├── runtime.cc │ │ │ ├── runtime.h │ │ │ ├── runtime │ │ │ │ ├── chroot.cc │ │ │ │ ├── depot_query.cc │ │ │ │ ├── e2fs.cc │ │ │ │ ├── file_system.cc │ │ │ │ ├── fs_rom.cc │ │ │ │ ├── fs_tool.cc │ │ │ │ ├── gpt_write.cc │ │ │ │ ├── inspect_view.cc │ │ │ │ ├── launcher_query.cc │ │ │ │ ├── nic_drv.cc │ │ │ │ ├── nic_router.cc │ │ │ │ ├── prepare.cc │ │ │ │ ├── ram_fs.cc │ │ │ │ ├── runtime_view.cc │ │ │ │ ├── update.cc │ │ │ │ └── wifi_drv.cc │ │ │ ├── storage.cc │ │ │ ├── storage.h │ │ │ ├── string.h │ │ │ ├── target.mk │ │ │ ├── types.h │ │ │ ├── view │ │ │ │ ├── activatable_item.h │ │ │ │ ├── dialog.h │ │ │ │ ├── download_status.h │ │ │ │ ├── file_browser_dialog.h │ │ │ │ ├── fs_dialog.h │ │ │ │ ├── hoverable_item.h │ │ │ │ ├── network_dialog.cc │ │ │ │ ├── network_dialog.h │ │ │ │ ├── panel_dialog.cc │ │ │ │ ├── panel_dialog.h │ │ │ │ ├── partition_dialog.cc │ │ │ │ ├── partition_dialog.h │ │ │ │ ├── pd_route_dialog.cc │ │ │ │ ├── pd_route_dialog.h │ │ │ │ ├── popup_dialog.cc │ │ │ │ ├── popup_dialog.h │ │ │ │ ├── radio_choice_dialog.h │ │ │ │ ├── ram_fs_dialog.h │ │ │ │ ├── resource_dialog.cc │ │ │ │ ├── resource_dialog.h │ │ │ │ ├── selectable_item.h │ │ │ │ ├── settings_dialog.h │ │ │ │ ├── storage_device_dialog.cc │ │ │ │ ├── storage_device_dialog.h │ │ │ │ ├── storage_dialog.cc │ │ │ │ └── storage_dialog.h │ │ │ └── xml.h │ │ ├── text_area │ │ │ ├── child_state.h │ │ │ ├── dialog.cc │ │ │ ├── dialog.h │ │ │ ├── dynamic_array.h │ │ │ ├── gui.h │ │ │ ├── input_event_handler.h │ │ │ ├── main.cc │ │ │ ├── report.h │ │ │ ├── target.mk │ │ │ └── types.h │ │ ├── themed_decorator │ │ │ ├── config.h │ │ │ ├── main.cc │ │ │ ├── target.mk │ │ │ ├── theme.cc │ │ │ ├── theme.h │ │ │ ├── theme │ │ │ │ ├── closer.png │ │ │ │ ├── default.png │ │ │ │ ├── font.tff │ │ │ │ ├── maximizer.png │ │ │ │ └── metadata │ │ │ ├── tint_painter.h │ │ │ ├── window.cc │ │ │ └── window.h │ │ ├── touch_keyboard │ │ │ ├── README │ │ │ ├── child_state.h │ │ │ ├── gui.h │ │ │ ├── input_event_handler.h │ │ │ ├── main.cc │ │ │ ├── report.h │ │ │ ├── target.mk │ │ │ ├── touch_keyboard_dialog.cc │ │ │ ├── touch_keyboard_dialog.h │ │ │ └── types.h │ │ ├── vfs_replay │ │ │ ├── component.cc │ │ │ └── target.mk │ │ └── window_layouter │ │ │ ├── README │ │ │ ├── action.h │ │ │ ├── assign.h │ │ │ ├── assign_list.h │ │ │ ├── decorator_margins.h │ │ │ ├── focus_history.h │ │ │ ├── key_sequence_tracker.h │ │ │ ├── layout_rules.h │ │ │ ├── main.cc │ │ │ ├── operations.h │ │ │ ├── target.h │ │ │ ├── target.mk │ │ │ ├── target_list.h │ │ │ ├── types.h │ │ │ ├── user_state.h │ │ │ ├── window.h │ │ │ └── window_list.h │ │ ├── lib │ │ ├── aes_cbc_4k │ │ │ └── aes_cbc_4k.cc │ │ ├── cpu_sampler_platform-foc │ │ │ ├── native_cpu.cc │ │ │ └── target.mk │ │ ├── cpu_sampler_platform-generic │ │ │ ├── native_cpu.cc │ │ │ └── target.mk │ │ ├── cpu_sampler_platform-nova │ │ │ ├── native_cpu.cc │ │ │ └── target.mk │ │ ├── file │ │ │ └── file.cc │ │ ├── ttf_font │ │ │ └── ttf_font.cc │ │ └── vfs │ │ │ ├── audit │ │ │ ├── target.mk │ │ │ └── vfs_audit.cc │ │ │ ├── cbe │ │ │ ├── dummy.ads │ │ │ ├── io_job.h │ │ │ ├── target.mk │ │ │ └── vfs.cc │ │ │ ├── cbe_crypto │ │ │ ├── aes_cbc │ │ │ │ ├── aes_cbc.cc │ │ │ │ ├── dummy.ads │ │ │ │ └── target.mk │ │ │ ├── memcopy │ │ │ │ ├── memcopy.cc │ │ │ │ └── target.mk │ │ │ └── vfs.cc │ │ │ ├── cbe_trust_anchor │ │ │ ├── aes_256.cc │ │ │ ├── aes_256.h │ │ │ ├── integer.cc │ │ │ ├── integer.h │ │ │ ├── target.mk │ │ │ └── vfs.cc │ │ │ ├── gpu │ │ │ ├── target.mk │ │ │ ├── vfs.cc │ │ │ └── vfs_gpu.h │ │ │ ├── import │ │ │ ├── plugin.cc │ │ │ └── target.mk │ │ │ ├── pipe │ │ │ ├── README │ │ │ ├── plugin.cc │ │ │ └── target.mk │ │ │ ├── trace │ │ │ ├── README │ │ │ ├── directory_tree.h │ │ │ ├── session_label.h │ │ │ ├── target.mk │ │ │ └── vfs.cc │ │ │ └── ttf │ │ │ ├── glyphs_file_system.h │ │ │ ├── target.mk │ │ │ └── vfs.cc │ │ ├── server │ │ ├── cpu_sampler │ │ │ ├── README │ │ │ ├── cpu_root.h │ │ │ ├── cpu_session_component.cc │ │ │ ├── cpu_session_component.h │ │ │ ├── cpu_thread_component.cc │ │ │ ├── cpu_thread_component.h │ │ │ ├── main.cc │ │ │ ├── target.mk │ │ │ └── thread_list_change_handler.h │ │ ├── file_terminal │ │ │ ├── README │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── gui_fader │ │ │ ├── alpha_dither_painter.h │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── tcp_terminal │ │ │ ├── README │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── terminal │ │ │ ├── README │ │ │ ├── color_palette.h │ │ │ ├── font_family.h │ │ │ ├── main.cc │ │ │ ├── session.h │ │ │ ├── target.mk │ │ │ ├── text_screen_surface.h │ │ │ └── types.h │ │ ├── terminal_mux │ │ │ ├── README │ │ │ ├── main.cc │ │ │ ├── ncurses.cc │ │ │ ├── ncurses_cxx.h │ │ │ └── target.mk │ │ └── wm │ │ │ ├── decorator_gui.h │ │ │ ├── direct_gui.h │ │ │ ├── gui.h │ │ │ ├── layouter_gui.h │ │ │ ├── main.cc │ │ │ ├── pointer.h │ │ │ ├── report_forwarder.h │ │ │ ├── rom_forwarder.h │ │ │ ├── target.mk │ │ │ └── window_registry.h │ │ └── test │ │ ├── aes_cbc_4k │ │ ├── main.cc │ │ └── target.mk │ │ ├── cpu_sampler │ │ ├── main.cc │ │ └── target.mk │ │ ├── decorator_stress │ │ ├── main.cc │ │ └── target.mk │ │ ├── driver_manager │ │ ├── main.cc │ │ └── target.mk │ │ ├── text_painter │ │ ├── main.cc │ │ └── target.mk │ │ └── tiled_wm │ │ ├── app │ │ ├── app.cpp │ │ ├── app.h │ │ ├── app.pro │ │ ├── app.qrc │ │ ├── main.cpp │ │ └── target.mk │ │ ├── manager │ │ ├── main.cc │ │ └── target.mk │ │ ├── overlay │ │ ├── main.cpp │ │ ├── overlay.cpp │ │ ├── overlay.h │ │ ├── overlay.pro │ │ ├── overlay.qrc │ │ └── target.mk │ │ ├── panel │ │ ├── main.cpp │ │ ├── panel.cpp │ │ ├── panel.h │ │ ├── panel.pro │ │ ├── panel.qrc │ │ ├── target.mk │ │ └── wifi.png │ │ ├── style.qss │ │ ├── target.inc │ │ └── util.h ├── hello_tutorial │ ├── README │ ├── doc │ │ └── hello_tutorial.txt │ ├── include │ │ └── hello_session │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── hello_session.h │ ├── run │ │ └── hello.run │ └── src │ │ └── hello │ │ ├── client │ │ ├── main.cc │ │ └── target.mk │ │ └── server │ │ ├── main.cc │ │ └── target.mk ├── libports │ ├── README │ ├── doc │ │ └── libc.txt │ ├── include │ │ ├── EGL │ │ │ └── eglplatform.h │ │ ├── acpica │ │ │ └── acpica.h │ │ ├── ada │ │ │ └── exception.h │ │ ├── fatfs │ │ │ └── block.h │ │ ├── freetype-genode │ │ │ ├── ftconfig.h │ │ │ └── ftmodule.h │ │ ├── fribidi │ │ │ └── fribidi-config.h │ │ ├── jpeg │ │ │ └── jconfig.h │ │ ├── libc-genode │ │ │ ├── mntent.h │ │ │ ├── sys │ │ │ │ ├── syscall.h │ │ │ │ └── user.h │ │ │ └── timeconv.h │ │ ├── libc-plugin │ │ │ ├── fd_alloc.h │ │ │ ├── plugin.h │ │ │ └── plugin_registry.h │ │ ├── libc │ │ │ ├── allocator.h │ │ │ ├── args.h │ │ │ ├── component.h │ │ │ ├── genode.h │ │ │ └── select.h │ │ ├── lwip │ │ │ ├── arch │ │ │ │ ├── cc.h │ │ │ │ └── perf.h │ │ │ ├── genode_init.h │ │ │ ├── lwipopts.h │ │ │ └── nic_netif.h │ │ ├── ncurses │ │ │ ├── ncurses.h │ │ │ └── ncurses_cfg.h │ │ ├── pcg-c │ │ │ └── genode_inttypes.h │ │ ├── qemu │ │ │ └── usb.h │ │ ├── qgenodeviewwidget │ │ │ └── qgenodeviewwidget.h │ │ ├── qpluginwidget │ │ │ └── qpluginwidget.h │ │ ├── qt5_component │ │ │ └── qpa_init.h │ │ ├── spec │ │ │ ├── 32bit │ │ │ │ └── gmp │ │ │ │ │ ├── fac_table.h │ │ │ │ │ ├── fib_table.h │ │ │ │ │ ├── gmp.h │ │ │ │ │ ├── jacobitab.h │ │ │ │ │ ├── mp_bases.h │ │ │ │ │ ├── perfsqr.h │ │ │ │ │ └── trialdivtab.h │ │ │ ├── 64bit │ │ │ │ └── gmp │ │ │ │ │ ├── fac_table.h │ │ │ │ │ ├── fib_table.h │ │ │ │ │ ├── gmp.h │ │ │ │ │ ├── jacobitab.h │ │ │ │ │ ├── mp_bases.h │ │ │ │ │ ├── perfsqr.h │ │ │ │ │ └── trialdivtab.h │ │ │ ├── arm │ │ │ │ ├── gmp │ │ │ │ │ └── config.h │ │ │ │ └── stdcxx │ │ │ │ │ └── bits │ │ │ │ │ └── c++config.h │ │ │ ├── arm_64 │ │ │ │ ├── gmp │ │ │ │ │ └── config.h │ │ │ │ └── stdcxx │ │ │ │ │ └── bits │ │ │ │ │ └── c++config.h │ │ │ ├── riscv │ │ │ │ └── stdcxx │ │ │ │ │ └── bits │ │ │ │ │ └── c++config.h │ │ │ ├── x86_32 │ │ │ │ ├── gmp │ │ │ │ │ └── config.h │ │ │ │ └── stdcxx │ │ │ │ │ └── bits │ │ │ │ │ └── c++config.h │ │ │ └── x86_64 │ │ │ │ ├── gmp │ │ │ │ └── config.h │ │ │ │ └── stdcxx │ │ │ │ └── bits │ │ │ │ └── c++config.h │ │ ├── stdcxx │ │ │ ├── README │ │ │ └── bits │ │ │ │ └── gstdint.h │ │ └── x86emu │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ └── sys │ │ │ └── types.h │ ├── lib │ │ ├── import │ │ │ ├── import-acpica.mk │ │ │ ├── import-curl.mk │ │ │ ├── import-e2fsprogs.mk │ │ │ ├── import-expat.mk │ │ │ ├── import-fatfs_block.mk │ │ │ ├── import-ffi.mk │ │ │ ├── import-freetype.mk │ │ │ ├── import-gmp.mk │ │ │ ├── import-icu.mk │ │ │ ├── import-jbig2dec.mk │ │ │ ├── import-jitterentropy.mk │ │ │ ├── import-jpeg.mk │ │ │ ├── import-libarchive.mk │ │ │ ├── import-libbz2.mk │ │ │ ├── import-libc-setjmp.mk │ │ │ ├── import-libc.mk │ │ │ ├── import-libcrypto.mk │ │ │ ├── import-libdrm.mk │ │ │ ├── import-libgcrypt.mk │ │ │ ├── import-libiconv.mk │ │ │ ├── import-liblzma.mk │ │ │ ├── import-libpcg_random.mk │ │ │ ├── import-libpng.mk │ │ │ ├── import-libsparkcrypto.mk │ │ │ ├── import-libssh.mk │ │ │ ├── import-libssl.mk │ │ │ ├── import-libusb.mk │ │ │ ├── import-libuvc.mk │ │ │ ├── import-libyaml.mk │ │ │ ├── import-libyuv.mk │ │ │ ├── import-lwip.mk │ │ │ ├── import-lz4.mk │ │ │ ├── import-mesa.mk │ │ │ ├── import-mesa_api.mk │ │ │ ├── import-mupdf.mk │ │ │ ├── import-ncurses.mk │ │ │ ├── import-openjpeg.mk │ │ │ ├── import-pcre.mk │ │ │ ├── import-pcsc-lite.mk │ │ │ ├── import-posix.mk │ │ │ ├── import-qemu-usb_include.mk │ │ │ ├── import-qoost.mk │ │ │ ├── import-qt5_qmake.mk │ │ │ ├── import-spark.mk │ │ │ ├── import-stdcxx.mk │ │ │ ├── import-test-spark.mk │ │ │ ├── import-x86emu.mk │ │ │ └── import-zlib.mk │ │ ├── mk │ │ │ ├── acpica.mk │ │ │ ├── ccid.mk │ │ │ ├── curl.inc │ │ │ ├── e2fsprogs.mk │ │ │ ├── e2fsprogs_host_tools.mk │ │ │ ├── egl.mk │ │ │ ├── etnaviv.mk │ │ │ ├── expat.mk │ │ │ ├── fatfs_block.mk │ │ │ ├── freetype.mk │ │ │ ├── fribidi.mk │ │ │ ├── gcov-libcommon.mk │ │ │ ├── gcov-libcpp.mk │ │ │ ├── gcov-libiberty.mk │ │ │ ├── glapi.mk │ │ │ ├── gmp-mpf.mk │ │ │ ├── gmp-mpq.mk │ │ │ ├── gmp-mpz.mk │ │ │ ├── gmp.inc │ │ │ ├── gmp.mk │ │ │ ├── icu.mk │ │ │ ├── iris_gen.inc │ │ │ ├── isl_gen.inc │ │ │ ├── jbig2dec.mk │ │ │ ├── jitterentropy.inc │ │ │ ├── jpeg.mk │ │ │ ├── libQt5Core.mk │ │ │ ├── libQt5Gui.mk │ │ │ ├── libQt5Network.mk │ │ │ ├── libQt5PrintSupport.mk │ │ │ ├── libQt5Qml.mk │ │ │ ├── libQt5Quick.mk │ │ │ ├── libQt5QuickControls2.mk │ │ │ ├── libQt5QuickTemplates2.mk │ │ │ ├── libQt5QuickWidgets.mk │ │ │ ├── libQt5Sql.mk │ │ │ ├── libQt5Svg.mk │ │ │ ├── libQt5Test.mk │ │ │ ├── libQt5VirtualKeyboard.mk │ │ │ ├── libQt5Widgets.mk │ │ │ ├── libQt5Xml.mk │ │ │ ├── libarchive.mk │ │ │ ├── libbz2.mk │ │ │ ├── libc-common.inc │ │ │ ├── libc-compat.mk │ │ │ ├── libc-gdtoa.mk │ │ │ ├── libc-gen.inc │ │ │ ├── libc-inet.mk │ │ │ ├── libc-isc.mk │ │ │ ├── libc-libkern.mk │ │ │ ├── libc-locale.mk │ │ │ ├── libc-mem.mk │ │ │ ├── libc-nameser.mk │ │ │ ├── libc-net.mk │ │ │ ├── libc-regex.mk │ │ │ ├── libc-resolv.mk │ │ │ ├── libc-rpc.mk │ │ │ ├── libc-stdio.mk │ │ │ ├── libc-stdlib.mk │ │ │ ├── libc-stdtime.mk │ │ │ ├── libc-string.mk │ │ │ ├── libc-tzcode.mk │ │ │ ├── libc.mk │ │ │ ├── libcrypto.inc │ │ │ ├── libdrm.inc │ │ │ ├── libdrm.mk │ │ │ ├── libgcov.mk │ │ │ ├── libgcrypt.mk │ │ │ ├── libgpg-error.mk │ │ │ ├── libiconv.mk │ │ │ ├── liblzma.mk │ │ │ ├── libm.inc │ │ │ ├── libpcg_random.mk │ │ │ ├── libpng.inc │ │ │ ├── libpng.mk │ │ │ ├── libqgenode.mk │ │ │ ├── libqgenodeviewwidget.mk │ │ │ ├── libqpluginwidget.mk │ │ │ ├── libsanitizer_common.mk │ │ │ ├── libsparkcrypto.inc │ │ │ ├── libsparkcrypto.mk │ │ │ ├── libssh.mk │ │ │ ├── libssl.mk │ │ │ ├── libubsan.mk │ │ │ ├── libusb.mk │ │ │ ├── libuvc.mk │ │ │ ├── libyaml.mk │ │ │ ├── libyuv.inc │ │ │ ├── lwip.mk │ │ │ ├── lz4.mk │ │ │ ├── mesa-common.inc │ │ │ ├── mesa.inc │ │ │ ├── mesa.mk │ │ │ ├── mesa_api.mk │ │ │ ├── mesa_gpu-etnaviv.mk │ │ │ ├── mesa_gpu-softpipe.mk │ │ │ ├── mupdf.mk │ │ │ ├── mupdf_host_tools.mk │ │ │ ├── ncurses.mk │ │ │ ├── openjpeg.mk │ │ │ ├── pcre.mk │ │ │ ├── pcre16.mk │ │ │ ├── pcsc-lite.mk │ │ │ ├── posix.mk │ │ │ ├── qemu-usb.inc │ │ │ ├── qemu-usb_include.mk │ │ │ ├── qoost.mk │ │ │ ├── qt5_base.mk │ │ │ ├── qt5_component.mk │ │ │ ├── qt5_declarative.mk │ │ │ ├── qt5_quickcontrols.mk │ │ │ ├── qt5_quickcontrols2.mk │ │ │ ├── qt5_svg.mk │ │ │ ├── qt5_virtualkeyboard.mk │ │ │ ├── softpipe.mk │ │ │ ├── spark.inc │ │ │ ├── spark.mk │ │ │ ├── spec │ │ │ │ ├── 32bit │ │ │ │ │ └── curl.mk │ │ │ │ ├── 64bit │ │ │ │ │ └── curl.mk │ │ │ │ ├── arm │ │ │ │ │ ├── ffi.mk │ │ │ │ │ ├── gmp-mpn.mk │ │ │ │ │ ├── libc-gen.mk │ │ │ │ │ ├── libc-setjmp.mk │ │ │ │ │ ├── libc.mk │ │ │ │ │ ├── libcrypto.mk │ │ │ │ │ └── libm.mk │ │ │ │ ├── arm_64 │ │ │ │ │ ├── ffi.mk │ │ │ │ │ ├── gmp-mpn.mk │ │ │ │ │ ├── libc-gen.mk │ │ │ │ │ ├── libc-setjmp.mk │ │ │ │ │ ├── libc.mk │ │ │ │ │ ├── libcrypto.mk │ │ │ │ │ └── libm.mk │ │ │ │ ├── arm_v6 │ │ │ │ │ └── jitterentropy.mk │ │ │ │ ├── arm_v7 │ │ │ │ │ └── jitterentropy.mk │ │ │ │ ├── arm_v8 │ │ │ │ │ ├── jitterentropy.mk │ │ │ │ │ ├── libdrm.mk │ │ │ │ │ ├── libpng.mk │ │ │ │ │ ├── libyuv.mk │ │ │ │ │ └── mesa.mk │ │ │ │ ├── riscv │ │ │ │ │ ├── libc-gen.mk │ │ │ │ │ ├── libc-setjmp.mk │ │ │ │ │ ├── libc.mk │ │ │ │ │ └── libm.mk │ │ │ │ ├── x86 │ │ │ │ │ ├── iris.mk │ │ │ │ │ ├── iris_gen110.mk │ │ │ │ │ ├── iris_gen120.mk │ │ │ │ │ ├── iris_gen125.mk │ │ │ │ │ ├── iris_gen80.mk │ │ │ │ │ ├── iris_gen90.mk │ │ │ │ │ ├── isl_gen110.mk │ │ │ │ │ ├── isl_gen120.mk │ │ │ │ │ ├── isl_gen125.mk │ │ │ │ │ ├── isl_gen80.mk │ │ │ │ │ ├── isl_gen90.mk │ │ │ │ │ └── mesa_gpu-iris.mk │ │ │ │ ├── x86_32 │ │ │ │ │ ├── ffi.mk │ │ │ │ │ ├── gmp-mpn.mk │ │ │ │ │ ├── jitterentropy.mk │ │ │ │ │ ├── libc-gen.mk │ │ │ │ │ ├── libc-setjmp.mk │ │ │ │ │ ├── libc.mk │ │ │ │ │ ├── libcrypto.mk │ │ │ │ │ ├── libm.mk │ │ │ │ │ ├── libyuv.mk │ │ │ │ │ └── qemu-usb.mk │ │ │ │ └── x86_64 │ │ │ │ │ ├── ffi.mk │ │ │ │ │ ├── gmp-mpn.mk │ │ │ │ │ ├── jitterentropy.mk │ │ │ │ │ ├── libc-gen.mk │ │ │ │ │ ├── libc-setjmp.mk │ │ │ │ │ ├── libc.mk │ │ │ │ │ ├── libcrypto.mk │ │ │ │ │ ├── libdrm.mk │ │ │ │ │ ├── libm.mk │ │ │ │ │ ├── libyuv.mk │ │ │ │ │ ├── mesa.mk │ │ │ │ │ └── qemu-usb.mk │ │ │ ├── stdcxx-c++98.mk │ │ │ ├── stdcxx.mk │ │ │ ├── test-ldso_lib_1.mk │ │ │ ├── test-ldso_lib_2.mk │ │ │ ├── test-ldso_lib_dl.mk │ │ │ ├── test-spark.mk │ │ │ ├── vfs_fatfs.mk │ │ │ ├── vfs_jitterentropy.mk │ │ │ ├── vfs_libusb.mk │ │ │ ├── vfs_lwip.mk │ │ │ ├── vfs_oss.mk │ │ │ ├── x86emu.mk │ │ │ └── zlib.mk │ │ └── symbols │ │ │ ├── curl │ │ │ ├── egl │ │ │ ├── expat │ │ │ ├── ffi │ │ │ ├── freetype │ │ │ ├── gmp │ │ │ ├── icu │ │ │ ├── jbig2dec │ │ │ ├── jpeg │ │ │ ├── libarchive │ │ │ ├── libc │ │ │ ├── libcrypto │ │ │ ├── libdrm │ │ │ ├── libiconv │ │ │ ├── liblzma │ │ │ ├── libm │ │ │ ├── libpng │ │ │ ├── libqgenodeviewwidget │ │ │ ├── libqpluginwidget │ │ │ ├── libsanitizer_common │ │ │ ├── libsparkcrypto │ │ │ ├── libssh │ │ │ ├── libssl │ │ │ ├── libubsan │ │ │ ├── libusb │ │ │ ├── libuvc │ │ │ ├── libyuv │ │ │ ├── mesa │ │ │ ├── mupdf │ │ │ ├── ncurses │ │ │ ├── openjpeg │ │ │ ├── pcre │ │ │ ├── pcre16 │ │ │ ├── posix │ │ │ ├── qt5_component │ │ │ ├── spark │ │ │ ├── stdcxx │ │ │ └── zlib │ ├── ports │ │ ├── acpica.hash │ │ ├── acpica.port │ │ ├── ada-runtime.hash │ │ ├── ada-runtime.port │ │ ├── bzip2.hash │ │ ├── bzip2.port │ │ ├── ccid.hash │ │ ├── ccid.port │ │ ├── curl.hash │ │ ├── curl.port │ │ ├── e2fsprogs-lib.hash │ │ ├── e2fsprogs-lib.port │ │ ├── egl_api.hash │ │ ├── egl_api.port │ │ ├── expat.hash │ │ ├── expat.port │ │ ├── fatfs.hash │ │ ├── fatfs.port │ │ ├── ffi.hash │ │ ├── ffi.port │ │ ├── freetype.hash │ │ ├── freetype.port │ │ ├── fribidi.hash │ │ ├── fribidi.port │ │ ├── gcov.hash │ │ ├── gcov.port │ │ ├── gmp.hash │ │ ├── gmp.port │ │ ├── icu.hash │ │ ├── icu.port │ │ ├── jbig2dec.hash │ │ ├── jbig2dec.port │ │ ├── jitterentropy.hash │ │ ├── jitterentropy.port │ │ ├── jpeg.hash │ │ ├── jpeg.port │ │ ├── libarchive.hash │ │ ├── libarchive.port │ │ ├── libc.hash │ │ ├── libc.port │ │ ├── libdrm.hash │ │ ├── libdrm.port │ │ ├── libgcrypt.hash │ │ ├── libgcrypt.port │ │ ├── libiconv.hash │ │ ├── libiconv.port │ │ ├── libpng.hash │ │ ├── libpng.port │ │ ├── libsparkcrypto.hash │ │ ├── libsparkcrypto.port │ │ ├── libssh.hash │ │ ├── libssh.port │ │ ├── libusb.hash │ │ ├── libusb.port │ │ ├── libuvc.hash │ │ ├── libuvc.port │ │ ├── libyaml.hash │ │ ├── libyaml.port │ │ ├── libyuv.hash │ │ ├── libyuv.port │ │ ├── lwip.hash │ │ ├── lwip.port │ │ ├── lz4.hash │ │ ├── lz4.port │ │ ├── mesa.hash │ │ ├── mesa.port │ │ ├── mupdf.hash │ │ ├── mupdf.port │ │ ├── ncurses.hash │ │ ├── ncurses.port │ │ ├── openjpeg.hash │ │ ├── openjpeg.port │ │ ├── openssl.hash │ │ ├── openssl.port │ │ ├── pcg-c.hash │ │ ├── pcg-c.port │ │ ├── pcre.hash │ │ ├── pcre.port │ │ ├── pcsc-lite.hash │ │ ├── pcsc-lite.port │ │ ├── qemu-usb.hash │ │ ├── qemu-usb.port │ │ ├── qoost.hash │ │ ├── qoost.port │ │ ├── qt5-host.hash │ │ ├── qt5-host.port │ │ ├── qt5.hash │ │ ├── qt5.port │ │ ├── sanitizer.hash │ │ ├── sanitizer.port │ │ ├── stb.hash │ │ ├── stb.port │ │ ├── stdcxx.hash │ │ ├── stdcxx.port │ │ ├── ttf-bitstream-vera.hash │ │ ├── ttf-bitstream-vera.port │ │ ├── x86emu.hash │ │ ├── x86emu.port │ │ ├── xz.hash │ │ ├── xz.port │ │ ├── zlib.hash │ │ └── zlib.port │ ├── recipes │ │ ├── api │ │ │ ├── curl │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── expat │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── fatfs │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── ffi │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── freetype │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── gmp │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── icu │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── jbig2dec │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── jitterentropy │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── jpeg │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── libarchive │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── libc │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── libc_setjmp │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── libdrm │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── libgcov │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── libgcrypt │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── libiconv │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── liblzma │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── libpng │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── libqgenodeviewwidget │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── libqpluginwidget │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── libsparkcrypto │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── libssh │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── libusb │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── libuvc │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── libyaml │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── libyuv │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── lwip │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── mesa │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── mupdf │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── ncurses │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── openjpeg │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── openssl │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── pcre │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── pcre16 │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── posix │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── qoost │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── qt5 │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── qt5_component │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── sanitizer │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── spark │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── stdcxx │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ └── zlib │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ ├── pkg │ │ │ ├── acpica │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── gcov │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── mesa_gears │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── mesa_gpu-cpu │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── mesa_gpu-etnaviv │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── mesa_gpu-intel │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── pdf_view │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── qt5_textedit │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── system_clock-pc │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── system_rtc-linux │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ └── hash │ │ │ ├── system_rtc-pc │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ └── hash │ │ │ ├── test-expat │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-ldso │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-libc │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-libc_connect_lwip │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-libc_connect_lxip │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-libc_connect_vfs_server_lwip │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-libc_connect_vfs_server_lxip │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-libc_counter │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-libc_execve │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-libc_fifo_pipe │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-libc_fork │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-libc_getenv │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-libc_pipe │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-libc_vfs │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-libc_vfs_block │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-libc_vfs_counter │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-libc_vfs_fs │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-libc_vfs_fs_chained │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-libc_vfs_ram │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-pthread │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-sequence │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-spark │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-spark_exception │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-spark_secondary_stack │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-stdcxx │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-tcp_bulk_lwip │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-tcp_bulk_lxip │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ └── usb_webcam │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ ├── raw │ │ │ ├── qt5_dejavusans │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── qt5_samegame │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── qt5_textedit │ │ │ │ ├── content.mk │ │ │ │ ├── hash │ │ │ │ └── textedit.config │ │ │ ├── system_rtc-linux │ │ │ │ ├── content.mk │ │ │ │ ├── hash │ │ │ │ └── system_rtc.config │ │ │ ├── system_rtc-pc │ │ │ │ ├── content.mk │ │ │ │ ├── hash │ │ │ │ └── system_rtc.config │ │ │ ├── ttf-bitstream-vera-minimal │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ └── usb_webcam │ │ │ │ ├── content.mk │ │ │ │ ├── hash │ │ │ │ └── usb_webcam.config │ │ └── src │ │ │ ├── acpica │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── curl │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── expat │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── extract │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── fetchurl │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── ffi │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── freetype │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── fs_utils │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── gcov │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── gmp │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── icu │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── jbig2dec │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── jpeg │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── libarchive │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── libc │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── libdrm │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── libiconv │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── liblzma │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── libpng │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── libqgenodeviewwidget │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── libqpluginwidget │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── libsparkcrypto │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── libssh │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── libusb │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── libuvc │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── libyuv │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── mesa │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── mesa_gears │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── mupdf │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── ncurses │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── openjpeg │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── openssl │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── pcre │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── pcre16 │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── pdf_view │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── posix │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── qt5_base │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── qt5_calculatorform │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── qt5_component │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── qt5_declarative │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── qt5_launchpad │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── qt5_openglwindow │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── qt5_quickcontrols │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── qt5_quickcontrols2 │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── qt5_samegame │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── qt5_svg │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── qt5_testqstring │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── qt5_tetrix │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── qt5_textedit │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── qt5_virtualkeyboard │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── qt5_virtualkeyboard_example │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── sanitizer │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── spark │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── stdcxx │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── stdin2out │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── system_rtc │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-expat │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-ldso │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-libc │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-libc_connect │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-libc_counter │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-libc_execve │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-libc_fifo_pipe │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-libc_fork │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-libc_getenv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-libc_pipe │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-libc_vfs │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-libc_vfs_block │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-netty │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-pthread │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-qpluginwidget │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-qt_core │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-qt_quick │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-spark │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-spark_exception │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-spark_secondary_stack │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-stdcxx │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-tcp │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── usb_webcam │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── vesa_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── vfs_fatfs │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── vfs_jitterentropy │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── vfs_libusb │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── vfs_lwip │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── vfs_oss │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ └── zlib │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ ├── run │ │ ├── acpica.run │ │ ├── extract.run │ │ ├── fatfs_blkio.run │ │ ├── fetchurl.inc │ │ ├── fetchurl_lwip.run │ │ ├── fetchurl_lxip.run │ │ ├── fs_rom_update_fat.run │ │ ├── ieee754.run │ │ ├── libc.run │ │ ├── libc_block.run │ │ ├── libc_component.run │ │ ├── libc_getaddrinfo.run │ │ ├── libc_getpwent.run │ │ ├── libc_integration.run │ │ ├── libc_select.run │ │ ├── libc_vfs_component.run │ │ ├── libc_vfs_fat.run │ │ ├── libc_vfs_filesystem_test.inc │ │ ├── libc_vfs_fs_fat.run │ │ ├── libc_vfs_select.run │ │ ├── libc_vfs_tap.run │ │ ├── libc_with_libc.run │ │ ├── lwip.run │ │ ├── lwip_lx.run │ │ ├── memcpy.run │ │ ├── mesa-gears.inc │ │ ├── mesa-gears.run │ │ ├── mesa-gears_etnaviv.run │ │ ├── mesa-gears_iris.run │ │ ├── mesa-triangle_gl.inc │ │ ├── mesa-triangle_gl_iris.run │ │ ├── mesa.inc │ │ ├── mupdf.run │ │ ├── netty.inc │ │ ├── netty_lwip.inc │ │ ├── netty_lwip_tcp.run │ │ ├── netty_lwip_udp.run │ │ ├── netty_lxip_tcp.run │ │ ├── netty_lxip_udp.run │ │ ├── nic_bridge.run │ │ ├── nic_router.inc │ │ ├── nic_router.run │ │ ├── nic_router_dyn_config.run │ │ ├── nic_router_ipv4_fragm.run │ │ ├── oss.run │ │ ├── pcg32.run │ │ ├── qt5.run │ │ ├── qt5_calculatorform.run │ │ ├── qt5_common.inc │ │ ├── qt5_core.run │ │ ├── qt5_openglwindow.run │ │ ├── qt5_qpluginwidget.run │ │ ├── qt5_quicktest.run │ │ ├── qt5_samegame.run │ │ ├── qt5_testqstring.run │ │ ├── qt5_tetrix.run │ │ ├── qt5_textedit.run │ │ ├── qt5_virtualkeyboard.run │ │ ├── smartcard.run │ │ ├── sntp_client.run │ │ ├── system_rtc.run │ │ ├── vfs_lwip.inc │ │ ├── webcam.inc │ │ ├── webcam.run │ │ └── webcam_vfs.run │ └── src │ │ ├── app │ │ ├── acpi_event │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── acpica │ │ │ ├── README │ │ │ ├── ac.h │ │ │ ├── bridge.h │ │ │ ├── ec.h │ │ │ ├── fixed.h │ │ │ ├── fujitsu.h │ │ │ ├── lid.h │ │ │ ├── os.cc │ │ │ ├── printf.cc │ │ │ ├── report.cc │ │ │ ├── reporter.h │ │ │ ├── sb.h │ │ │ ├── target.mk │ │ │ └── util.h │ │ ├── e2fsck │ │ │ └── target.mk │ │ ├── extract │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── fetchurl │ │ │ ├── README │ │ │ ├── component.cc │ │ │ └── target.mk │ │ ├── gcov │ │ │ ├── patches │ │ │ │ ├── backtrace.patch │ │ │ │ ├── charset.patch │ │ │ │ ├── gcov.patch │ │ │ │ └── i386.patch │ │ │ └── target.mk │ │ ├── mke2fs │ │ │ └── target.mk │ │ ├── pdf_view │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── qt5 │ │ │ ├── examples │ │ │ │ ├── calculatorform │ │ │ │ │ └── target.mk │ │ │ │ ├── openglwindow │ │ │ │ │ └── target.mk │ │ │ │ ├── samegame │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── samegame.pro │ │ │ │ │ └── target.mk │ │ │ │ ├── testqstring │ │ │ │ │ └── target.mk │ │ │ │ ├── tetrix │ │ │ │ │ └── target.mk │ │ │ │ ├── textedit │ │ │ │ │ └── target.mk │ │ │ │ └── virtualkeyboard │ │ │ │ │ └── target.mk │ │ │ └── qt_launchpad │ │ │ │ ├── child_entry.cpp │ │ │ │ ├── child_entry.h │ │ │ │ ├── child_entry.ui │ │ │ │ ├── kbyte_loadbar.cpp │ │ │ │ ├── kbyte_loadbar.h │ │ │ │ ├── launch_entry.cpp │ │ │ │ ├── launch_entry.h │ │ │ │ ├── launch_entry.ui │ │ │ │ ├── main.cpp │ │ │ │ ├── qt_launchpad.cpp │ │ │ │ ├── qt_launchpad.h │ │ │ │ ├── qt_launchpad.pro │ │ │ │ ├── qt_launchpad.ui │ │ │ │ └── target.mk │ │ ├── resize2fs │ │ │ └── target.mk │ │ ├── sntp_client │ │ │ ├── README │ │ │ ├── config.xsd │ │ │ ├── dhcp_client.cc │ │ │ ├── dhcp_client.h │ │ │ ├── ipv4_address_prefix.cc │ │ │ ├── ipv4_address_prefix.h │ │ │ ├── ipv4_config.cc │ │ │ ├── ipv4_config.h │ │ │ ├── main.cc │ │ │ ├── nic.cc │ │ │ ├── nic.h │ │ │ ├── protocol.h │ │ │ ├── target.mk │ │ │ ├── xml_node.cc │ │ │ └── xml_node.h │ │ ├── stdin2out │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── untar │ │ │ └── target.mk │ │ └── usb_webcam │ │ │ ├── README │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── drivers │ │ └── framebuffer │ │ │ └── vesa │ │ │ ├── README │ │ │ ├── framebuffer.cc │ │ │ ├── hw_emul.cc │ │ │ ├── ifx86emu.cc │ │ │ ├── include │ │ │ ├── framebuffer.h │ │ │ ├── genode_env.h │ │ │ ├── hw_emul.h │ │ │ ├── ifx86emu.h │ │ │ ├── vbe.h │ │ │ └── vesa.h │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── lib │ │ ├── acpica │ │ │ ├── acpica.patch │ │ │ ├── env.cc │ │ │ ├── env.h │ │ │ ├── iomem.cc │ │ │ ├── osl.cc │ │ │ └── pci.cc │ │ ├── ccid │ │ │ ├── README │ │ │ └── config.h │ │ ├── curl │ │ │ ├── curl_h.patch │ │ │ └── spec │ │ │ │ ├── 32bit │ │ │ │ └── curl_config.h │ │ │ │ └── 64bit │ │ │ │ └── curl_config.h │ │ ├── e2fsprogs │ │ │ ├── config.h │ │ │ └── patches │ │ │ │ ├── DIOCGDINFO.patch │ │ │ │ ├── quotaio_strncat.patch │ │ │ │ └── unix_io.c.patch │ │ ├── fatfs │ │ │ ├── diskio_block.cc │ │ │ └── ffconf.patch │ │ ├── ffi │ │ │ ├── dummies.c │ │ │ └── fficonfig.h │ │ ├── fribidi │ │ │ └── config.h │ │ ├── gcov │ │ │ ├── libc │ │ │ │ ├── libc.cc │ │ │ │ ├── stdio.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── string.h │ │ │ │ ├── sys │ │ │ │ │ └── types.h │ │ │ │ └── unistd.h │ │ │ └── patches │ │ │ │ ├── libgcov.patch │ │ │ │ └── setbuf.patch │ │ ├── gmp │ │ │ ├── mpn │ │ │ │ └── spec │ │ │ │ │ ├── 32bit │ │ │ │ │ ├── fib_table.c │ │ │ │ │ └── mp_bases.c │ │ │ │ │ └── 64bit │ │ │ │ │ ├── fib_table.c │ │ │ │ │ └── mp_bases.c │ │ │ └── spec │ │ │ │ ├── arm │ │ │ │ └── config.m4 │ │ │ │ ├── arm_64 │ │ │ │ └── config.m4 │ │ │ │ ├── x86_32 │ │ │ │ └── config.m4 │ │ │ │ └── x86_64 │ │ │ │ └── config.m4 │ │ ├── jitterentropy │ │ │ ├── jitterentropy-base-genode.cc │ │ │ ├── jitterentropy-base-genode.h │ │ │ ├── jitterentropy_delta_compare.patch │ │ │ ├── jitterentropy_h.patch │ │ │ ├── jitterentropy_memcpy.patch │ │ │ └── spec │ │ │ │ ├── arm_v6 │ │ │ │ └── jitterentropy-base-genode-nstime.h │ │ │ │ ├── arm_v7 │ │ │ │ └── jitterentropy-base-genode-nstime.h │ │ │ │ ├── arm_v8 │ │ │ │ └── jitterentropy-base-genode-nstime.h │ │ │ │ ├── x86_32 │ │ │ │ └── jitterentropy-base-genode-nstime.h │ │ │ │ └── x86_64 │ │ │ │ └── jitterentropy-base-genode-nstime.h │ │ ├── libarchive │ │ │ ├── genode_config.h │ │ │ └── no_fork.c │ │ ├── libc │ │ │ ├── atexit.cc │ │ │ ├── component.cc │ │ │ ├── dummies.cc │ │ │ ├── dynamic_linker.cc │ │ │ ├── environ.cc │ │ │ ├── errno.cc │ │ │ ├── execve.cc │ │ │ ├── exit.cc │ │ │ ├── fd_alloc.cc │ │ │ ├── fenv-softfloat.cc │ │ │ ├── file_operations.cc │ │ │ ├── fork.cc │ │ │ ├── gai_strerror.cc │ │ │ ├── genode.cc │ │ │ ├── getpwent.cc │ │ │ ├── getrandom.cc │ │ │ ├── internal │ │ │ │ ├── atexit.h │ │ │ │ ├── clone_session.h │ │ │ │ ├── cloned_malloc_heap_range.h │ │ │ │ ├── current_time.h │ │ │ │ ├── cwd.h │ │ │ │ ├── env.h │ │ │ │ ├── errno.h │ │ │ │ ├── file.h │ │ │ │ ├── file_operations.h │ │ │ │ ├── init.h │ │ │ │ ├── kernel.h │ │ │ │ ├── kernel_timer_accessor.h │ │ │ │ ├── malloc_ram_allocator.h │ │ │ │ ├── mem_alloc.h │ │ │ │ ├── mmap_registry.h │ │ │ │ ├── monitor.h │ │ │ │ ├── pthread.h │ │ │ │ ├── pthread_pool.h │ │ │ │ ├── resume.h │ │ │ │ ├── rtc.h │ │ │ │ ├── select.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket_fs_plugin.h │ │ │ │ ├── suspend.h │ │ │ │ ├── thread_create.h │ │ │ │ ├── time.h │ │ │ │ ├── timer.h │ │ │ │ ├── types.h │ │ │ │ ├── vfs_plugin.h │ │ │ │ └── watch.h │ │ │ ├── issetugid.cc │ │ │ ├── kernel.cc │ │ │ ├── libc_mem_alloc.cc │ │ │ ├── log2.c │ │ │ ├── malloc.cc │ │ │ ├── nolocale.cc │ │ │ ├── patches │ │ │ │ ├── MB_CUR_MAX.patch │ │ │ │ ├── README │ │ │ │ ├── _CurrentRuneLocale.patch │ │ │ │ ├── cdefs_no_hidden.patch │ │ │ │ ├── fpmath_riscv.patch │ │ │ │ ├── gdtoa.patch │ │ │ │ ├── ieeefp_riscv.patch │ │ │ │ ├── mktime.patch │ │ │ │ ├── printfcommon.patch │ │ │ │ ├── rcmd.patch │ │ │ │ ├── res_init_c.patch │ │ │ │ ├── runetype.patch │ │ │ │ ├── semaphore.patch │ │ │ │ ├── setlocale.patch │ │ │ │ ├── thread_local.patch │ │ │ │ ├── types.patch │ │ │ │ ├── vfwprintf_c_warn.patch │ │ │ │ ├── xlocale.patch │ │ │ │ ├── xlocale_private.patch │ │ │ │ └── xprintf_float.patch │ │ │ ├── plugin.cc │ │ │ ├── plugin_registry.cc │ │ │ ├── poll.cc │ │ │ ├── pread_pwrite.cc │ │ │ ├── progname.cc │ │ │ ├── pthread.cc │ │ │ ├── pthread_create.cc │ │ │ ├── readv_writev.cc │ │ │ ├── rlimit.cc │ │ │ ├── rwlock.cc │ │ │ ├── select.cc │ │ │ ├── semaphore.cc │ │ │ ├── signal.cc │ │ │ ├── sleep.cc │ │ │ ├── socket_fs_plugin.cc │ │ │ ├── socket_operations.cc │ │ │ ├── spec │ │ │ │ ├── arm │ │ │ │ │ └── internal │ │ │ │ │ │ └── call_func.h │ │ │ │ ├── arm_64 │ │ │ │ │ └── internal │ │ │ │ │ │ └── call_func.h │ │ │ │ ├── riscv │ │ │ │ │ └── internal │ │ │ │ │ │ └── call_func.h │ │ │ │ ├── x86_32 │ │ │ │ │ └── internal │ │ │ │ │ │ └── call_func.h │ │ │ │ └── x86_64 │ │ │ │ │ └── internal │ │ │ │ │ └── call_func.h │ │ │ ├── syscall.cc │ │ │ ├── sysctl.cc │ │ │ ├── time.cc │ │ │ └── vfs_plugin.cc │ │ ├── libdrm │ │ │ ├── dummies.c │ │ │ ├── files.list │ │ │ ├── include │ │ │ │ ├── genode_types.h │ │ │ │ ├── libdrm_macros.h │ │ │ │ └── linux │ │ │ │ │ ├── stddef.h │ │ │ │ │ └── types.h │ │ │ ├── ioctl_dummy.cc │ │ │ ├── ioctl_etnaviv.cc │ │ │ ├── ioctl_iris.cc │ │ │ └── patches │ │ │ │ ├── util_match.patch │ │ │ │ └── xf86drmMode.patch │ │ ├── libgcrypt │ │ │ ├── config.h │ │ │ ├── local_install.mk │ │ │ ├── mod-source-info.h │ │ │ └── mpi │ │ │ │ └── mpi-asm-defs.h │ │ ├── libgpg-error │ │ │ └── config.h │ │ ├── libiconv │ │ │ └── private │ │ │ │ ├── config.h │ │ │ │ └── localcharset.h │ │ ├── liblzma │ │ │ └── config.h │ │ ├── libpng │ │ │ └── config.h │ │ ├── libssh │ │ │ ├── config.h │ │ │ ├── event_bind.patch │ │ │ ├── event_immediate_poll.patch │ │ │ ├── sftp_server_free.patch │ │ │ └── sftp_support.patch │ │ ├── libusb │ │ │ ├── README │ │ │ ├── config.h │ │ │ ├── genode_usb_raw.cc │ │ │ └── libusb.patch │ │ ├── libuvc │ │ │ └── uvc150.patch │ │ ├── libyuv │ │ │ └── constraints.patch │ │ ├── lwip │ │ │ ├── include │ │ │ │ ├── stdlib.h │ │ │ │ └── string.h │ │ │ ├── memmove.patch │ │ │ └── platform │ │ │ │ ├── printf.cc │ │ │ │ ├── rand.cc │ │ │ │ └── sys_arch.cc │ │ ├── mesa │ │ │ ├── egl │ │ │ │ ├── genode_interface.cc │ │ │ │ └── platform.c │ │ │ ├── etnaviv │ │ │ │ ├── drm_init.cc │ │ │ │ ├── platform_etnaviv.c │ │ │ │ └── target.mk │ │ │ ├── files.list │ │ │ ├── include │ │ │ │ ├── errno.h │ │ │ │ ├── machine │ │ │ │ │ └── cpu.h │ │ │ │ ├── platform.h │ │ │ │ └── util │ │ │ │ │ └── futex.h │ │ │ ├── iris │ │ │ │ ├── drm_init.cc │ │ │ │ ├── platform_iris.c │ │ │ │ └── target.mk │ │ │ ├── mesa.cc │ │ │ ├── patches │ │ │ │ ├── bitset_redefined.patch │ │ │ │ ├── etnaviv.patch │ │ │ │ ├── iris.patch │ │ │ │ ├── iris_binder.patch │ │ │ │ ├── iris_bufmgr_tmp.patch │ │ │ │ ├── iris_bufmgr_unmap.patch │ │ │ │ ├── iris_disable_compute.patch │ │ │ │ ├── lseek.patch │ │ │ │ ├── mesa.patch │ │ │ │ ├── os_mmap.patch │ │ │ │ └── softpipe_cache.patch │ │ │ └── softpipe │ │ │ │ ├── platform_softpipe.c │ │ │ │ └── target.mk │ │ ├── mupdf │ │ │ ├── gamma.patch │ │ │ └── resize.patch │ │ ├── musl_tm │ │ │ ├── README │ │ │ ├── secs_to_tm.c │ │ │ ├── tm.h │ │ │ └── tm_to_secs.c │ │ ├── openssl │ │ │ ├── crypto.patch │ │ │ ├── crypto │ │ │ │ ├── dso_conf.h │ │ │ │ └── spec │ │ │ │ │ ├── arm │ │ │ │ │ └── armcap_genode.c │ │ │ │ │ └── neon │ │ │ │ │ └── armcap_genode.c │ │ │ └── spec │ │ │ │ ├── 32bit │ │ │ │ ├── crypto │ │ │ │ │ └── bn_conf.h │ │ │ │ └── openssl │ │ │ │ │ └── opensslconf.h │ │ │ │ └── 64bit │ │ │ │ ├── crypto │ │ │ │ └── bn_conf.h │ │ │ │ └── openssl │ │ │ │ └── opensslconf.h │ │ ├── pcre │ │ │ ├── include │ │ │ │ └── config.h │ │ │ └── pcre_chartables.c │ │ ├── pcsc-lite │ │ │ ├── README │ │ │ ├── config.h │ │ │ ├── init.cc │ │ │ └── pcsc-lite.patch │ │ ├── posix │ │ │ └── construct.cc │ │ ├── qemu-usb │ │ │ ├── README │ │ │ ├── dev-webcam.c │ │ │ ├── dummies.cc │ │ │ ├── files.list │ │ │ ├── host.cc │ │ │ ├── include │ │ │ │ ├── extern_c_begin.h │ │ │ │ ├── extern_c_end.h │ │ │ │ └── qemu_emul.h │ │ │ ├── patches │ │ │ │ ├── hcd-xhci-bei.patch │ │ │ │ ├── hcd-xhci-numports.patch │ │ │ │ ├── usb_bus_nfree.patch │ │ │ │ ├── xhci_frame_wrap.patch │ │ │ │ └── xhci_pci_register.patch │ │ │ ├── qemu_emul.cc │ │ │ ├── symbol.map │ │ │ ├── webcam-backend.h │ │ │ └── webcam.cc │ │ ├── qgenodeviewwidget │ │ │ ├── qgenodeviewwidget.cpp │ │ │ ├── qgenodeviewwidget.json │ │ │ └── qgenodeviewwidget.pro │ │ ├── qpluginwidget │ │ │ ├── qpluginwidget.cpp │ │ │ ├── qpluginwidget.json │ │ │ └── qpluginwidget.pro │ │ ├── qt5_component │ │ │ └── qt_component.cc │ │ ├── sanitizer │ │ │ └── sanitizer.patch │ │ ├── stdcxx │ │ │ └── include_next.patch │ │ └── vfs │ │ │ ├── fatfs │ │ │ ├── README │ │ │ ├── target.mk │ │ │ └── vfs_fatfs.cc │ │ │ ├── jitterentropy │ │ │ ├── target.mk │ │ │ ├── vfs.cc │ │ │ └── vfs_jitterentropy.h │ │ │ ├── libusb │ │ │ ├── target.mk │ │ │ └── vfs_libusb.cc │ │ │ ├── lwip │ │ │ ├── symbol.map │ │ │ ├── target.mk │ │ │ └── vfs.cc │ │ │ └── oss │ │ │ ├── README │ │ │ ├── target.mk │ │ │ └── vfs_oss.cc │ │ ├── server │ │ └── system_rtc │ │ │ ├── README │ │ │ ├── main.cc │ │ │ └── target.mk │ │ └── test │ │ ├── execve │ │ ├── target.mk │ │ └── test.cc │ │ ├── expat │ │ ├── main.cc │ │ └── target.mk │ │ ├── fatfs_block_io │ │ ├── component.cc │ │ └── target.mk │ │ ├── fork │ │ ├── target.mk │ │ └── test.cc │ │ ├── ieee754 │ │ ├── target.mk │ │ └── tst-ieee754.c │ │ ├── ldso │ │ ├── dl │ │ │ └── target.mk │ │ ├── include │ │ │ └── test-ldso.h │ │ ├── lib_1.cc │ │ ├── lib_2.cc │ │ ├── lib_dl.cc │ │ ├── main.cc │ │ └── target.mk │ │ ├── libc │ │ ├── main.cc │ │ └── target.mk │ │ ├── libc_block │ │ ├── main.cc │ │ └── target.mk │ │ ├── libc_component │ │ ├── main.cc │ │ └── target.mk │ │ ├── libc_connect │ │ ├── main.cc │ │ └── target.mk │ │ ├── libc_counter │ │ ├── sink │ │ │ ├── main.cc │ │ │ └── target.mk │ │ └── source │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── libc_fifo_pipe │ │ ├── main.cc │ │ └── target.mk │ │ ├── libc_getaddrinfo │ │ ├── main.c │ │ └── target.mk │ │ ├── libc_getenv │ │ ├── main.c │ │ └── target.mk │ │ ├── libc_getpwent │ │ ├── main.c │ │ └── target.mk │ │ ├── libc_integration │ │ ├── README │ │ ├── definitions.h │ │ ├── fd_set.h │ │ ├── input_sender.h │ │ ├── libc.h │ │ ├── main.cc │ │ ├── pipe.h │ │ ├── stdcxx_log.cc │ │ ├── stdcxx_log.h │ │ ├── target.mk │ │ ├── thread.cc │ │ └── thread.h │ │ ├── libc_pipe │ │ ├── main.cc │ │ └── target.mk │ │ ├── libc_rtc │ │ ├── main.cc │ │ └── target.mk │ │ ├── libc_select │ │ ├── main.cc │ │ └── target.mk │ │ ├── libc_vfs │ │ ├── main.cc │ │ └── target.mk │ │ ├── libc_vfs_block │ │ ├── main.cc │ │ └── target.mk │ │ ├── libc_vfs_tap │ │ ├── main.c │ │ └── target.mk │ │ ├── libc_with_libc │ │ ├── main.cc │ │ └── target.mk │ │ ├── liblzma │ │ ├── main.c │ │ └── target.mk │ │ ├── libports │ │ ├── curl │ │ │ └── target.mk │ │ ├── freetype │ │ │ └── target.mk │ │ ├── fribidi │ │ │ └── target.mk │ │ ├── gmp │ │ │ └── target.mk │ │ ├── jbig2dec │ │ │ └── target.mk │ │ ├── jitterentropy │ │ │ └── target.mk │ │ ├── jpeg │ │ │ └── target.mk │ │ ├── libbz2 │ │ │ └── target.mk │ │ ├── libcrypto │ │ │ └── target.mk │ │ ├── libexfat │ │ │ └── target.mk │ │ ├── libext2fs │ │ │ └── target.mk │ │ ├── libiconv │ │ │ └── target.mk │ │ ├── libntfs-3g │ │ │ └── target.mk │ │ ├── libpng │ │ │ └── target.mk │ │ ├── libssh │ │ │ └── target.mk │ │ ├── libssl │ │ │ └── target.mk │ │ ├── main.cc │ │ ├── mesa │ │ │ └── target.mk │ │ ├── mupdf │ │ │ └── target.mk │ │ ├── ncurses │ │ │ └── target.mk │ │ ├── openjpeg │ │ │ └── target.mk │ │ └── zlib │ │ │ └── target.mk │ │ ├── lwip │ │ ├── http_clnt │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── http_srv │ │ │ ├── main.cc │ │ │ └── target.mk │ │ └── udp │ │ │ ├── client │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ └── server │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── lz4 │ │ ├── main.c │ │ └── target.mk │ │ ├── memcpy │ │ ├── linux │ │ │ ├── Makefile │ │ │ └── main.cc │ │ ├── main.cc │ │ ├── memcpy.h │ │ └── target.mk │ │ ├── mesa_demo │ │ ├── eglut │ │ │ ├── eglut.c │ │ │ ├── eglut.h │ │ │ ├── eglut_genode.cc │ │ │ ├── eglutint.h │ │ │ └── gl_wrap.h │ │ ├── gears │ │ │ ├── LICENSE │ │ │ ├── eglgears.c │ │ │ └── target.mk │ │ └── triangle_gl │ │ │ ├── main.c │ │ │ └── target.mk │ │ ├── netty │ │ ├── netty.cc │ │ ├── netty.h │ │ ├── tcp │ │ │ ├── main.cc │ │ │ └── target.mk │ │ └── udp │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── oss │ │ ├── main.cc │ │ └── target.mk │ │ ├── pcg32 │ │ └── target.mk │ │ ├── pthread │ │ ├── main.cc │ │ └── target.mk │ │ ├── qt5 │ │ ├── qpluginwidget │ │ │ ├── config.plugin │ │ │ ├── main.cpp │ │ │ ├── qpluginwidget.pro │ │ │ └── target.mk │ │ ├── qt_core │ │ │ ├── main.cpp │ │ │ ├── qt_core.pro │ │ │ └── target.mk │ │ └── qt_quick │ │ │ ├── main.cpp │ │ │ ├── qt_quick.pro │ │ │ ├── qt_quick.qml │ │ │ ├── qt_quick.qrc │ │ │ └── target.mk │ │ ├── smartcard │ │ ├── main.cc │ │ └── target.mk │ │ ├── spark │ │ ├── README │ │ ├── lib │ │ │ ├── add_package.adb │ │ │ └── add_package.ads │ │ ├── machinery.adb │ │ ├── machinery.ads │ │ ├── machinery.h │ │ ├── main.adb │ │ ├── print.cc │ │ ├── spark.adc │ │ ├── startup.cc │ │ └── target.mk │ │ ├── spark_exception │ │ ├── except.adb │ │ ├── except.ads │ │ ├── main.cc │ │ └── target.mk │ │ ├── spark_secondary_stack │ │ ├── main.cc │ │ ├── stack.adb │ │ ├── stack.ads │ │ ├── stack.gpr │ │ └── target.mk │ │ ├── stdcxx │ │ ├── main.cc │ │ └── target.mk │ │ ├── system_rtc │ │ ├── main.cc │ │ └── target.mk │ │ └── tcp │ │ ├── main.c │ │ └── target.mk ├── os │ ├── README │ ├── doc │ │ └── init.txt │ ├── include │ │ ├── audio_in_session │ │ │ ├── audio_in_session.h │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── rpc_object.h │ │ ├── audio_out_session │ │ │ ├── audio_out_session.h │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── rpc_object.h │ │ ├── blit │ │ │ ├── blit.h │ │ │ └── painter.h │ │ ├── block │ │ │ ├── component.h │ │ │ ├── driver.h │ │ │ ├── request.h │ │ │ └── request_stream.h │ │ ├── block_session │ │ │ ├── block_session.h │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── rpc_object.h │ │ ├── capture_session │ │ │ ├── capture_session.h │ │ │ ├── client.h │ │ │ └── connection.h │ │ ├── decorator │ │ │ ├── types.h │ │ │ ├── window.h │ │ │ ├── window_factory.h │ │ │ ├── window_stack.h │ │ │ └── xml_utils.h │ │ ├── event_session │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── event_session.h │ │ ├── file_system │ │ │ ├── listener.h │ │ │ ├── node.h │ │ │ ├── open_node.h │ │ │ └── util.h │ │ ├── file_system_session │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ ├── file_system_session.h │ │ │ └── rpc_object.h │ │ ├── framebuffer_session │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── framebuffer_session.h │ │ ├── genode_c_api │ │ │ ├── base.h │ │ │ ├── block.h │ │ │ ├── event.h │ │ │ ├── uplink.h │ │ │ └── usb.h │ │ ├── gpio │ │ │ ├── component.h │ │ │ ├── config.h │ │ │ └── driver.h │ │ ├── gpio_session │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── gpio_session.h │ │ ├── gpu │ │ │ ├── info_etnaviv.h │ │ │ └── info_intel.h │ │ ├── gpu_session │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── gpu_session.h │ │ ├── gui_session │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── gui_session.h │ │ ├── i2c_session │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── i2c_session.h │ │ ├── init │ │ │ └── child_policy.h │ │ ├── input │ │ │ ├── component.h │ │ │ ├── event.h │ │ │ ├── event_queue.h │ │ │ ├── keycodes.h │ │ │ └── root.h │ │ ├── input_session │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── input_session.h │ │ ├── ldso │ │ │ └── arch.h │ │ ├── legacy │ │ │ └── x86 │ │ │ │ ├── platform_device │ │ │ │ ├── capability.h │ │ │ │ ├── client.h │ │ │ │ ├── device.h │ │ │ │ └── platform_device.h │ │ │ │ └── platform_session │ │ │ │ ├── capability.h │ │ │ │ ├── client.h │ │ │ │ ├── connection.h │ │ │ │ └── platform_session.h │ │ ├── loader_session │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── loader_session.h │ │ ├── mixer │ │ │ └── channel.h │ │ ├── net │ │ │ ├── arp.h │ │ │ ├── dhcp.h │ │ │ ├── ethernet.h │ │ │ ├── icmp.h │ │ │ ├── internet_checksum.h │ │ │ ├── ipv4.h │ │ │ ├── mac_address.h │ │ │ ├── netaddress.h │ │ │ ├── port.h │ │ │ ├── size_guard.h │ │ │ ├── sntp.h │ │ │ ├── tcp.h │ │ │ └── udp.h │ │ ├── nic │ │ │ ├── component.h │ │ │ └── packet_allocator.h │ │ ├── nic_session │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ ├── nic_session.h │ │ │ └── rpc_object.h │ │ ├── nitpicker_gfx │ │ │ ├── box_painter.h │ │ │ ├── glyph_painter.h │ │ │ ├── text_painter.h │ │ │ ├── texture_painter.h │ │ │ └── tff_font.h │ │ ├── os │ │ │ ├── attached_mmio.h │ │ │ ├── buffered_xml.h │ │ │ ├── child_policy_dynamic_rom.h │ │ │ ├── dither_painter.h │ │ │ ├── dynamic_rom_session.h │ │ │ ├── handle_registry.h │ │ │ ├── packet_allocator.h │ │ │ ├── packet_stream.h │ │ │ ├── path.h │ │ │ ├── pin_driver.h │ │ │ ├── pixel_alpha8.h │ │ │ ├── pixel_rgb565.h │ │ │ ├── pixel_rgb888.h │ │ │ ├── pixel_rgba.h │ │ │ ├── reporter.h │ │ │ ├── ring_buffer.h │ │ │ ├── session_policy.h │ │ │ ├── session_requester.h │ │ │ ├── static_parent_services.h │ │ │ ├── static_root.h │ │ │ ├── surface.h │ │ │ ├── texture.h │ │ │ ├── texture_rgb565.h │ │ │ ├── texture_rgb888.h │ │ │ └── vfs.h │ │ ├── packet_stream_rx │ │ │ ├── client.h │ │ │ ├── packet_stream_rx.h │ │ │ └── rpc_object.h │ │ ├── packet_stream_tx │ │ │ ├── client.h │ │ │ ├── packet_stream_tx.h │ │ │ └── rpc_object.h │ │ ├── pci │ │ │ ├── config.h │ │ │ └── types.h │ │ ├── pin_control_session │ │ │ ├── component.h │ │ │ ├── connection.h │ │ │ └── pin_control_session.h │ │ ├── pin_state_session │ │ │ ├── component.h │ │ │ ├── connection.h │ │ │ └── pin_state_session.h │ │ ├── platform_session │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ ├── device.h │ │ │ ├── dma_buffer.h │ │ │ └── platform_session.h │ │ ├── pointer │ │ │ ├── dither_painter.h │ │ │ └── shape_report.h │ │ ├── ram_fs │ │ │ ├── chunk.h │ │ │ └── param.h │ │ ├── report_rom │ │ │ ├── report_service.h │ │ │ ├── rom_module.h │ │ │ ├── rom_registry.h │ │ │ └── rom_service.h │ │ ├── report_session │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── report_session.h │ │ ├── rtc_session │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── rtc_session.h │ │ ├── sandbox │ │ │ └── sandbox.h │ │ ├── smbios │ │ │ └── smbios.h │ │ ├── spec │ │ │ ├── arm │ │ │ │ └── os │ │ │ │ │ └── backtrace.h │ │ │ ├── arm_64 │ │ │ │ └── os │ │ │ │ │ └── backtrace.h │ │ │ ├── imx53 │ │ │ │ └── imx_framebuffer_session │ │ │ │ │ ├── client.h │ │ │ │ │ ├── connection.h │ │ │ │ │ └── imx_framebuffer_session.h │ │ │ ├── x86_32 │ │ │ │ └── os │ │ │ │ │ └── backtrace.h │ │ │ └── x86_64 │ │ │ │ └── os │ │ │ │ └── backtrace.h │ │ ├── terminal │ │ │ ├── cell_array.h │ │ │ ├── char_cell_array_character_screen.h │ │ │ ├── character_screen.h │ │ │ ├── character_screen_tracer.h │ │ │ ├── decoder.h │ │ │ ├── font_face.h │ │ │ ├── print.h │ │ │ ├── read_buffer.h │ │ │ └── types.h │ │ ├── terminal_session │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── terminal_session.h │ │ ├── trace │ │ │ ├── policy.h │ │ │ └── trace_buffer.h │ │ ├── uart_session │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ └── uart_session.h │ │ ├── uplink_session │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ ├── rpc_object.h │ │ │ └── uplink_session.h │ │ ├── usb │ │ │ ├── packet_handler.h │ │ │ ├── types.h │ │ │ └── usb.h │ │ ├── usb_session │ │ │ ├── capability.h │ │ │ ├── client.h │ │ │ ├── connection.h │ │ │ ├── rpc_object.h │ │ │ └── usb_session.h │ │ ├── util │ │ │ ├── bezier.h │ │ │ ├── color.h │ │ │ ├── dirty_rect.h │ │ │ ├── dither_matrix.h │ │ │ ├── endian.h │ │ │ ├── formatted_output.h │ │ │ ├── geometry.h │ │ │ └── utf8.h │ │ ├── vfs │ │ │ ├── dir_file_system.h │ │ │ ├── directory_service.h │ │ │ ├── env.h │ │ │ ├── file_io_service.h │ │ │ ├── file_system.h │ │ │ ├── file_system_factory.h │ │ │ ├── print.h │ │ │ ├── readonly_value_file_system.h │ │ │ ├── simple_env.h │ │ │ ├── single_file_system.h │ │ │ ├── types.h │ │ │ ├── value_file_system.h │ │ │ └── vfs_handle.h │ │ └── virtio │ │ │ ├── mmio_device.h │ │ │ ├── pci_device.h │ │ │ └── queue.h │ ├── lib │ │ ├── import │ │ │ └── import-nic_driver.mk │ │ ├── mk │ │ │ ├── blit.mk │ │ │ ├── net.mk │ │ │ ├── nic_driver.mk │ │ │ ├── sandbox.mk │ │ │ ├── spec │ │ │ │ ├── arm │ │ │ │ │ └── blit.mk │ │ │ │ ├── arm_64 │ │ │ │ │ └── blit.mk │ │ │ │ ├── x86_32 │ │ │ │ │ └── blit.mk │ │ │ │ └── x86_64 │ │ │ │ │ └── blit.mk │ │ │ ├── vfs.mk │ │ │ ├── vfs_capture.mk │ │ │ └── vfs_tap.mk │ │ └── symbols │ │ │ ├── sandbox │ │ │ └── vfs │ ├── recipes │ │ ├── api │ │ │ ├── audio_in_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── audio_out_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── blit │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── block_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── capture_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── event_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── file_system │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── file_system_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── framebuffer_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── genode_c_api │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── gpio_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── gpu_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── gui_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── i2c_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── input_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── loader_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── net │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── nic_driver │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── nic_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── nitpicker_gfx │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── os │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── pin_control_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── pin_state_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── platform_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── report_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── rtc_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── sandbox │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── session.inc │ │ │ ├── terminal_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── trace │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── uart_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── uplink_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── usb_session │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── vfs │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ └── virtio │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ ├── pkg │ │ │ ├── black_hole │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── chroot │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── clipboard │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── cpu_balancer │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── cpu_balancer_config │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── drivers_interactive-linux │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ └── hash │ │ │ ├── drivers_interactive-pbxa9 │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ └── hash │ │ │ ├── drivers_interactive-pc │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ └── hash │ │ │ ├── drivers_interactive-virt_qemu │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ └── hash │ │ │ ├── drivers_nic-linux │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ └── hash │ │ │ ├── drivers_nic-pbxa9 │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ └── hash │ │ │ ├── drivers_nic-virt_qemu │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ └── hash │ │ │ ├── fs_report │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── fs_rom │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── mixer │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── nic_router-nat │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── nit_focus │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── recall_fs │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── report_rom │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── rom_filter │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── rom_reporter │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-black_hole │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-capture │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-clipboard │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-dynamic_config │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-dynamic_config_loader │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-fault_detection │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-fs_packet │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-fs_report │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-fs_rom_update │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-fs_rom_update_fs │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-fs_rom_update_ram │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-init │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-init_loop │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-lx_block │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-nic_loopback │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-part_block_gpt │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-part_block_mbr │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-ram_fs_chunk │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-read_only_rom │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-report_rom │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-resource_request │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-resource_yield │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-rom_filter │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-rtc │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-sandbox │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-signal │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-slab │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-terminal_crosslink │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-trace │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-trace_buffer │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-trace_logger │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-utf8 │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-vfs_block │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-vfs_stress_fs │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-vfs_stress_ram │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── test-weak_ptr │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── trace_logger │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ ├── vfs │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ │ └── vfs_block │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ ├── hash │ │ │ │ └── runtime │ │ ├── raw │ │ │ ├── drivers_interactive-linux │ │ │ │ ├── content.mk │ │ │ │ ├── drivers.config │ │ │ │ ├── event_filter.config │ │ │ │ └── hash │ │ │ ├── drivers_interactive-pbxa9 │ │ │ │ ├── content.mk │ │ │ │ ├── drivers.config │ │ │ │ ├── event_filter.config │ │ │ │ └── hash │ │ │ ├── drivers_interactive-pc │ │ │ │ ├── content.mk │ │ │ │ ├── drivers.config │ │ │ │ ├── event_filter.config │ │ │ │ ├── fb_drv.config │ │ │ │ └── hash │ │ │ ├── drivers_interactive-virt_qemu │ │ │ │ ├── content.mk │ │ │ │ ├── drivers.config │ │ │ │ ├── event_filter.config │ │ │ │ └── hash │ │ │ ├── drivers_nic-linux │ │ │ │ ├── content.mk │ │ │ │ ├── drivers.config │ │ │ │ └── hash │ │ │ ├── drivers_nic-pbxa9 │ │ │ │ ├── content.mk │ │ │ │ ├── drivers.config │ │ │ │ └── hash │ │ │ ├── drivers_nic-virt_qemu │ │ │ │ ├── content.mk │ │ │ │ ├── drivers.config │ │ │ │ └── hash │ │ │ ├── pbxa9-devices │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── test-init │ │ │ │ ├── content.mk │ │ │ │ ├── hash │ │ │ │ └── test-init.config │ │ │ ├── test-lx_block │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ ├── test-part_block_gpt │ │ │ │ ├── ata.gpt.raw.tar.gz │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ │ └── test-part_block_mbr │ │ │ │ ├── ata.mbr.raw.tar.gz │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ └── src │ │ │ ├── acpi_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── ahci_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── black_hole │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── block_tester │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── boot_fb_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── cached_fs_rom │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── chroot │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── clipboard │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── cpu_balancer │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── cpu_burner │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── dummy │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── dummy_rtc_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── dynamic_rom │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── event_filter │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── fb_sdl │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── fs_report │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── fs_rom │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── global_keys_handler │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── gui_fb │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── init │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── input_event_bridge │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── intel_gpu_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── lan9118_nic_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── linux_nic_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── linux_rtc_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── loader │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── log_core │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── log_terminal │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── lx_block │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── lx_fs │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── mixer │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── nic_bridge │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── nic_loopback │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── nic_router │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── nit_focus │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── nitpicker │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── nvme_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── part_block │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── pbxa9_drivers │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── platform_drv │ │ │ ├── content.inc │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── ps2_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── report_rom │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── rom_filter │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── rom_logger │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── rom_reporter │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── rom_to_file │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── rtc_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── sandbox │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── sequence │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── shim │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── terminal_crosslink │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── terminal_log │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-black_hole │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-bomb │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-capture │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-clipboard │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-dynamic_config │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-fault_detection │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-fs_packet │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-fs_report │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-immutable_rom │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-init │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-init_loop │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-nic_loopback │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-ram_fs_chunk │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-report_rom │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-resource_request │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-resource_yield │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-rtc │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-sandbox │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-signal │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-slab │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-terminal_crosslink │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-trace │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-trace_buffer │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-trace_logger │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-utf8 │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-vfs_capture │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-vfs_stress │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── test-weak_ptr │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── top │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── trace_logger │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── trace_policy │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── trace_subject_reporter │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── usb_block_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── vfs │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── vfs_block │ │ │ ├── api │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── vfs_capture │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── vfs_tap │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── virt_qemu_drivers │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── virtdev_rom │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── virtio_fb_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── virtio_input_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── virtio_nic_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ └── vmm │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ ├── run │ │ ├── ahci_block.run │ │ ├── audio_out_click.run │ │ ├── block_request_stream.run │ │ ├── block_tester.run │ │ ├── bomb.run │ │ ├── cache.run │ │ ├── cpu_balancer.run │ │ ├── cpu_bench.run │ │ ├── cpu_quota.run │ │ ├── demo.run │ │ ├── event_filter.run │ │ ├── fb_bench.run │ │ ├── framebuffer.run │ │ ├── gpio_led.run │ │ ├── gpio_signal.run │ │ ├── i2c_mcp9808.run │ │ ├── init_smp.run │ │ ├── input.run │ │ ├── kdb_uart_drv.run │ │ ├── loader.run │ │ ├── log_core.run │ │ ├── lx_fs_import.run │ │ ├── mixer.run │ │ ├── nic_bridge_stress.run │ │ ├── nic_dump.run │ │ ├── nic_router_dhcp.inc │ │ ├── nic_router_dhcp_managed.run │ │ ├── nic_router_dhcp_unmanaged.run │ │ ├── nic_router_disable_arp.run │ │ ├── nic_router_flood.run │ │ ├── nic_router_stress.run │ │ ├── nic_stress.inc │ │ ├── nvme.run │ │ ├── pci.run │ │ ├── ping.run │ │ ├── ping_nic_router.run │ │ ├── platform_drv.run │ │ ├── pointer.run │ │ ├── rom_to_file.run │ │ ├── rtc.run │ │ ├── sd_card.run │ │ ├── sd_card_bench.run │ │ ├── smbios_decoder.run │ │ ├── tar_rom.run │ │ ├── test.run │ │ ├── timeout.run │ │ ├── tz_vmm.run │ │ ├── uart.run │ │ ├── usb_block.run │ │ ├── vfs_block.run │ │ ├── vmm_arm.run │ │ └── vmm_x86.run │ ├── src │ │ ├── app │ │ │ ├── block_tester │ │ │ │ ├── README │ │ │ │ ├── main.cc │ │ │ │ ├── target.mk │ │ │ │ ├── test_ping_pong.h │ │ │ │ ├── test_random.h │ │ │ │ ├── test_replay.h │ │ │ │ └── test_sequential.h │ │ │ ├── cpu_burner │ │ │ │ ├── README │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── dummy │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── global_keys_handler │ │ │ │ ├── README │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── log_core │ │ │ │ ├── component.cc │ │ │ │ └── target.mk │ │ │ ├── nit_focus │ │ │ │ ├── README │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── pci_decode │ │ │ │ ├── bridge.h │ │ │ │ ├── irq.h │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── ping │ │ │ │ ├── README │ │ │ │ ├── config.xsd │ │ │ │ ├── dhcp_client.cc │ │ │ │ ├── dhcp_client.h │ │ │ │ ├── ipv4_address_prefix.cc │ │ │ │ ├── ipv4_address_prefix.h │ │ │ │ ├── ipv4_config.cc │ │ │ │ ├── ipv4_config.h │ │ │ │ ├── main.cc │ │ │ │ ├── nic.cc │ │ │ │ ├── nic.h │ │ │ │ ├── protocol.h │ │ │ │ ├── target.mk │ │ │ │ ├── xml_node.cc │ │ │ │ └── xml_node.h │ │ │ ├── pointer │ │ │ │ ├── README │ │ │ │ ├── big_mouse.h │ │ │ │ ├── main.cc │ │ │ │ ├── rom_registry.h │ │ │ │ └── target.mk │ │ │ ├── rom_logger │ │ │ │ ├── README │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── rom_reporter │ │ │ │ ├── README │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── rom_to_file │ │ │ │ ├── README │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── sequence │ │ │ │ ├── README │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── shim │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── smbios_decoder │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── status_bar │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── top │ │ │ │ ├── README │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── trace_logger │ │ │ │ ├── README │ │ │ │ ├── avl_tree.h │ │ │ │ ├── config.xsd │ │ │ │ ├── main.cc │ │ │ │ ├── monitor.cc │ │ │ │ ├── monitor.h │ │ │ │ ├── policy.cc │ │ │ │ ├── policy.h │ │ │ │ ├── target.mk │ │ │ │ ├── xml_node.cc │ │ │ │ └── xml_node.h │ │ │ ├── trace_subject_reporter │ │ │ │ ├── README │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ └── usb_report_filter │ │ │ │ ├── README │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ ├── drivers │ │ │ ├── acpi │ │ │ │ ├── README │ │ │ │ ├── acpi.cc │ │ │ │ ├── acpi.h │ │ │ │ ├── efi_system_table.h │ │ │ │ ├── main.cc │ │ │ │ ├── memory.h │ │ │ │ ├── smbios_table_reporter.cc │ │ │ │ ├── smbios_table_reporter.h │ │ │ │ └── spec │ │ │ │ │ └── x86 │ │ │ │ │ └── target.mk │ │ │ ├── ahci │ │ │ │ ├── README │ │ │ │ ├── ahci.h │ │ │ │ ├── ata_protocol.h │ │ │ │ ├── atapi_protocol.h │ │ │ │ ├── main.cc │ │ │ │ ├── spec │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── platform.cc │ │ │ │ │ │ ├── platform.h │ │ │ │ │ │ └── target.mk │ │ │ │ ├── target.inc │ │ │ │ └── util.h │ │ │ ├── audio │ │ │ │ └── spec │ │ │ │ │ └── linux │ │ │ │ │ ├── alsa.c │ │ │ │ │ ├── alsa.h │ │ │ │ │ ├── main.cc │ │ │ │ │ └── target.mk │ │ │ ├── framebuffer │ │ │ │ ├── boot │ │ │ │ │ ├── README │ │ │ │ │ ├── main.cc │ │ │ │ │ └── target.mk │ │ │ │ ├── pl11x │ │ │ │ │ ├── main.cc │ │ │ │ │ └── target.mk │ │ │ │ ├── ram │ │ │ │ │ ├── README │ │ │ │ │ ├── main.cc │ │ │ │ │ └── target.mk │ │ │ │ ├── sdl │ │ │ │ │ ├── convert_keycode.h │ │ │ │ │ ├── main.cc │ │ │ │ │ └── target.mk │ │ │ │ └── virtio │ │ │ │ │ ├── component.h │ │ │ │ │ ├── mmio_device.cc │ │ │ │ │ ├── spec │ │ │ │ │ ├── arm │ │ │ │ │ │ └── target.mk │ │ │ │ │ └── arm_64 │ │ │ │ │ │ └── target.mk │ │ │ │ │ └── target_mmio.inc │ │ │ ├── gpio │ │ │ │ ├── imx │ │ │ │ │ ├── driver.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── main.cc │ │ │ │ │ └── spec │ │ │ │ │ │ ├── arm_v7 │ │ │ │ │ │ └── target.mk │ │ │ │ │ │ └── arm_v8 │ │ │ │ │ │ └── target.mk │ │ │ │ └── rpi │ │ │ │ │ ├── driver.h │ │ │ │ │ ├── empty.cc │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── main.cc │ │ │ │ │ └── target.mk │ │ │ ├── gpu │ │ │ │ └── intel │ │ │ │ │ ├── commands.h │ │ │ │ │ ├── context.h │ │ │ │ │ ├── context_descriptor.h │ │ │ │ │ ├── ggtt.h │ │ │ │ │ ├── main.cc │ │ │ │ │ ├── mmio.h │ │ │ │ │ ├── mmio_dump.cc │ │ │ │ │ ├── platform_session.h │ │ │ │ │ ├── ppgtt.h │ │ │ │ │ ├── ppgtt_allocator.h │ │ │ │ │ ├── resources.h │ │ │ │ │ ├── ring_buffer.h │ │ │ │ │ ├── target.mk │ │ │ │ │ ├── types.h │ │ │ │ │ ├── utils.h │ │ │ │ │ └── workarounds.h │ │ │ ├── i2c │ │ │ │ ├── README │ │ │ │ ├── component.h │ │ │ │ ├── i2c_interface.h │ │ │ │ ├── imx8q_evk │ │ │ │ │ ├── driver.cc │ │ │ │ │ ├── driver.h │ │ │ │ │ ├── mmio.h │ │ │ │ │ └── target.mk │ │ │ │ ├── main.cc │ │ │ │ └── target.inc │ │ │ ├── input │ │ │ │ └── virtio │ │ │ │ │ ├── README │ │ │ │ │ ├── component.h │ │ │ │ │ ├── mmio_device.cc │ │ │ │ │ ├── spec │ │ │ │ │ ├── arm │ │ │ │ │ │ └── target.mk │ │ │ │ │ └── arm_64 │ │ │ │ │ │ └── target.mk │ │ │ │ │ └── target_mmio.inc │ │ │ ├── nic │ │ │ │ ├── include │ │ │ │ │ └── drivers │ │ │ │ │ │ └── nic │ │ │ │ │ │ └── uplink_client_base.h │ │ │ │ ├── lan9118 │ │ │ │ │ ├── lan9118.h │ │ │ │ │ ├── main.cc │ │ │ │ │ └── target.mk │ │ │ │ ├── spec │ │ │ │ │ └── linux │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── main.cc │ │ │ │ │ │ └── target.mk │ │ │ │ └── virtio │ │ │ │ │ ├── README │ │ │ │ │ ├── component.h │ │ │ │ │ ├── config.xsd │ │ │ │ │ ├── mmio_device.cc │ │ │ │ │ ├── pci_device.cc │ │ │ │ │ ├── spec │ │ │ │ │ ├── arm │ │ │ │ │ │ └── target.mk │ │ │ │ │ ├── arm_64 │ │ │ │ │ │ └── target.mk │ │ │ │ │ └── x86 │ │ │ │ │ │ └── target.mk │ │ │ │ │ └── target_mmio.inc │ │ │ ├── nvme │ │ │ │ ├── README │ │ │ │ ├── main.cc │ │ │ │ ├── pci.h │ │ │ │ ├── target.mk │ │ │ │ └── util.h │ │ │ ├── platform │ │ │ │ ├── README │ │ │ │ ├── clock.h │ │ │ │ ├── common.h │ │ │ │ ├── device.cc │ │ │ │ ├── device.h │ │ │ │ ├── device_component.cc │ │ │ │ ├── device_component.h │ │ │ │ ├── device_model_policy.cc │ │ │ │ ├── device_pd.cc │ │ │ │ ├── device_pd.h │ │ │ │ ├── legacy │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── device_pd.cc │ │ │ │ │ │ ├── device_pd.h │ │ │ │ │ │ ├── irq.cc │ │ │ │ │ │ ├── irq.h │ │ │ │ │ │ ├── irq_proxy.h │ │ │ │ │ │ ├── main.cc │ │ │ │ │ │ ├── nonpci_devices.cc │ │ │ │ │ │ ├── pci_bridge.h │ │ │ │ │ │ ├── pci_config_access.h │ │ │ │ │ │ ├── pci_device.cc │ │ │ │ │ │ ├── pci_device_component.h │ │ │ │ │ │ ├── pci_device_config.h │ │ │ │ │ │ ├── pci_session_component.h │ │ │ │ │ │ ├── session.cc │ │ │ │ │ │ └── target.mk │ │ │ │ ├── main.cc │ │ │ │ ├── named_registry.h │ │ │ │ ├── pci.cc │ │ │ │ ├── pci.h │ │ │ │ ├── policy.h │ │ │ │ ├── power.h │ │ │ │ ├── reset.h │ │ │ │ ├── root.cc │ │ │ │ ├── root.h │ │ │ │ ├── session_component.cc │ │ │ │ ├── session_component.h │ │ │ │ ├── target.inc │ │ │ │ ├── target.mk │ │ │ │ └── types.h │ │ │ ├── ps2 │ │ │ │ ├── README │ │ │ │ ├── input_driver.h │ │ │ │ ├── irq_handler.h │ │ │ │ ├── led_state.h │ │ │ │ ├── pl050 │ │ │ │ │ ├── main.cc │ │ │ │ │ ├── pl050.h │ │ │ │ │ └── target.mk │ │ │ │ ├── ps2_keyboard.h │ │ │ │ ├── ps2_mouse.h │ │ │ │ ├── scan_code_set_1.h │ │ │ │ ├── scan_code_set_2.h │ │ │ │ ├── serial_interface.h │ │ │ │ ├── verbose.h │ │ │ │ └── x86 │ │ │ │ │ ├── i8042.h │ │ │ │ │ ├── main.cc │ │ │ │ │ └── target.mk │ │ │ ├── rtc │ │ │ │ ├── README │ │ │ │ ├── dummy │ │ │ │ │ ├── rtc.cc │ │ │ │ │ └── target.mk │ │ │ │ ├── main.cc │ │ │ │ ├── rtc.h │ │ │ │ ├── spec │ │ │ │ │ ├── linux │ │ │ │ │ │ ├── rtc.cc │ │ │ │ │ │ └── target.mk │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── rtc.cc │ │ │ │ │ │ └── target.mk │ │ │ │ └── target.inc │ │ │ ├── sd_card │ │ │ │ ├── adma2.cc │ │ │ │ ├── adma2.h │ │ │ │ ├── benchmark.h │ │ │ │ ├── driver_base.h │ │ │ │ ├── imx │ │ │ │ │ ├── driver.cc │ │ │ │ │ └── driver.h │ │ │ │ ├── imx53 │ │ │ │ │ ├── driver.cc │ │ │ │ │ └── target.mk │ │ │ │ ├── imx6 │ │ │ │ │ ├── driver.cc │ │ │ │ │ └── target.mk │ │ │ │ ├── main.cc │ │ │ │ ├── pl180 │ │ │ │ │ ├── driver.cc │ │ │ │ │ ├── driver.h │ │ │ │ │ └── target.mk │ │ │ │ ├── sd_card.h │ │ │ │ └── target.inc │ │ │ ├── touch │ │ │ │ └── synaptics_dsx │ │ │ │ │ ├── i2c.h │ │ │ │ │ ├── irq_handler.h │ │ │ │ │ ├── main.cc │ │ │ │ │ └── target.mk │ │ │ ├── uart │ │ │ │ ├── README │ │ │ │ ├── kdb │ │ │ │ │ ├── spec │ │ │ │ │ │ └── fiasco │ │ │ │ │ │ │ └── target.mk │ │ │ │ │ ├── target.inc │ │ │ │ │ └── uart_driver.h │ │ │ │ ├── main.cc │ │ │ │ ├── spec │ │ │ │ │ ├── pbxa9 │ │ │ │ │ │ ├── target.mk │ │ │ │ │ │ └── uart_driver.h │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── target.mk │ │ │ │ │ │ └── uart_driver.h │ │ │ │ ├── target.inc │ │ │ │ ├── uart_component.h │ │ │ │ └── uart_driver_base.h │ │ │ ├── usb_block │ │ │ │ ├── README │ │ │ │ ├── cbw_csw.h │ │ │ │ ├── main.cc │ │ │ │ ├── scsi.h │ │ │ │ └── target.mk │ │ │ └── virtdev_rom │ │ │ │ ├── README │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ ├── init │ │ │ ├── config.priority │ │ │ ├── config.xsd │ │ │ ├── main.cc │ │ │ └── target.mk │ │ ├── lib │ │ │ ├── blit │ │ │ │ ├── blit.cc │ │ │ │ ├── blit_helper.h │ │ │ │ └── spec │ │ │ │ │ ├── arm │ │ │ │ │ └── blit_helper.h │ │ │ │ │ ├── arm_64 │ │ │ │ │ └── blit_helper.h │ │ │ │ │ ├── x86 │ │ │ │ │ └── blit_helper.h │ │ │ │ │ ├── x86_32 │ │ │ │ │ └── mmx.h │ │ │ │ │ └── x86_64 │ │ │ │ │ └── mmx.h │ │ │ ├── genode_c_api │ │ │ │ ├── block.cc │ │ │ │ ├── event.cc │ │ │ │ ├── uplink.cc │ │ │ │ └── usb.cc │ │ │ ├── net │ │ │ │ ├── arp.cc │ │ │ │ ├── dhcp.cc │ │ │ │ ├── ethernet.cc │ │ │ │ ├── icmp.cc │ │ │ │ ├── internet_checksum.cc │ │ │ │ ├── ipv4.cc │ │ │ │ ├── tcp.cc │ │ │ │ └── udp.cc │ │ │ ├── sandbox │ │ │ │ ├── alias.h │ │ │ │ ├── child.cc │ │ │ │ ├── child.h │ │ │ │ ├── child_registry.h │ │ │ │ ├── config_model.cc │ │ │ │ ├── config_model.h │ │ │ │ ├── heartbeat.h │ │ │ │ ├── library.cc │ │ │ │ ├── name_registry.h │ │ │ │ ├── report.h │ │ │ │ ├── route_model.h │ │ │ │ ├── server.cc │ │ │ │ ├── server.h │ │ │ │ ├── service.h │ │ │ │ ├── state_reporter.h │ │ │ │ ├── types.h │ │ │ │ ├── utils.h │ │ │ │ └── verbose.h │ │ │ ├── trace │ │ │ │ └── policy │ │ │ │ │ ├── div_zero │ │ │ │ │ ├── policy.cc │ │ │ │ │ └── target.mk │ │ │ │ │ ├── log_output │ │ │ │ │ ├── policy.cc │ │ │ │ │ └── target.mk │ │ │ │ │ ├── null │ │ │ │ │ ├── policy.cc │ │ │ │ │ └── target.mk │ │ │ │ │ ├── policy.inc │ │ │ │ │ ├── policy.ld │ │ │ │ │ ├── rpc_name │ │ │ │ │ ├── policy.cc │ │ │ │ │ └── target.mk │ │ │ │ │ └── table.cc │ │ │ └── vfs │ │ │ │ ├── block_file_system.h │ │ │ │ ├── capture │ │ │ │ ├── README │ │ │ │ ├── plugin.cc │ │ │ │ └── target.mk │ │ │ │ ├── file_system_factory.cc │ │ │ │ ├── fs_file_system.h │ │ │ │ ├── inline_file_system.h │ │ │ │ ├── log_file_system.h │ │ │ │ ├── null_file_system.h │ │ │ │ ├── ram_file_system.h │ │ │ │ ├── rom_file_system.h │ │ │ │ ├── rtc_file_system.h │ │ │ │ ├── symlink_file_system.h │ │ │ │ ├── tap │ │ │ │ ├── README │ │ │ │ ├── nic_file_system.h │ │ │ │ ├── target.mk │ │ │ │ ├── uplink_client_base.h │ │ │ │ ├── uplink_file_system.h │ │ │ │ └── vfs_tap.cc │ │ │ │ ├── tar_file_system.h │ │ │ │ ├── terminal_file_system.h │ │ │ │ └── zero_file_system.h │ │ ├── server │ │ │ ├── black_hole │ │ │ │ ├── README │ │ │ │ ├── audio_in.h │ │ │ │ ├── audio_out.h │ │ │ │ ├── capture.h │ │ │ │ ├── config.xsd │ │ │ │ ├── event.h │ │ │ │ ├── gpu.h │ │ │ │ ├── main.cc │ │ │ │ ├── nic.h │ │ │ │ ├── rom.h │ │ │ │ ├── target.mk │ │ │ │ ├── uplink.h │ │ │ │ └── usb.h │ │ │ ├── cached_fs_rom │ │ │ │ ├── main.cc │ │ │ │ ├── session_requests.h │ │ │ │ └── target.mk │ │ │ ├── chroot │ │ │ │ ├── README │ │ │ │ ├── component.cc │ │ │ │ └── target.mk │ │ │ ├── clipboard │ │ │ │ ├── README │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── cpu_balancer │ │ │ │ ├── component.cc │ │ │ │ ├── config.cc │ │ │ │ ├── config.h │ │ │ │ ├── config.xsd │ │ │ │ ├── policy.h │ │ │ │ ├── schedule.cc │ │ │ │ ├── session.cc │ │ │ │ ├── session.h │ │ │ │ ├── target.mk │ │ │ │ ├── trace.cc │ │ │ │ └── trace.h │ │ │ ├── dynamic_rom │ │ │ │ ├── README │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── event_dump │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── event_filter │ │ │ │ ├── README │ │ │ │ ├── accelerate_source.h │ │ │ │ ├── button_scroll_source.h │ │ │ │ ├── chargen_source.h │ │ │ │ ├── de_ch.chargen │ │ │ │ ├── de_de.chargen │ │ │ │ ├── en_us.chargen │ │ │ │ ├── en_workman.chargen │ │ │ │ ├── event_session.h │ │ │ │ ├── fr_ch.chargen │ │ │ │ ├── fr_fr.chargen │ │ │ │ ├── include_accessor.h │ │ │ │ ├── input_source.h │ │ │ │ ├── key_code_by_name.h │ │ │ │ ├── log_source.h │ │ │ │ ├── main.cc │ │ │ │ ├── merge_source.h │ │ │ │ ├── remap_source.h │ │ │ │ ├── source.h │ │ │ │ ├── special.chargen │ │ │ │ ├── target.mk │ │ │ │ ├── timer_accessor.h │ │ │ │ ├── touch_click_source.h │ │ │ │ └── types.h │ │ │ ├── fs_report │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── fs_rom │ │ │ │ ├── README │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── gui_fb │ │ │ │ ├── README │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── input_event_bridge │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── loader │ │ │ │ ├── README │ │ │ │ ├── child.h │ │ │ │ ├── gui.h │ │ │ │ ├── input.h │ │ │ │ ├── main.cc │ │ │ │ ├── rom.h │ │ │ │ └── target.mk │ │ │ ├── log_report │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── log_terminal │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── lx_block │ │ │ │ ├── README │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── lx_fs │ │ │ │ ├── README │ │ │ │ ├── directory.h │ │ │ │ ├── fd_set.h │ │ │ │ ├── file.h │ │ │ │ ├── lx_util.cc │ │ │ │ ├── lx_util.h │ │ │ │ ├── main.cc │ │ │ │ ├── node.h │ │ │ │ ├── notifier.cc │ │ │ │ ├── notifier.h │ │ │ │ ├── open_node.h │ │ │ │ ├── symlink.h │ │ │ │ ├── target.mk │ │ │ │ ├── watch.cc │ │ │ │ └── watch.h │ │ │ ├── mixer │ │ │ │ ├── README │ │ │ │ ├── mixer.cc │ │ │ │ └── target.mk │ │ │ ├── nic_bridge │ │ │ │ ├── README │ │ │ │ ├── address_node.h │ │ │ │ ├── component.cc │ │ │ │ ├── component.h │ │ │ │ ├── config.xsd │ │ │ │ ├── mac_allocator.h │ │ │ │ ├── main.cc │ │ │ │ ├── nic.cc │ │ │ │ ├── nic.h │ │ │ │ ├── packet_handler.cc │ │ │ │ ├── packet_handler.h │ │ │ │ ├── target.mk │ │ │ │ └── vlan.h │ │ │ ├── nic_dump │ │ │ │ ├── README │ │ │ │ ├── component.cc │ │ │ │ ├── component.h │ │ │ │ ├── config.xsd │ │ │ │ ├── interface.cc │ │ │ │ ├── interface.h │ │ │ │ ├── main.cc │ │ │ │ ├── packet_log.cc │ │ │ │ ├── packet_log.h │ │ │ │ ├── pointer.h │ │ │ │ ├── target.mk │ │ │ │ ├── uplink.cc │ │ │ │ └── uplink.h │ │ │ ├── nic_loopback │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── nic_router │ │ │ │ ├── README │ │ │ │ ├── arp_cache.cc │ │ │ │ ├── arp_cache.h │ │ │ │ ├── arp_waiter.cc │ │ │ │ ├── arp_waiter.h │ │ │ │ ├── avl_string_tree.h │ │ │ │ ├── avl_tree.h │ │ │ │ ├── bit_allocator_dynamic.h │ │ │ │ ├── communication_buffer.cc │ │ │ │ ├── communication_buffer.h │ │ │ │ ├── config.xsd │ │ │ │ ├── configuration.cc │ │ │ │ ├── configuration.h │ │ │ │ ├── dhcp.h │ │ │ │ ├── dhcp_client.cc │ │ │ │ ├── dhcp_client.h │ │ │ │ ├── dhcp_server.cc │ │ │ │ ├── dhcp_server.h │ │ │ │ ├── direct_rule.cc │ │ │ │ ├── direct_rule.h │ │ │ │ ├── dns.cc │ │ │ │ ├── dns.h │ │ │ │ ├── domain.cc │ │ │ │ ├── domain.h │ │ │ │ ├── forward_rule.cc │ │ │ │ ├── forward_rule.h │ │ │ │ ├── interface.cc │ │ │ │ ├── interface.h │ │ │ │ ├── ip_rule.cc │ │ │ │ ├── ip_rule.h │ │ │ │ ├── ipv4_address_prefix.cc │ │ │ │ ├── ipv4_address_prefix.h │ │ │ │ ├── ipv4_config.cc │ │ │ │ ├── ipv4_config.h │ │ │ │ ├── l3_protocol.cc │ │ │ │ ├── l3_protocol.h │ │ │ │ ├── link.cc │ │ │ │ ├── link.h │ │ │ │ ├── list.h │ │ │ │ ├── mac_allocator.h │ │ │ │ ├── main.cc │ │ │ │ ├── nat_rule.cc │ │ │ │ ├── nat_rule.h │ │ │ │ ├── nic_client.cc │ │ │ │ ├── nic_client.h │ │ │ │ ├── nic_session_root.cc │ │ │ │ ├── nic_session_root.h │ │ │ │ ├── permit_rule.cc │ │ │ │ ├── permit_rule.h │ │ │ │ ├── pointer.h │ │ │ │ ├── port_allocator.cc │ │ │ │ ├── port_allocator.h │ │ │ │ ├── reference.h │ │ │ │ ├── report.cc │ │ │ │ ├── report.h │ │ │ │ ├── session_env.h │ │ │ │ ├── target.mk │ │ │ │ ├── transport_rule.cc │ │ │ │ ├── transport_rule.h │ │ │ │ ├── uplink_session_root.cc │ │ │ │ ├── uplink_session_root.h │ │ │ │ ├── xml_node.cc │ │ │ │ └── xml_node.h │ │ │ ├── nitpicker │ │ │ │ ├── README │ │ │ │ ├── background.h │ │ │ │ ├── buffer.h │ │ │ │ ├── canvas.h │ │ │ │ ├── capture_session.h │ │ │ │ ├── chunky_texture.h │ │ │ │ ├── clip_guard.h │ │ │ │ ├── default.tff │ │ │ │ ├── domain_registry.h │ │ │ │ ├── draw_label.h │ │ │ │ ├── event_session.h │ │ │ │ ├── focus.h │ │ │ │ ├── framebuffer_session.h │ │ │ │ ├── global_keys.cc │ │ │ │ ├── global_keys.h │ │ │ │ ├── gui_session.cc │ │ │ │ ├── gui_session.h │ │ │ │ ├── input_session.h │ │ │ │ ├── main.cc │ │ │ │ ├── pointer_origin.h │ │ │ │ ├── resizeable_texture.h │ │ │ │ ├── target.mk │ │ │ │ ├── types.h │ │ │ │ ├── user_state.cc │ │ │ │ ├── user_state.h │ │ │ │ ├── view.cc │ │ │ │ ├── view.h │ │ │ │ ├── view_owner.h │ │ │ │ ├── view_stack.cc │ │ │ │ └── view_stack.h │ │ │ ├── part_block │ │ │ │ ├── README │ │ │ │ ├── ahdi.h │ │ │ │ ├── fsprobe.h │ │ │ │ ├── gpt.h │ │ │ │ ├── main.cc │ │ │ │ ├── mbr.h │ │ │ │ ├── partition_table.h │ │ │ │ └── target.mk │ │ │ ├── report_rom │ │ │ │ ├── README │ │ │ │ ├── main.cc │ │ │ │ ├── rom_registry.h │ │ │ │ └── target.mk │ │ │ ├── rom_filter │ │ │ │ ├── README │ │ │ │ ├── input_rom_registry.h │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── tar_rom │ │ │ │ ├── README │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── terminal_crosslink │ │ │ │ ├── README │ │ │ │ ├── main.cc │ │ │ │ ├── target.mk │ │ │ │ ├── terminal_root.h │ │ │ │ ├── terminal_session_component.cc │ │ │ │ └── terminal_session_component.h │ │ │ ├── terminal_log │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── tz_vmm │ │ │ │ ├── README │ │ │ │ ├── block_driver.cc │ │ │ │ ├── include │ │ │ │ │ ├── atag.h │ │ │ │ │ ├── block_driver.h │ │ │ │ │ ├── mmu.h │ │ │ │ │ ├── ram.h │ │ │ │ │ ├── serial_driver.h │ │ │ │ │ └── vm_base.h │ │ │ │ ├── serial_driver.cc │ │ │ │ ├── spec │ │ │ │ │ ├── imx53 │ │ │ │ │ │ ├── m4if.h │ │ │ │ │ │ ├── main.cc │ │ │ │ │ │ └── target.inc │ │ │ │ │ ├── imx53_qsb │ │ │ │ │ │ ├── target.mk │ │ │ │ │ │ ├── vm.cc │ │ │ │ │ │ └── vm.h │ │ │ │ │ └── usb_armory │ │ │ │ │ │ ├── target.mk │ │ │ │ │ │ ├── vm.cc │ │ │ │ │ │ └── vm.h │ │ │ │ └── vm_base.cc │ │ │ ├── vfs │ │ │ │ ├── assert.h │ │ │ │ ├── main.cc │ │ │ │ ├── node.h │ │ │ │ └── target.mk │ │ │ ├── vfs_block │ │ │ │ ├── README │ │ │ │ ├── component.cc │ │ │ │ ├── job.h │ │ │ │ └── target.mk │ │ │ └── vmm │ │ │ │ ├── address_space.cc │ │ │ │ ├── address_space.h │ │ │ │ ├── cpu_base.cc │ │ │ │ ├── cpu_base.h │ │ │ │ ├── exception.h │ │ │ │ ├── generic_timer.cc │ │ │ │ ├── generic_timer.h │ │ │ │ ├── gic.cc │ │ │ │ ├── gic.h │ │ │ │ ├── hw_device.h │ │ │ │ ├── main.cc │ │ │ │ ├── mmio.cc │ │ │ │ ├── mmio.h │ │ │ │ ├── pl011.cc │ │ │ │ ├── pl011.h │ │ │ │ ├── psci.h │ │ │ │ ├── ram.h │ │ │ │ ├── spec │ │ │ │ ├── arm_v7 │ │ │ │ │ ├── board.h │ │ │ │ │ ├── cpu.cc │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── generic_timer.cc │ │ │ │ │ ├── target.mk │ │ │ │ │ └── virt.dts │ │ │ │ └── arm_v8 │ │ │ │ │ ├── board.h │ │ │ │ │ ├── cpu.cc │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── generic_timer.cc │ │ │ │ │ ├── target.mk │ │ │ │ │ └── virt.dts │ │ │ │ ├── virtio_block.h │ │ │ │ ├── virtio_console.h │ │ │ │ ├── virtio_device.h │ │ │ │ ├── virtio_net.h │ │ │ │ ├── vm.cc │ │ │ │ └── vm.h │ │ └── test │ │ │ ├── audio_out │ │ │ ├── README │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── audio_out_click │ │ │ ├── README │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── black_hole │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── block_request_stream │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── bomb │ │ │ ├── README │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── cache │ │ │ ├── common.h │ │ │ ├── genode_time.h │ │ │ ├── linux │ │ │ │ ├── Makefile │ │ │ │ └── main.cc │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── capture │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── clipboard │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── cpu_bench │ │ │ ├── bogomips.h │ │ │ ├── linux │ │ │ │ ├── Makefile.inc │ │ │ │ └── main.cc │ │ │ ├── main.cc │ │ │ ├── spec │ │ │ │ ├── arm │ │ │ │ │ ├── bogomips.s │ │ │ │ │ ├── linux │ │ │ │ │ │ └── Makefile │ │ │ │ │ └── target.mk │ │ │ │ ├── arm_64 │ │ │ │ │ ├── bogomips.s │ │ │ │ │ ├── linux │ │ │ │ │ │ └── Makefile │ │ │ │ │ └── target.mk │ │ │ │ ├── x86_32 │ │ │ │ │ ├── bogomips.s │ │ │ │ │ ├── linux │ │ │ │ │ │ └── Makefile │ │ │ │ │ └── target.mk │ │ │ │ └── x86_64 │ │ │ │ │ ├── bogomips.s │ │ │ │ │ ├── linux │ │ │ │ │ └── Makefile │ │ │ │ │ └── target.mk │ │ │ └── target.inc │ │ │ ├── dynamic_config │ │ │ ├── loader │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── main.cc │ │ │ ├── server │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ └── target.mk │ │ │ ├── event_filter │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── fault_detection │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── fb_bench │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── framebuffer │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── fs_packet │ │ │ ├── component.cc │ │ │ └── target.mk │ │ │ ├── fs_report │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── gpio_led │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── gpio_signal │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── i2c_mcp9808 │ │ │ ├── README │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── immutable_rom │ │ │ ├── component.cc │ │ │ └── target.mk │ │ │ ├── init │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── init_loop │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── input │ │ │ ├── target.mk │ │ │ └── test.cc │ │ │ ├── iso │ │ │ ├── main.cc │ │ │ ├── target.mk │ │ │ └── test.txt │ │ │ ├── loader │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── lx_fs_notify │ │ │ ├── file_writer │ │ │ │ ├── Makefile │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ └── rom_log │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── net_flood │ │ │ ├── config.xsd │ │ │ ├── dhcp_client.cc │ │ │ ├── dhcp_client.h │ │ │ ├── ipv4_address_prefix.cc │ │ │ ├── ipv4_address_prefix.h │ │ │ ├── ipv4_config.cc │ │ │ ├── ipv4_config.h │ │ │ ├── main.cc │ │ │ ├── nic.cc │ │ │ ├── nic.h │ │ │ ├── protocol.h │ │ │ └── target.mk │ │ │ ├── nic_loopback │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── nic_router_dhcp │ │ │ ├── README │ │ │ ├── client │ │ │ │ ├── dhcp_client.cc │ │ │ │ ├── dhcp_client.h │ │ │ │ ├── ipv4_address_prefix.cc │ │ │ │ ├── ipv4_address_prefix.h │ │ │ │ ├── ipv4_config.cc │ │ │ │ ├── ipv4_config.h │ │ │ │ ├── main.cc │ │ │ │ ├── nic.cc │ │ │ │ ├── nic.h │ │ │ │ └── target.mk │ │ │ └── manager │ │ │ │ ├── ipv4_address_prefix.cc │ │ │ │ ├── ipv4_address_prefix.h │ │ │ │ ├── main.cc │ │ │ │ └── target.mk │ │ │ ├── nic_stress │ │ │ ├── config.xsd │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── nitpicker │ │ │ ├── target.mk │ │ │ └── test.cc │ │ │ ├── pci │ │ │ ├── target.mk │ │ │ └── test.cc │ │ │ ├── platform_drv │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── pointer │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── ram_fs_chunk │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── report_rom │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── resource_request │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── resource_yield │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── rtc │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── sandbox │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── signal │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── slab │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── terminal_crosslink │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── terminal_echo │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── terminal_expect_send │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── timeout │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── trace │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── trace_buffer │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── trace_logger │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── uart │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── utf8 │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── vfs_capture │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── vfs_stress │ │ │ ├── README │ │ │ ├── main.cc │ │ │ └── target.mk │ │ │ ├── vmm_x86 │ │ │ ├── component.cc │ │ │ └── target.mk │ │ │ └── weak_ptr │ │ │ ├── main.cc │ │ │ └── target.mk │ └── xsd │ │ ├── net_types.xsd │ │ └── timeout_types.xsd ├── pc │ ├── README │ ├── lib │ │ ├── import │ │ │ └── import-pc_lx_emul.mk │ │ └── mk │ │ │ ├── pc_linux_generated.inc │ │ │ ├── pc_lx_emul.mk │ │ │ ├── spec │ │ │ ├── x86_32 │ │ │ │ ├── pc_linux_generated.mk │ │ │ │ └── wifi.mk │ │ │ └── x86_64 │ │ │ │ ├── pc_linux_generated.mk │ │ │ │ └── wifi.mk │ │ │ ├── vfs_wifi.mk │ │ │ ├── wifi.inc │ │ │ └── wifi_firmware.mk │ ├── recipes │ │ ├── api │ │ │ └── pc_linux │ │ │ │ ├── content.mk │ │ │ │ └── hash │ │ ├── pkg │ │ │ ├── test_usb_host_drv-pc │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ └── hash │ │ │ └── wifi │ │ │ │ ├── README │ │ │ │ ├── archives │ │ │ │ └── hash │ │ ├── raw │ │ │ └── test_usb_host_drv-pc │ │ │ │ ├── content.mk │ │ │ │ ├── drivers.config │ │ │ │ └── hash │ │ └── src │ │ │ ├── pc_intel_fb_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ ├── pc_usb_host_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ │ │ └── pc_wifi_drv │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── used_apis │ ├── run │ │ ├── intel_fb.run │ │ └── wifi.run │ └── src │ │ ├── drivers │ │ ├── framebuffer │ │ │ └── intel │ │ │ │ └── pc │ │ │ │ ├── README │ │ │ │ ├── dep.list │ │ │ │ ├── dummies.c │ │ │ │ ├── emul.cc │ │ │ │ ├── fb.c │ │ │ │ ├── gem.c │ │ │ │ ├── generated_dummies.c │ │ │ │ ├── lx_emul.c │ │ │ │ ├── lx_emul.h │ │ │ │ ├── lx_emul │ │ │ │ └── fb.h │ │ │ │ ├── lx_i915.h │ │ │ │ ├── lx_user.c │ │ │ │ ├── main.cc │ │ │ │ ├── misc.cc │ │ │ │ ├── shadow │ │ │ │ └── asm │ │ │ │ │ └── vdso │ │ │ │ │ └── processor.h │ │ │ │ ├── spec │ │ │ │ ├── x86_32 │ │ │ │ │ ├── dep.list │ │ │ │ │ ├── source.list │ │ │ │ │ └── target.mk │ │ │ │ └── x86_64 │ │ │ │ │ ├── dep.list │ │ │ │ │ ├── source.list │ │ │ │ │ └── target.mk │ │ │ │ ├── target.inc │ │ │ │ └── timeout.c │ │ ├── usb_host │ │ │ └── pc │ │ │ │ ├── dep.list │ │ │ │ ├── dummies.c │ │ │ │ ├── generated_dummies.c │ │ │ │ ├── lx_emul.c │ │ │ │ ├── lx_emul.h │ │ │ │ ├── main.cc │ │ │ │ ├── misc.cc │ │ │ │ ├── spec │ │ │ │ ├── x86_32 │ │ │ │ │ ├── dep.list │ │ │ │ │ ├── source.list │ │ │ │ │ └── target.mk │ │ │ │ └── x86_64 │ │ │ │ │ ├── dep.list │ │ │ │ │ ├── source.list │ │ │ │ │ └── target.mk │ │ │ │ └── target.inc │ │ └── wifi │ │ │ └── pc │ │ │ ├── README │ │ │ ├── frontend.h │ │ │ ├── main.cc │ │ │ ├── target.mk │ │ │ ├── util.h │ │ │ ├── wpa.cc │ │ │ └── wpa.h │ │ ├── include │ │ └── lx_emul │ │ │ ├── initcall_order.h │ │ │ └── pci_fixups.h │ │ ├── lib │ │ ├── pc │ │ │ └── lx_emul │ │ │ │ ├── common_dummies.c │ │ │ │ ├── dep.list │ │ │ │ ├── mapping.c │ │ │ │ ├── page_alloc.c │ │ │ │ ├── sched_core.c │ │ │ │ ├── shadow │ │ │ │ ├── drivers │ │ │ │ │ ├── acpi │ │ │ │ │ │ ├── bus.c │ │ │ │ │ │ ├── device_sysfs.c │ │ │ │ │ │ ├── glue.c │ │ │ │ │ │ ├── property.c │ │ │ │ │ │ ├── scan.c │ │ │ │ │ │ └── utils.c │ │ │ │ │ └── char │ │ │ │ │ │ └── random.c │ │ │ │ ├── fs │ │ │ │ │ ├── libfs.c │ │ │ │ │ └── sysfs │ │ │ │ │ │ ├── dir.c │ │ │ │ │ │ ├── file.c │ │ │ │ │ │ ├── group.c │ │ │ │ │ │ └── symlink.c │ │ │ │ ├── kernel │ │ │ │ │ └── rcu │ │ │ │ │ │ └── tiny.c │ │ │ │ ├── lib │ │ │ │ │ ├── kobject_uevent.c │ │ │ │ │ └── logic_iomem.c │ │ │ │ └── mm │ │ │ │ │ └── dmapool.c │ │ │ │ ├── slab_common.c │ │ │ │ ├── softirq.c │ │ │ │ └── vmalloc.c │ │ ├── vfs │ │ │ └── wifi │ │ │ │ ├── target.mk │ │ │ │ └── vfs.cc │ │ └── wifi │ │ │ ├── dep.list │ │ │ ├── dummies.c │ │ │ ├── firmware.cc │ │ │ ├── firmware_list.h │ │ │ ├── generated_dummies.c │ │ │ ├── libc_errno.h │ │ │ ├── lx_emul.c │ │ │ ├── lx_emul.h │ │ │ ├── lx_socket_call.c │ │ │ ├── lx_socket_call.h │ │ │ ├── lx_user.c │ │ │ ├── lx_user.h │ │ │ ├── misc.cc │ │ │ ├── socket_call.cc │ │ │ ├── spec │ │ │ ├── x86_32 │ │ │ │ ├── dep.list │ │ │ │ └── source.list │ │ │ └── x86_64 │ │ │ │ ├── dep.list │ │ │ │ └── source.list │ │ │ ├── symbol.map │ │ │ ├── time.cc │ │ │ ├── uplink.c │ │ │ └── wlan.cc │ │ ├── pc_linux │ │ ├── target.inc │ │ ├── x86_32 │ │ │ └── target.mk │ │ └── x86_64 │ │ │ └── target.mk │ │ └── test │ │ └── framebuffer │ │ └── intel │ │ ├── main.cc │ │ └── target.mk └── ports │ ├── README │ ├── doc │ └── gdb.txt │ ├── include │ └── vmm │ │ ├── log.h │ │ ├── utcb_guard.h │ │ ├── vcpu_dispatcher.h │ │ └── vcpu_thread.h │ ├── lib │ ├── mk │ │ ├── gdbserver_libc_support.mk │ │ ├── gdbserver_platform.inc │ │ ├── gdbserver_platform.mk │ │ ├── spec │ │ │ ├── nova │ │ │ │ └── virtualbox5-nova.mk │ │ │ ├── x86_32 │ │ │ │ ├── gdbserver_platform-nova.mk │ │ │ │ └── gdbserver_platform-x86_32.inc │ │ │ └── x86_64 │ │ │ │ ├── gdbserver_platform-nova.mk │ │ │ │ ├── gdbserver_platform-x86_64.inc │ │ │ │ ├── virtualbox6-devices.mk │ │ │ │ ├── virtualbox6-dis.mk │ │ │ │ ├── virtualbox6-shaderlib.mk │ │ │ │ ├── virtualbox6-sup.mk │ │ │ │ └── virtualbox6-vmm.mk │ │ ├── virtualbox5-apiwrap.mk │ │ ├── virtualbox5-bios.mk │ │ ├── virtualbox5-common.inc │ │ ├── virtualbox5-debug.inc │ │ ├── virtualbox5-devices.mk │ │ ├── virtualbox5-dis.mk │ │ ├── virtualbox5-drivers.mk │ │ ├── virtualbox5-liblzf.mk │ │ ├── virtualbox5-main.mk │ │ ├── virtualbox5-recompiler.mk │ │ ├── virtualbox5-runtime.mk │ │ ├── virtualbox5-storage.mk │ │ ├── virtualbox5-vmm.mk │ │ ├── virtualbox5-xml.mk │ │ ├── virtualbox5-zlib.mk │ │ ├── virtualbox5.mk │ │ ├── virtualbox6-apiwrap.mk │ │ ├── virtualbox6-bios.mk │ │ ├── virtualbox6-client.mk │ │ ├── virtualbox6-common.inc │ │ ├── virtualbox6-debug.inc │ │ ├── virtualbox6-liblzf.mk │ │ ├── virtualbox6-main.mk │ │ ├── virtualbox6-runtime.mk │ │ ├── virtualbox6-sharedclipboard.mk │ │ ├── virtualbox6-sharedfolders.mk │ │ ├── virtualbox6-storage.mk │ │ ├── virtualbox6-xml.mk │ │ ├── virtualbox6-xpcom.mk │ │ └── virtualbox6-zlib.mk │ └── symbols │ │ └── gdbserver_platform │ ├── mk │ ├── gnu_build.mk │ └── noux.mk │ ├── ports │ ├── bash.hash │ ├── bash.port │ ├── binutils.hash │ ├── binutils.port │ ├── coreutils.hash │ ├── coreutils.port │ ├── diffutils.hash │ ├── diffutils.port │ ├── e2fsprogs.hash │ ├── e2fsprogs.port │ ├── findutils.hash │ ├── findutils.port │ ├── gcc.hash │ ├── gcc.port │ ├── gdb.hash │ ├── gdb.port │ ├── gnupg.hash │ ├── gnupg.port │ ├── grep.hash │ ├── grep.port │ ├── less.hash │ ├── less.port │ ├── lighttpd.hash │ ├── lighttpd.inc │ ├── lighttpd.port │ ├── make.hash │ ├── make.port │ ├── microcode_intel.hash │ ├── microcode_intel.port │ ├── netperf.hash │ ├── netperf.port │ ├── sed.hash │ ├── sed.port │ ├── tar.hash │ ├── tar.port │ ├── tcl.hash │ ├── tcl.port │ ├── vim.hash │ ├── vim.port │ ├── virtualbox5.hash │ ├── virtualbox5.port │ ├── virtualbox6.hash │ ├── virtualbox6.port │ ├── which.hash │ └── which.port │ ├── recipes │ ├── api │ │ └── noux │ │ │ ├── content.mk │ │ │ └── hash │ ├── pkg │ │ ├── report_dump │ │ │ ├── README │ │ │ ├── archives │ │ │ ├── hash │ │ │ └── runtime │ │ ├── system_shell │ │ │ ├── README │ │ │ ├── archives │ │ │ ├── hash │ │ │ └── runtime │ │ ├── vbox5-nova-capture │ │ │ ├── README │ │ │ ├── archives │ │ │ ├── hash │ │ │ └── runtime │ │ ├── vbox5-nova-sculpt │ │ │ ├── README │ │ │ ├── archives │ │ │ ├── hash │ │ │ └── runtime │ │ ├── vbox5 │ │ │ ├── README │ │ │ ├── archives │ │ │ ├── hash │ │ │ └── runtime │ │ ├── vbox6-capture │ │ │ ├── README │ │ │ ├── archives │ │ │ ├── hash │ │ │ └── runtime │ │ └── vbox6 │ │ │ ├── README │ │ │ ├── archives │ │ │ ├── hash │ │ │ └── runtime │ ├── raw │ │ ├── system_shell │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── system_shell.config │ │ ├── vbox5-nova-sculpt │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── init.config │ │ └── vbox6 │ │ │ ├── content.mk │ │ │ ├── hash │ │ │ └── machine.vbox6 │ └── src │ │ ├── bash-minimal │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ ├── bash │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ ├── binutils_x86 │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ ├── coreutils-minimal │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ ├── coreutils │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ ├── diffutils │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ ├── e2fsprogs-minimal │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ ├── e2fsprogs │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ ├── findutils │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ ├── gcc_x86 │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ ├── gnumake │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ ├── grep │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ ├── less │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ ├── lighttpd │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ ├── sed │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ ├── tar │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ ├── tclsh │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ ├── vbox5-nova │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ ├── vbox5 │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ ├── vbox6 │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ ├── verify │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ ├── vim-minimal │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ ├── vim │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ │ └── which │ │ ├── content.mk │ │ ├── hash │ │ └── used_apis │ ├── run │ ├── bash.run │ ├── debug_nitpicker.run │ ├── gdb_monitor.inc │ ├── gdb_monitor.run │ ├── gdb_monitor_interactive.run │ ├── gdb_monitor_target_config.run │ ├── genode_org.run │ ├── lighttpd.run │ ├── microcode.run │ ├── netperf.inc │ ├── netperf_lwip.run │ ├── netperf_lwip_bridge.run │ ├── netperf_lwip_usb.run │ ├── netperf_lwip_wifi.run │ ├── netperf_lxip.run │ ├── netperf_lxip_bridge.run │ ├── netperf_lxip_usb.run │ ├── netperf_lxip_wifi.run │ ├── test.vbox │ ├── tool_chain_auto.run │ ├── vbox5_genode_usb_hid_raw.run │ ├── vbox5_ubuntu_16_04_32.run │ ├── vbox5_ubuntu_16_04_64.run │ ├── vbox5_vm_ubuntu_16_04_32.run │ ├── vbox5_vm_ubuntu_16_04_64.run │ ├── vbox5_vm_win10_64.run │ ├── vbox5_vm_win7_32.run │ ├── vbox5_vm_win7_64.run │ ├── vbox5_win10_64.run │ ├── vbox5_win7_32.run │ ├── vbox5_win7_64.run │ ├── vbox5_win7_64_multiple.run │ ├── vbox5_win7_64_raw.run │ ├── vbox5_win7_64_share.run │ ├── vbox_share.inc │ ├── vbox_win.inc │ ├── verify.run │ ├── vim.run │ ├── virtualbox.run │ ├── virtualbox6.run │ ├── virtualbox6.vbox │ ├── virtualbox_auto.inc │ ├── vm_genode_usb_hid.vbox │ ├── vm_genode_usb_hid_raw.vbox │ ├── vm_stress_32.vbox │ ├── vm_stress_64.vbox │ ├── vm_stress_vbox5-debian32.run │ ├── vm_stress_vbox5-debian64.run │ ├── vm_ubuntu_16_04_32.vbox │ ├── vm_ubuntu_16_04_32_1vcpu.vbox │ ├── vm_ubuntu_16_04_64.vbox │ ├── vm_win10_64.vbox │ ├── vm_win10_64_1vcpu.vbox │ ├── vm_win7.vbox │ ├── vm_win7_32_share.vbox │ ├── vm_win7_64.vbox │ ├── vm_win7_64_1vcpu.vbox │ ├── vm_win7_64_multiple.vbox │ ├── vm_win7_64_raw.vbox │ ├── vm_win7_64_share.vbox │ ├── vm_win81_64.vbox │ ├── vmm_vm_stress.inc │ └── win7_64_raw.vmdk │ └── src │ ├── app │ ├── gdb_monitor │ │ ├── app_child.h │ │ ├── append_list.h │ │ ├── child_config.h │ │ ├── cpu_session_component.cc │ │ ├── cpu_session_component.h │ │ ├── cpu_thread_component.cc │ │ ├── cpu_thread_component.h │ │ ├── dataspace_object.h │ │ ├── gdbserver │ │ │ ├── genode-low.cc │ │ │ └── genode-low.h │ │ ├── gdbsupport │ │ │ └── config.h │ │ ├── genode_child_resources.h │ │ ├── main.cc │ │ ├── pd_session_component.h │ │ ├── region_map_component.cc │ │ ├── region_map_component.h │ │ ├── rom.h │ │ ├── signal_handler_thread.cc │ │ ├── signal_handler_thread.h │ │ └── target.mk │ ├── lighttpd │ │ ├── fd_cloexec.patch │ │ ├── plugin-static.h │ │ ├── stat_cache.c.patch │ │ ├── target.inc │ │ └── target.mk │ ├── netperf │ │ ├── config.h │ │ ├── netlib.patch │ │ ├── omni.patch │ │ ├── target.mk │ │ └── timer.cc │ └── verify │ │ ├── README │ │ ├── assuan.h │ │ ├── config.h │ │ ├── dummies.c │ │ ├── gnupg.c │ │ ├── gnupg.h │ │ ├── main.cc │ │ ├── patches │ │ └── verify.patch │ │ ├── target.mk │ │ └── test │ │ ├── expect_invalid.txt │ │ ├── expect_invalid.txt.sig │ │ ├── expect_valid.txt │ │ └── expect_valid.txt.sig │ ├── lib │ ├── gdbserver_libc_support │ │ ├── gdbserver_libc_support.h │ │ └── sys │ │ │ ├── procfs.h │ │ │ ├── ptrace.h │ │ │ ├── vfs.h │ │ │ └── wait.h │ ├── gdbserver_platform-nova │ │ ├── native_cpu.cc │ │ ├── spec │ │ │ ├── x86_32 │ │ │ │ └── low.cc │ │ │ └── x86_64 │ │ │ │ └── low.cc │ │ └── target.mk │ └── gdbserver_platform │ │ ├── gdbserver_platform_helper.cc │ │ ├── gdbserver_platform_helper.h │ │ └── spec │ │ ├── arm │ │ └── reg-arm.h │ │ ├── x86_32 │ │ └── i386.h │ │ └── x86_64 │ │ └── amd64.h │ ├── noux-pkg │ ├── bash-minimal │ │ └── target.mk │ ├── bash │ │ ├── bashrc.patch │ │ ├── build.patch │ │ ├── check_dev_tty.patch │ │ ├── disable_man2html.patch │ │ ├── home_end_delete.patch │ │ ├── target.inc │ │ └── target.mk │ ├── binutils │ │ ├── patches │ │ │ ├── arm.patch │ │ │ ├── bfd.patch │ │ │ ├── merge_sections.patch │ │ │ ├── riscv.patch │ │ │ └── series │ │ └── target.inc │ ├── binutils_arm │ │ └── target.mk │ ├── binutils_arm_64 │ │ └── target.mk │ ├── binutils_x86 │ │ └── target.mk │ ├── coreutils-minimal │ │ └── target.mk │ ├── coreutils │ │ ├── copy.patch │ │ ├── target.inc │ │ └── target.mk │ ├── diffutils │ │ └── target.mk │ ├── e2fsprogs-minimal │ │ └── target.mk │ ├── e2fsprogs │ │ ├── patches │ │ │ ├── DIOCGDINFO.patch │ │ │ ├── MCONFIG.in.patch │ │ │ ├── Makefile.in.patch │ │ │ ├── Makefile.library.patch │ │ │ ├── README │ │ │ ├── configure.patch │ │ │ ├── ismounted.c.patch │ │ │ └── unix_io.c.patch │ │ ├── target.inc │ │ └── target.mk │ ├── findutils │ │ └── target.mk │ ├── gcc │ │ ├── patches │ │ │ ├── aarch64.patch │ │ │ ├── arm.patch │ │ │ ├── config.patch │ │ │ ├── emutls.patch │ │ │ ├── frame_pointer.patch │ │ │ ├── go_libbacktrace.patch │ │ │ ├── host_target_combination.patch │ │ │ ├── libgcc_s.patch │ │ │ ├── libstdcxx_without_libc.patch │ │ │ ├── libsupcxx_demangle.patch │ │ │ ├── misc.patch │ │ │ ├── new_opa.patch │ │ │ ├── no_short_enums.patch │ │ │ ├── noux_build.patch │ │ │ ├── prefer_pic.patch │ │ │ ├── revert_gcov_path_mangling.patch │ │ │ ├── series │ │ │ └── target_libbacktrace.patch │ │ └── target.inc │ ├── gcc_arm │ │ └── target.mk │ ├── gcc_arm_64 │ │ └── target.mk │ ├── gcc_x86 │ │ └── target.mk │ ├── gdb │ │ ├── patches │ │ │ ├── arm_single_step.patch │ │ │ ├── call_dummy_location.patch │ │ │ ├── gdb_x86_64.patch │ │ │ ├── gdbserver_genode.patch │ │ │ ├── noux_build.patch │ │ │ ├── series │ │ │ └── shared_library.patch │ │ └── target.inc │ ├── gdb_arm │ │ └── target.mk │ ├── gdb_x86 │ │ └── target.mk │ ├── grep │ │ └── target.mk │ ├── less │ │ ├── libs.patch │ │ ├── target.mk │ │ └── tty_fd.patch │ ├── make │ │ └── target.mk │ ├── sed │ │ └── target.mk │ ├── tar │ │ └── target.mk │ ├── tclsh │ │ └── target.mk │ ├── vim-minimal │ │ └── target.mk │ ├── vim │ │ ├── build.patch │ │ ├── target.inc │ │ └── target.mk │ └── which │ │ └── target.mk │ ├── test │ ├── gdb_monitor │ │ ├── main.cc │ │ └── target.mk │ ├── gdb_monitor_target_config │ │ ├── main.cc │ │ └── target.mk │ └── microcode │ │ ├── main.cc │ │ └── target.mk │ ├── virtualbox5 │ ├── README │ ├── audio.cc │ ├── devices.cc │ ├── devxhci.cc │ ├── drivers.cc │ ├── dummies.cc │ ├── dynlib.cc │ ├── frontend │ │ ├── ClientWatcher.h │ │ ├── GenodeImpl.h │ │ ├── VBoxEvents.h │ │ ├── VirtualBoxBase.h │ │ ├── VirtualBoxErrorInfoImpl.cpp │ │ ├── VirtualBoxErrorInfoImpl.h │ │ ├── console.cc │ │ ├── console.h │ │ ├── dummy │ │ │ ├── autostart.cc │ │ │ ├── errorinfo.cc │ │ │ ├── host.cc │ │ │ ├── macros.h │ │ │ ├── rest.cc │ │ │ └── virtualboxbase.cc │ │ ├── fb.h │ │ └── main.cc │ ├── generic │ │ ├── sup.cc │ │ └── sup_vmm.cc │ ├── hm.cc │ ├── include │ │ ├── VBox │ │ │ ├── com │ │ │ │ ├── VirtualBox.h │ │ │ │ ├── com.h │ │ │ │ ├── defs.h │ │ │ │ └── ptr.h │ │ │ └── intnet.h │ │ ├── dtrace │ │ │ └── VBoxVMM.h │ │ ├── product-generated.h │ │ ├── version-generated.h │ │ └── xpcom │ │ │ ├── nsError.h │ │ │ ├── nsID.h │ │ │ ├── nsIException.h │ │ │ ├── nsISupports.h │ │ │ ├── nsISupportsImpl.h │ │ │ ├── nsMemory.h │ │ │ ├── nscore.h │ │ │ └── prtypes.h │ ├── libc.cc │ ├── mm.cc │ ├── mm.h │ ├── network.cpp │ ├── nova │ │ └── target.mk │ ├── patches │ │ ├── acpi_drv.patch │ │ ├── audio.patch │ │ ├── avoid_yield.patch │ │ ├── changeset82265.patch │ │ ├── dbg.patch │ │ ├── dev_e1000.patch │ │ ├── drvvd.patch │ │ ├── eminternal.patch │ │ ├── hostservice.patch │ │ ├── iconv.patch │ │ ├── iem_wip.patch │ │ ├── mem_leak.patch │ │ ├── microcode.patch │ │ ├── mm.patch │ │ ├── mouse.patch │ │ ├── narrowing.patch │ │ ├── network.patch │ │ ├── pdm_driver.patch │ │ ├── poke.patch │ │ ├── posix.patch │ │ ├── register.patch │ │ ├── rem_mem.patch │ │ ├── rem_tss.patch │ │ ├── serial.patch │ │ ├── series │ │ ├── sharedfolder_pagelist.patch │ │ ├── substr.patch │ │ ├── time-log-deadlock.patch │ │ ├── tm_4s.patch │ │ ├── tm_retries.patch │ │ ├── tm_tpr.patch │ │ ├── tm_tpr_vbox5.patch │ │ ├── usb.patch │ │ ├── vbox_inc.patch │ │ ├── vbox_main.patch │ │ ├── vga.patch │ │ ├── vga_vbva.patch │ │ ├── vm.patch │ │ ├── vmdk.patch │ │ ├── vmmdev.patch │ │ └── vusburb.patch │ ├── pdm.cc │ ├── pgm.cc │ ├── rt.cc │ ├── spec │ │ └── nova │ │ │ ├── pgm.cc │ │ │ ├── sup.cc │ │ │ ├── sup_old.cc │ │ │ ├── svm.h │ │ │ ├── vcpu.h │ │ │ ├── vcpu_svm.h │ │ │ ├── vcpu_vmx.h │ │ │ └── vmx.h │ ├── sup.h │ ├── svm.h │ ├── target.inc │ ├── target.mk │ ├── thread.cc │ ├── unimpl.cc │ ├── util.h │ ├── vcpu.h │ ├── vcpu_svm.h │ ├── vcpu_vmx.h │ ├── vmm.h │ └── vmx.h │ └── virtualbox6 │ ├── README │ ├── attempt.h │ ├── devices.cc │ ├── devxhci.cc │ ├── drivers.cc │ ├── dummies.cc │ ├── glx_x11.cc │ ├── include │ ├── GL │ │ └── glx.h │ ├── GenodeImpl.h │ ├── X11 │ │ ├── X.h │ │ ├── Xatom.h │ │ ├── Xlib.h │ │ └── Xutil.h │ ├── aio.h │ ├── dev │ │ └── acpica │ │ │ └── acpiio.h │ ├── dtrace │ │ └── VBoxVMM.h │ ├── fb.h │ ├── global_defs.h │ ├── libc │ │ ├── osreldate.h │ │ ├── wchar.h │ │ └── wctype.h │ ├── package-generated.h │ ├── product-generated.h │ ├── rpc │ │ └── types.h │ └── version-generated.h │ ├── init.h │ ├── input_adapter.h │ ├── libc.cc │ ├── main.cc │ ├── mouse_shape.h │ ├── nem.cc │ ├── network.cc │ ├── patches │ ├── devsvga.patch │ ├── drvtap.patch │ ├── exec_state.patch │ ├── narrowing.patch │ ├── network.patch │ ├── qemu-xhci.patch │ ├── rttimer.patch │ ├── series │ ├── shaderlib.patch │ ├── smp_sipi.patch │ ├── svga.patch │ └── tm_poke.patch │ ├── pdm.cc │ ├── pthread.cc │ ├── pthread_emt.h │ ├── scan_code.h │ ├── services │ ├── services.cc │ ├── services.h │ ├── sharedclipboard.cc │ └── target.mk │ ├── stub_macros.h │ ├── sup.cc │ ├── sup.h │ ├── sup_drv.cc │ ├── sup_drv.h │ ├── sup_gim.cc │ ├── sup_gip.h │ ├── sup_gmm.cc │ ├── sup_gmm.h │ ├── sup_sem.cc │ ├── sup_vcpu.cc │ ├── sup_vcpu.h │ ├── sup_vcpu_svm.h │ ├── sup_vcpu_vmx.h │ ├── sup_vm.cc │ ├── sup_vm.h │ ├── target.mk │ ├── unimpl.cc │ ├── util.h │ └── xpcom_stubs.cc └── tool ├── README ├── abi_symbols ├── autopilot ├── autopilot.list ├── beautify ├── boot ├── README ├── bender ├── boot.png ├── pulsar └── unzip ├── builddir ├── build.conf │ ├── README │ ├── ccache │ ├── make_j │ ├── repos │ ├── repos_arm_v6 │ ├── repos_arm_v7 │ ├── repos_arm_v8 │ ├── repos_riscv │ ├── repos_x86 │ ├── run │ ├── run_arm_v6 │ ├── run_arm_v7 │ ├── run_arm_v8 │ ├── run_boot_dir │ ├── run_riscv │ ├── run_x86 │ ├── run_x86_32 │ └── run_x86_64 └── build.mk ├── cbe_autopilot ├── check_abi ├── create_builddir ├── create_iso ├── create_uboot ├── cxx_to_html ├── dde_linux ├── create_dummies ├── extract_initcall_order └── list_dependencies ├── depot ├── build ├── create ├── dependencies ├── download ├── extract ├── missing_ports ├── mk │ ├── build_bin_archive │ ├── categorize_args.inc │ ├── common.inc │ ├── content_env.mk │ ├── content_env_missing_ports.mk │ ├── dependencies.inc │ ├── downloader │ ├── extract.inc │ ├── extract_api_archive │ ├── extract_content.inc │ ├── extract_pkg_archive │ ├── extract_post_dependencies.inc │ ├── extract_pre_dependencies.inc │ ├── extract_raw_archive │ ├── extract_src_archive │ ├── front_end.inc │ └── gpg.inc ├── publish ├── publish_current └── static_analyze ├── dts ├── README ├── extract └── parse ├── fix_include_ifndef ├── internal_abi.list ├── link.h ├── parse_cxx ├── ports ├── check_hash ├── check_port_source ├── current ├── list ├── mk │ ├── check.mk │ ├── check_port_arg.inc │ ├── common.inc │ ├── front_end.inc │ ├── hash.inc │ ├── install.mk │ └── prepare_single_port.mk ├── prepare_port ├── shortcut └── update_hash ├── rump_cgdconf ├── run ├── README ├── amt.inc ├── boot_dir │ ├── fiasco │ ├── foc │ ├── hw │ ├── linux │ ├── nova │ ├── okl4 │ ├── pistachio │ └── sel4 ├── depot.inc ├── grub2.inc ├── image │ ├── disk │ ├── iso │ ├── uboot │ ├── uboot_fit │ └── uefi ├── iso.inc ├── load.inc ├── load │ ├── fastboot │ ├── ipxe │ ├── jtag │ ├── pxe.inc │ └── tftp ├── log.inc ├── log │ ├── amt │ ├── linux │ ├── qemu │ ├── serial │ └── xen ├── power_netio.inc ├── power_off │ ├── allnet │ ├── energenie │ ├── netio │ └── xen ├── power_on │ ├── allnet │ ├── amt │ ├── command │ ├── energenie │ ├── linux │ ├── netio │ ├── qemu │ ├── softreset │ ├── wol │ └── xen ├── qemu.inc ├── run └── xen.inc ├── sdk ├── genode-base.pc.in ├── genode-lib.pc.in ├── genode-libc.pc.in ├── genode-posix.pc.in ├── genode-prg.pc ├── genode-prg.pc.in ├── genode-stdcxx.pc.in └── genode-vfs.pc.in ├── seccomp ├── .gitignore ├── Makefile ├── seccomp_bpf_compiler.h ├── seccomp_bpf_compiler_arm_32.cc ├── seccomp_bpf_compiler_arm_64.cc ├── seccomp_bpf_compiler_x86_32.cc └── seccomp_bpf_compiler_x86_64.cc ├── tool_chain ├── tool_chain_qt5 └── xkb2ifcfg ├── .gitignore ├── Makefile ├── README ├── genode.cc ├── main.cc ├── util.h └── xkb_mapping.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/README -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 22.02 2 | -------------------------------------------------------------------------------- /doc/build_system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/build_system.txt -------------------------------------------------------------------------------- /doc/challenges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/challenges.txt -------------------------------------------------------------------------------- /doc/coding_style.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/coding_style.txt -------------------------------------------------------------------------------- /doc/components.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/components.txt -------------------------------------------------------------------------------- /doc/contributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/contributions.txt -------------------------------------------------------------------------------- /doc/conventions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/conventions.txt -------------------------------------------------------------------------------- /doc/depot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/depot.txt -------------------------------------------------------------------------------- /doc/getting_started.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/getting_started.txt -------------------------------------------------------------------------------- /doc/gsoc_2012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/gsoc_2012.txt -------------------------------------------------------------------------------- /doc/news.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/news.txt -------------------------------------------------------------------------------- /doc/porting_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/porting_guide.txt -------------------------------------------------------------------------------- /doc/release_notes/08-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/08-11.txt -------------------------------------------------------------------------------- /doc/release_notes/09-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/09-02.txt -------------------------------------------------------------------------------- /doc/release_notes/09-05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/09-05.txt -------------------------------------------------------------------------------- /doc/release_notes/09-08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/09-08.txt -------------------------------------------------------------------------------- /doc/release_notes/09-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/09-11.txt -------------------------------------------------------------------------------- /doc/release_notes/10-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/10-02.txt -------------------------------------------------------------------------------- /doc/release_notes/10-05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/10-05.txt -------------------------------------------------------------------------------- /doc/release_notes/10-08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/10-08.txt -------------------------------------------------------------------------------- /doc/release_notes/10-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/10-11.txt -------------------------------------------------------------------------------- /doc/release_notes/11-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/11-02.txt -------------------------------------------------------------------------------- /doc/release_notes/11-05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/11-05.txt -------------------------------------------------------------------------------- /doc/release_notes/11-08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/11-08.txt -------------------------------------------------------------------------------- /doc/release_notes/11-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/11-11.txt -------------------------------------------------------------------------------- /doc/release_notes/12-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/12-02.txt -------------------------------------------------------------------------------- /doc/release_notes/12-05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/12-05.txt -------------------------------------------------------------------------------- /doc/release_notes/12-08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/12-08.txt -------------------------------------------------------------------------------- /doc/release_notes/12-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/12-11.txt -------------------------------------------------------------------------------- /doc/release_notes/13-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/13-02.txt -------------------------------------------------------------------------------- /doc/release_notes/13-05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/13-05.txt -------------------------------------------------------------------------------- /doc/release_notes/13-08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/13-08.txt -------------------------------------------------------------------------------- /doc/release_notes/13-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/13-11.txt -------------------------------------------------------------------------------- /doc/release_notes/14-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/14-02.txt -------------------------------------------------------------------------------- /doc/release_notes/14-05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/14-05.txt -------------------------------------------------------------------------------- /doc/release_notes/14-08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/14-08.txt -------------------------------------------------------------------------------- /doc/release_notes/14-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/14-11.txt -------------------------------------------------------------------------------- /doc/release_notes/15-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/15-02.txt -------------------------------------------------------------------------------- /doc/release_notes/15-05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/15-05.txt -------------------------------------------------------------------------------- /doc/release_notes/15-08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/15-08.txt -------------------------------------------------------------------------------- /doc/release_notes/15-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/15-11.txt -------------------------------------------------------------------------------- /doc/release_notes/16-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/16-02.txt -------------------------------------------------------------------------------- /doc/release_notes/16-05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/16-05.txt -------------------------------------------------------------------------------- /doc/release_notes/16-08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/16-08.txt -------------------------------------------------------------------------------- /doc/release_notes/16-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/16-11.txt -------------------------------------------------------------------------------- /doc/release_notes/17-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/17-02.txt -------------------------------------------------------------------------------- /doc/release_notes/17-05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/17-05.txt -------------------------------------------------------------------------------- /doc/release_notes/17-08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/17-08.txt -------------------------------------------------------------------------------- /doc/release_notes/17-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/17-11.txt -------------------------------------------------------------------------------- /doc/release_notes/18-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/18-02.txt -------------------------------------------------------------------------------- /doc/release_notes/18-05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/18-05.txt -------------------------------------------------------------------------------- /doc/release_notes/18-08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/18-08.txt -------------------------------------------------------------------------------- /doc/release_notes/18-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/18-11.txt -------------------------------------------------------------------------------- /doc/release_notes/19-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/19-02.txt -------------------------------------------------------------------------------- /doc/release_notes/19-05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/19-05.txt -------------------------------------------------------------------------------- /doc/release_notes/19-08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/19-08.txt -------------------------------------------------------------------------------- /doc/release_notes/19-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/19-11.txt -------------------------------------------------------------------------------- /doc/release_notes/20-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/20-02.txt -------------------------------------------------------------------------------- /doc/release_notes/20-05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/20-05.txt -------------------------------------------------------------------------------- /doc/release_notes/20-08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/20-08.txt -------------------------------------------------------------------------------- /doc/release_notes/20-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/20-11.txt -------------------------------------------------------------------------------- /doc/release_notes/21-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/21-02.txt -------------------------------------------------------------------------------- /doc/release_notes/21-05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/21-05.txt -------------------------------------------------------------------------------- /doc/release_notes/21-08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/21-08.txt -------------------------------------------------------------------------------- /doc/release_notes/21-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/21-11.txt -------------------------------------------------------------------------------- /doc/release_notes/22-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/release_notes/22-02.txt -------------------------------------------------------------------------------- /doc/road_map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/road_map.txt -------------------------------------------------------------------------------- /doc/tool_chain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/doc/tool_chain.txt -------------------------------------------------------------------------------- /repos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/README -------------------------------------------------------------------------------- /repos/base-fiasco/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base-fiasco/README -------------------------------------------------------------------------------- /repos/base-fiasco/etc/specs.conf: -------------------------------------------------------------------------------- 1 | SPECS += fiasco 2 | -------------------------------------------------------------------------------- /repos/base-fiasco/ports/fiasco.hash: -------------------------------------------------------------------------------- 1 | 386db79cbd4039ea2e3cbf028fac095a1bc96c31 2 | -------------------------------------------------------------------------------- /repos/base-fiasco/recipes/src/base-fiasco/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 1790ce242c001ed77aab9695f69923a44d1dc1d1 2 | -------------------------------------------------------------------------------- /repos/base-fiasco/recipes/src/base-fiasco/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base-foc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base-foc/README -------------------------------------------------------------------------------- /repos/base-foc/etc/board.conf: -------------------------------------------------------------------------------- 1 | BOARD ?= unknown 2 | -------------------------------------------------------------------------------- /repos/base-foc/etc/specs.conf: -------------------------------------------------------------------------------- 1 | SPECS += foc 2 | -------------------------------------------------------------------------------- /repos/base-foc/lib/mk/spec/x86/base-foc-common.mk: -------------------------------------------------------------------------------- 1 | include $(REP_DIR)/lib/mk/base-foc-common.inc 2 | -------------------------------------------------------------------------------- /repos/base-foc/ports/foc.hash: -------------------------------------------------------------------------------- 1 | abe2de76835f33297ca4e4ac687e69bc04f83dc5 2 | -------------------------------------------------------------------------------- /repos/base-foc/recipes/src/base-foc-imx6q_sabrelite/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base-foc/recipes/src/base-foc-imx7d_sabre/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base-foc/recipes/src/base-foc-pbxa9/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 391b798b7c1d1b44ff65d855980eb41a8f4a87c1 2 | -------------------------------------------------------------------------------- /repos/base-foc/recipes/src/base-foc-pbxa9/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base-foc/recipes/src/base-foc-pc/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 79eab679e71dd70803b0e1647a23e2ba86c76f50 2 | -------------------------------------------------------------------------------- /repos/base-foc/recipes/src/base-foc-pc/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base-foc/recipes/src/base-foc-rpi3/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 7a16aeb081d1392c36d83f526936f17cc9560442 2 | -------------------------------------------------------------------------------- /repos/base-foc/recipes/src/base-foc-rpi3/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base-hw/board/imx53_qsb/arch: -------------------------------------------------------------------------------- 1 | arm_v7a 2 | -------------------------------------------------------------------------------- /repos/base-hw/board/imx53_qsb/image_link_address: -------------------------------------------------------------------------------- 1 | 0x70010000 2 | -------------------------------------------------------------------------------- /repos/base-hw/board/imx53_qsb_tz/arch: -------------------------------------------------------------------------------- 1 | arm_v7a 2 | -------------------------------------------------------------------------------- /repos/base-hw/board/imx53_qsb_tz/image_link_address: -------------------------------------------------------------------------------- 1 | 0x70010000 2 | -------------------------------------------------------------------------------- /repos/base-hw/board/imx6q_sabrelite/arch: -------------------------------------------------------------------------------- 1 | arm_v7a 2 | -------------------------------------------------------------------------------- /repos/base-hw/board/imx7d_sabre/arch: -------------------------------------------------------------------------------- 1 | arm_v7a 2 | -------------------------------------------------------------------------------- /repos/base-hw/board/nit6_solox/arch: -------------------------------------------------------------------------------- 1 | arm_v7a 2 | -------------------------------------------------------------------------------- /repos/base-hw/board/pbxa9/arch: -------------------------------------------------------------------------------- 1 | arm_v7a 2 | -------------------------------------------------------------------------------- /repos/base-hw/board/pc/arch: -------------------------------------------------------------------------------- 1 | x86_64 2 | -------------------------------------------------------------------------------- /repos/base-hw/board/usb_armory/arch: -------------------------------------------------------------------------------- 1 | arm_v7a 2 | -------------------------------------------------------------------------------- /repos/base-hw/board/wand_quad/arch: -------------------------------------------------------------------------------- 1 | arm_v7a 2 | -------------------------------------------------------------------------------- /repos/base-hw/etc/specs.conf: -------------------------------------------------------------------------------- 1 | SPECS += hw 2 | -------------------------------------------------------------------------------- /repos/base-hw/lib/mk/spec/arm/startup-hw.mk: -------------------------------------------------------------------------------- 1 | include $(BASE_DIR)/lib/mk/spec/arm/startup.inc 2 | -------------------------------------------------------------------------------- /repos/base-hw/lib/mk/spec/x86_64/startup-hw.mk: -------------------------------------------------------------------------------- 1 | include $(BASE_DIR)/lib/mk/spec/x86_64/startup.inc 2 | -------------------------------------------------------------------------------- /repos/base-hw/recipes/src/base-hw-imx53_qsb/used_apis: -------------------------------------------------------------------------------- 1 | base-hw 2 | base 3 | -------------------------------------------------------------------------------- /repos/base-hw/recipes/src/base-hw-imx53_qsb_tz/used_apis: -------------------------------------------------------------------------------- 1 | base-hw 2 | base 3 | -------------------------------------------------------------------------------- /repos/base-hw/recipes/src/base-hw-imx6q_sabrelite/used_apis: -------------------------------------------------------------------------------- 1 | base-hw 2 | base 3 | -------------------------------------------------------------------------------- /repos/base-hw/recipes/src/base-hw-imx7d_sabre/used_apis: -------------------------------------------------------------------------------- 1 | base-hw 2 | base 3 | -------------------------------------------------------------------------------- /repos/base-hw/recipes/src/base-hw-nit6_solox/used_apis: -------------------------------------------------------------------------------- 1 | base-hw 2 | base 3 | -------------------------------------------------------------------------------- /repos/base-hw/recipes/src/base-hw-pbxa9/used_apis: -------------------------------------------------------------------------------- 1 | base-hw 2 | base 3 | -------------------------------------------------------------------------------- /repos/base-hw/recipes/src/base-hw-pc/used_apis: -------------------------------------------------------------------------------- 1 | base-hw 2 | base 3 | -------------------------------------------------------------------------------- /repos/base-hw/recipes/src/base-hw-virt_qemu/used_apis: -------------------------------------------------------------------------------- 1 | base-hw 2 | base 3 | -------------------------------------------------------------------------------- /repos/base-linux/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base-linux/README -------------------------------------------------------------------------------- /repos/base-linux/etc/specs.conf: -------------------------------------------------------------------------------- 1 | SPECS += linux 2 | -------------------------------------------------------------------------------- /repos/base-linux/lib/mk/core-linux.mk: -------------------------------------------------------------------------------- 1 | include $(REP_DIR)/lib/mk/core-linux.inc 2 | -------------------------------------------------------------------------------- /repos/base-linux/lib/mk/spec/arm/startup-linux.mk: -------------------------------------------------------------------------------- 1 | include $(BASE_DIR)/lib/mk/spec/arm/startup.inc 2 | -------------------------------------------------------------------------------- /repos/base-linux/recipes/src/base-linux/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 4aea382035415c79bf5d551642ebfa64d42e4d21 2 | -------------------------------------------------------------------------------- /repos/base-linux/recipes/src/base-linux/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base-nova/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base-nova/README -------------------------------------------------------------------------------- /repos/base-nova/etc/specs.conf: -------------------------------------------------------------------------------- 1 | SPECS += nova 2 | -------------------------------------------------------------------------------- /repos/base-nova/ports/nova.hash: -------------------------------------------------------------------------------- 1 | 33a2fa953ec52b0f63b921f4d33d68891c0aada0 2 | -------------------------------------------------------------------------------- /repos/base-nova/recipes/src/base-nova/used_apis: -------------------------------------------------------------------------------- 1 | base-nova 2 | base 3 | -------------------------------------------------------------------------------- /repos/base-okl4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base-okl4/README -------------------------------------------------------------------------------- /repos/base-okl4/etc/specs.conf: -------------------------------------------------------------------------------- 1 | SPECS += okl4 2 | -------------------------------------------------------------------------------- /repos/base-okl4/ports/okl4.hash: -------------------------------------------------------------------------------- 1 | dcd46f19514cefcd38053b1f4a9df5d115875afc 2 | -------------------------------------------------------------------------------- /repos/base-okl4/recipes/src/base-okl4/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base-okl4/tool/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base-okl4/tool/README -------------------------------------------------------------------------------- /repos/base-pistachio/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base-pistachio/README -------------------------------------------------------------------------------- /repos/base-pistachio/etc/specs.conf: -------------------------------------------------------------------------------- 1 | SPECS += pistachio 2 | -------------------------------------------------------------------------------- /repos/base-pistachio/recipes/src/base-pistachio/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base-sel4/etc/board.conf: -------------------------------------------------------------------------------- 1 | BOARD ?= unknown 2 | -------------------------------------------------------------------------------- /repos/base-sel4/etc/specs.conf: -------------------------------------------------------------------------------- 1 | SPECS += sel4 2 | -------------------------------------------------------------------------------- /repos/base-sel4/ports/sel4.hash: -------------------------------------------------------------------------------- 1 | 9ab19376285d865052c2b5021560306306bf19a8 2 | -------------------------------------------------------------------------------- /repos/base-sel4/ports/sel4_tools.hash: -------------------------------------------------------------------------------- 1 | 78557e468a0afa132d2ed90b54c0c8f38686240c 2 | -------------------------------------------------------------------------------- /repos/base-sel4/recipes/src/base-sel4-imx6q_sabrelite/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base-sel4/recipes/src/base-sel4-imx7d_sabre/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base-sel4/recipes/src/base-sel4-x86/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/README -------------------------------------------------------------------------------- /repos/base/etc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/etc/README -------------------------------------------------------------------------------- /repos/base/etc/tools.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/etc/tools.conf -------------------------------------------------------------------------------- /repos/base/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/include/README -------------------------------------------------------------------------------- /repos/base/lib/README: -------------------------------------------------------------------------------- 1 | This directory holds library-description files. 2 | -------------------------------------------------------------------------------- /repos/base/lib/mk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/lib/mk/README -------------------------------------------------------------------------------- /repos/base/lib/mk/base.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/lib/mk/base.inc -------------------------------------------------------------------------------- /repos/base/lib/mk/base.mk: -------------------------------------------------------------------------------- 1 | LIBS += ld 2 | -------------------------------------------------------------------------------- /repos/base/lib/mk/cxx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/lib/mk/cxx.mk -------------------------------------------------------------------------------- /repos/base/lib/mk/ld.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/lib/mk/ld.mk -------------------------------------------------------------------------------- /repos/base/lib/symbols/ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/lib/symbols/ld -------------------------------------------------------------------------------- /repos/base/mk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/mk/README -------------------------------------------------------------------------------- /repos/base/mk/base-libs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/mk/base-libs.mk -------------------------------------------------------------------------------- /repos/base/mk/dep_lib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/mk/dep_lib.mk -------------------------------------------------------------------------------- /repos/base/mk/dep_prg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/mk/dep_prg.mk -------------------------------------------------------------------------------- /repos/base/mk/generic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/mk/generic.mk -------------------------------------------------------------------------------- /repos/base/mk/global.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/mk/global.mk -------------------------------------------------------------------------------- /repos/base/mk/lib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/mk/lib.mk -------------------------------------------------------------------------------- /repos/base/mk/prg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/mk/prg.mk -------------------------------------------------------------------------------- /repos/base/mk/spec/32bit.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/mk/spec/32bit.mk -------------------------------------------------------------------------------- /repos/base/mk/spec/64bit.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/mk/spec/64bit.mk -------------------------------------------------------------------------------- /repos/base/mk/spec/arm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/mk/spec/arm.mk -------------------------------------------------------------------------------- /repos/base/mk/spec/experimental.mk: -------------------------------------------------------------------------------- 1 | CC_OPT += -DEXPERIMENTAL 2 | -------------------------------------------------------------------------------- /repos/base/mk/spec/release.mk: -------------------------------------------------------------------------------- 1 | CC_OPT += -DGENODE_RELEASE 2 | -------------------------------------------------------------------------------- /repos/base/mk/spec/riscv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/mk/spec/riscv.mk -------------------------------------------------------------------------------- /repos/base/mk/util.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/mk/util.inc -------------------------------------------------------------------------------- /repos/base/ports/grub2.hash: -------------------------------------------------------------------------------- 1 | 856f9946a1482cbebc519818e3e4736bcd11e5e4 2 | -------------------------------------------------------------------------------- /repos/base/ports/grub2.port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/ports/grub2.port -------------------------------------------------------------------------------- /repos/base/recipes/api/base/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 d4b5b53bc270cebd87bf01a93c6da241077aad42 2 | -------------------------------------------------------------------------------- /repos/base/recipes/api/so/hash: -------------------------------------------------------------------------------- 1 | 2020-05-17 9c6d7adeb680c75eb4529036acdef744c0e4006c 2 | -------------------------------------------------------------------------------- /repos/base/recipes/pkg/test-entrypoint/README: -------------------------------------------------------------------------------- 1 | Scenario that tests Genode::Entrypoint functionality 2 | -------------------------------------------------------------------------------- /repos/base/recipes/pkg/test-entrypoint/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 e35abe047c7ec7fe02c0939de16bfc80ed421d38 2 | -------------------------------------------------------------------------------- /repos/base/recipes/pkg/test-log/README: -------------------------------------------------------------------------------- 1 | Scenario that tests 'Genode::log()' and the LOG session 2 | -------------------------------------------------------------------------------- /repos/base/recipes/pkg/test-log/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 79d43c7e33381048618dbd7ba6ca34a3eda23f6c 2 | -------------------------------------------------------------------------------- /repos/base/recipes/pkg/test-mmio/README: -------------------------------------------------------------------------------- 1 | Scenario that tests the MMIO framework 2 | -------------------------------------------------------------------------------- /repos/base/recipes/pkg/test-new_delete/README: -------------------------------------------------------------------------------- 1 | Test dynamic memory management in C++ 2 | -------------------------------------------------------------------------------- /repos/base/recipes/pkg/test-reconstructible/README: -------------------------------------------------------------------------------- 1 | Test for 'Reconstructible' 2 | -------------------------------------------------------------------------------- /repos/base/recipes/pkg/test-registry/README: -------------------------------------------------------------------------------- 1 | Test for 'Registry' data structure 2 | -------------------------------------------------------------------------------- /repos/base/recipes/pkg/test-rm_fault/README: -------------------------------------------------------------------------------- 1 | Scenario that tests 'Genode::log()' and the LOG session 2 | -------------------------------------------------------------------------------- /repos/base/recipes/pkg/test-rm_fault/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 edbf57617935a054a681e097a611006496ed4c88 2 | -------------------------------------------------------------------------------- /repos/base/recipes/pkg/test-rm_nested/README: -------------------------------------------------------------------------------- 1 | Testing nested region maps 2 | -------------------------------------------------------------------------------- /repos/base/recipes/pkg/test-rm_stress/README: -------------------------------------------------------------------------------- 1 | Scenario that stresses region-map attachments 2 | -------------------------------------------------------------------------------- /repos/base/recipes/pkg/test-rm_stress/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 436a166f1c4371619d7a64bf879dd0ce2dc75429 2 | -------------------------------------------------------------------------------- /repos/base/recipes/pkg/test-sanitizer/README: -------------------------------------------------------------------------------- 1 | Test for sanitizer runtime error detection 2 | -------------------------------------------------------------------------------- /repos/base/recipes/pkg/test-sanitizer/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 3877f6f98ff7c3921bdb7b2b83f40a161e9cd5bb 2 | -------------------------------------------------------------------------------- /repos/base/recipes/pkg/test-stack_smash/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 00a8e3979871b2a0ab67088c3d2b57454ed653f9 2 | -------------------------------------------------------------------------------- /repos/base/recipes/pkg/test-synced_interface/README: -------------------------------------------------------------------------------- 1 | Test for 'Synced_interface' 2 | -------------------------------------------------------------------------------- /repos/base/recipes/pkg/test-timer/README: -------------------------------------------------------------------------------- 1 | Basic test for the timer driver. 2 | -------------------------------------------------------------------------------- /repos/base/recipes/pkg/test-token/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 b96b88fee3e0946fea12a44cea94963b2b16d173 2 | -------------------------------------------------------------------------------- /repos/base/recipes/pkg/test-xml_generator/README: -------------------------------------------------------------------------------- 1 | Test for XML generator. 2 | -------------------------------------------------------------------------------- /repos/base/recipes/pkg/test-xml_node/README: -------------------------------------------------------------------------------- 1 | Test for XML parser. 2 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-ds_ownership/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 715bfaa6ea0bff54c0e2477c1bbccf56c0bfc935 2 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-ds_ownership/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-entrypoint/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-log/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-mmio/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 6542fc1df645f45c9fc71b5c18b458a9e630470d 2 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-mmio/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-new_delete/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-reconstructible/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-registry/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 e1e3559b2f3010d96d19e81cbaa6abbeb07c6251 2 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-registry/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-rm_fault/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 93812b90ee88b44d4fc3b26af77ad0344359e51a 2 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-rm_fault/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-rm_nested/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-rm_stress/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-sanitizer/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | sanitizer 3 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-segfault/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-stack_smash/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-synced_interface/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-timer/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | timer_session 3 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-tls/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-token/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 f04c4162857259fd48d864e9076ae401c9093dbb 2 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-token/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-xml_generator/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | file_system_session 3 | libgcov 4 | os 5 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-xml_node/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 39a7ce53177b2bad4928846f40b8ef542d8f6840 2 | -------------------------------------------------------------------------------- /repos/base/recipes/src/test-xml_node/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/base/run/log.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/run/log.run -------------------------------------------------------------------------------- /repos/base/run/migrate.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/run/migrate.run -------------------------------------------------------------------------------- /repos/base/run/smp.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/run/smp.run -------------------------------------------------------------------------------- /repos/base/run/sub_rm.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/run/sub_rm.run -------------------------------------------------------------------------------- /repos/base/run/thread.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/run/thread.run -------------------------------------------------------------------------------- /repos/base/src/README: -------------------------------------------------------------------------------- 1 | This directory contains all source codes. 2 | -------------------------------------------------------------------------------- /repos/base/src/core/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/src/core/main.cc -------------------------------------------------------------------------------- /repos/base/src/ld/genode.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/base/src/ld/genode.ld -------------------------------------------------------------------------------- /repos/dde_bsd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/dde_bsd/README -------------------------------------------------------------------------------- /repos/dde_bsd/audio.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/dde_bsd/audio.list -------------------------------------------------------------------------------- /repos/dde_bsd/ports/dde_bsd.hash: -------------------------------------------------------------------------------- 1 | 4d3a973ccec12ca00589f9213c2ce663d4a4e496 2 | -------------------------------------------------------------------------------- /repos/dde_bsd/recipes/pkg/bsd_audio_drv/README: -------------------------------------------------------------------------------- 1 | 2 | Audio driver ported from OpenBSD 3 | 4 | -------------------------------------------------------------------------------- /repos/dde_bsd/recipes/pkg/bsd_audio_drv/archives: -------------------------------------------------------------------------------- 1 | _/src/bsd_audio_drv 2 | -------------------------------------------------------------------------------- /repos/dde_ipxe/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/dde_ipxe/README -------------------------------------------------------------------------------- /repos/dde_ipxe/ports/dde_ipxe.hash: -------------------------------------------------------------------------------- 1 | 79cd5d4ab2b1451966107c40fb0890a4a206279d 2 | -------------------------------------------------------------------------------- /repos/dde_ipxe/recipes/pkg/ipxe_nic_drv/archives: -------------------------------------------------------------------------------- 1 | _/src/ipxe_nic_drv 2 | -------------------------------------------------------------------------------- /repos/dde_ipxe/src/lib/dde_ipxe/include/bits/byteswap.h: -------------------------------------------------------------------------------- 1 | #include_next 2 | -------------------------------------------------------------------------------- /repos/dde_ipxe/src/lib/dde_ipxe/include/bits/compiler.h: -------------------------------------------------------------------------------- 1 | #include_next 2 | -------------------------------------------------------------------------------- /repos/dde_ipxe/src/lib/dde_ipxe/include/bits/cpu.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/dde_ipxe/src/lib/dde_ipxe/include/bits/eltorito.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/dde_ipxe/src/lib/dde_ipxe/include/bits/endian.h: -------------------------------------------------------------------------------- 1 | #include_next 2 | -------------------------------------------------------------------------------- /repos/dde_ipxe/src/lib/dde_ipxe/include/bits/errfile.h: -------------------------------------------------------------------------------- 1 | #include_next 2 | -------------------------------------------------------------------------------- /repos/dde_ipxe/src/lib/dde_ipxe/include/bits/io.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /repos/dde_ipxe/src/lib/dde_ipxe/include/bits/nap.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/dde_ipxe/src/lib/dde_ipxe/include/bits/smbios.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/dde_ipxe/src/lib/dde_ipxe/include/bits/stdint.h: -------------------------------------------------------------------------------- 1 | #include_next 2 | -------------------------------------------------------------------------------- /repos/dde_ipxe/src/lib/dde_ipxe/include/bits/string.h: -------------------------------------------------------------------------------- 1 | #include_next 2 | -------------------------------------------------------------------------------- /repos/dde_ipxe/src/lib/dde_ipxe/include/bits/uaccess.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /repos/dde_ipxe/src/lib/dde_ipxe/include/bits/umalloc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/dde_ipxe/src/lib/dde_ipxe/include/config/local/console.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/dde_ipxe/src/lib/dde_ipxe/include/config/local/general.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/dde_ipxe/src/lib/dde_ipxe/include/config/local/ioapi.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/dde_ipxe/src/lib/dde_ipxe/include/config/local/nap.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/dde_ipxe/src/lib/dde_ipxe/include/config/local/serial.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/dde_ipxe/src/lib/dde_ipxe/include/config/local/timer.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/dde_ipxe/src/lib/dde_ipxe/include/config/local/umalloc.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/dde_linux/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/dde_linux/README -------------------------------------------------------------------------------- /repos/dde_linux/fec.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/dde_linux/fec.list -------------------------------------------------------------------------------- /repos/dde_linux/lxip.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/dde_linux/lxip.list -------------------------------------------------------------------------------- /repos/dde_linux/ports/dde_linux.hash: -------------------------------------------------------------------------------- 1 | 447158aa8aa24d4e2925a0479d8710a2d7d738e9 2 | -------------------------------------------------------------------------------- /repos/dde_linux/ports/libnl.hash: -------------------------------------------------------------------------------- 1 | 129b0b7ddc24ad7e6bfb6d885f99b480c63e7832 2 | -------------------------------------------------------------------------------- /repos/dde_linux/ports/linux-firmware.hash: -------------------------------------------------------------------------------- 1 | c3bbc3a7feffd7fd6769897fda6d1278149f9fb4 2 | -------------------------------------------------------------------------------- /repos/dde_linux/ports/linux.hash: -------------------------------------------------------------------------------- 1 | b00fd4b8dc40ca35d3a9f8f27bfd7ec8c671bd4b 2 | -------------------------------------------------------------------------------- /repos/dde_linux/ports/wpa_supplicant.hash: -------------------------------------------------------------------------------- 1 | 99cb873478b28fde24664d6a587ee5df166cd516 2 | -------------------------------------------------------------------------------- /repos/dde_linux/recipes/pkg/usb_modem_drv/archives: -------------------------------------------------------------------------------- 1 | _/src/usb_modem_drv 2 | -------------------------------------------------------------------------------- /repos/dde_linux/recipes/src/fec_nic_drv/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 733a3d62781441ccc1302914a8d10c81507fafba 2 | -------------------------------------------------------------------------------- /repos/dde_linux/recipes/src/usb_modem_drv/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 67b288c9a2839cfec87b321e4c48423442bb3258 2 | -------------------------------------------------------------------------------- /repos/dde_linux/src/lib/libnl/include/linux/errqueue.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/dde_linux/src/lib/libnl/include/linux/filter.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/dde_linux/src/lib/libnl/include/linux/socket.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/dde_linux/src/lib/libnl/include/netpacket/packet.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/dde_linux/src/lib/lxip/include/linux/netfilter_arp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /repos/dde_linux/src/lib/lxip/include/linux/netfilter_ipv4.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /repos/dde_linux/src/lib/lxip/include/net/fib_rules.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /repos/dde_linux/src/lib/lxip/include/net/gen_stats.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /repos/dde_linux/src/lib/lxip/include/net/inet_ecn.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /repos/dde_linux/src/lib/wpa_driver_nl80211/include/net/if.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /repos/dde_linux/src/lib/wpa_driver_nl80211/include/net/if_arp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /repos/dde_linux/src/lib/wpa_driver_nl80211/include/netpacket/packet.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /repos/dde_linux/usb.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/dde_linux/usb.list -------------------------------------------------------------------------------- /repos/dde_rump/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/dde_rump/README -------------------------------------------------------------------------------- /repos/dde_rump/ports/dde_rump.hash: -------------------------------------------------------------------------------- 1 | bb358512dc48cc6c2221de4e3fe105ed0a3ed847 2 | -------------------------------------------------------------------------------- /repos/dde_rump/recipes/src/rump/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 1eacc4b967c6ce3c9eb2813c9bd9787a2793ea29 2 | -------------------------------------------------------------------------------- /repos/dde_rump/rump.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/dde_rump/rump.list -------------------------------------------------------------------------------- /repos/demo/doc/demo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/demo/doc/demo.txt -------------------------------------------------------------------------------- /repos/demo/lib/import/import-libpng_static.mk: -------------------------------------------------------------------------------- 1 | REP_INC_DIR += include/libpng_static 2 | -------------------------------------------------------------------------------- /repos/demo/lib/import/import-libz_static.mk: -------------------------------------------------------------------------------- 1 | REP_INC_DIR += include/libz_static 2 | -------------------------------------------------------------------------------- /repos/demo/lib/import/import-mini_c.mk: -------------------------------------------------------------------------------- 1 | REP_INC_DIR += include/mini_c 2 | -------------------------------------------------------------------------------- /repos/demo/lib/mk/mini_c.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/demo/lib/mk/mini_c.mk -------------------------------------------------------------------------------- /repos/demo/src/lib/libpng/stdio.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/gems/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/gems/README -------------------------------------------------------------------------------- /repos/gems/lib/import/import-aes_cbc_4k.mk: -------------------------------------------------------------------------------- 1 | REP_INC_DIR += src/lib/aes_cbc_4k 2 | -------------------------------------------------------------------------------- /repos/gems/lib/import/import-vfs_gpu.mk: -------------------------------------------------------------------------------- 1 | REP_INC_DIR += src/lib/vfs/gpu 2 | -------------------------------------------------------------------------------- /repos/gems/lib/mk/cpu_sampler_platform.mk: -------------------------------------------------------------------------------- 1 | SHARED_LIB = yes 2 | 3 | CC_CXX_WARN_STRICT = 4 | -------------------------------------------------------------------------------- /repos/gems/lib/mk/file.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/gems/lib/mk/file.mk -------------------------------------------------------------------------------- /repos/gems/ports/cbe.hash: -------------------------------------------------------------------------------- 1 | 56ab06c33f61345797baa22c8720e45212b4cb2c 2 | -------------------------------------------------------------------------------- /repos/gems/ports/cbe.port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/gems/ports/cbe.port -------------------------------------------------------------------------------- /repos/gems/recipes/api/aes_cbc_4k/hash: -------------------------------------------------------------------------------- 1 | 2020-10-08 b3af8e115f484b87b6d2c4ca2f5995f9cc89f564 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/api/gems/hash: -------------------------------------------------------------------------------- 1 | 2022-02-14 db49cf7af4404ec2ea8758c0618e1a3056495c73 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/backdrop/README: -------------------------------------------------------------------------------- 1 | 2 | Package for displaying desktop backgrounds 3 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/cbe_check/README: -------------------------------------------------------------------------------- 1 | Runtime for deploying cbe_check component from the depot. 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/cbe_check/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 a0b521697a15819555a1694cd1b96d3e3b2d9105 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/cbe_demo/README: -------------------------------------------------------------------------------- 1 | CBE meta package 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/cbe_fs/archives: -------------------------------------------------------------------------------- 1 | _/src/chroot 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/cbe_init/README: -------------------------------------------------------------------------------- 1 | Runtime for deploying cbe_init component from the depot. 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/cbe_ta_fs/archives: -------------------------------------------------------------------------------- 1 | _/src/chroot 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/cbe_vm_fs/archives: -------------------------------------------------------------------------------- 1 | _/src/chroot 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/cbe_vm_fs/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 e8977dfb258777f6f2c7c0e9773eec834b99e421 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/depot_download/README: -------------------------------------------------------------------------------- 1 | 2 | Subsystem for downloading depot content 3 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/drivers_managed-pc/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 18e7da0ebb2e7efb954c695018e27d2e28d6d9e8 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/drivers_nic-pc/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 7581d7f5f0f29b9783be7919257b86a3e0edee8e 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/file_vault/README: -------------------------------------------------------------------------------- 1 | See repos/gems/src/app/file_vault/README. 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/file_vault/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 8af43e29647c4e160c431648ec95d6a940c380fd 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/fonts_fs/README: -------------------------------------------------------------------------------- 1 | File system for providing the default fonts 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/motif_decorator/archives: -------------------------------------------------------------------------------- 1 | _/src/decorator 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/motif_wm/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 667c5900447994d743f08dcc0db3394790e24fc1 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/nano3d/README: -------------------------------------------------------------------------------- 1 | 2 | Simple software-rendering demo application 3 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/nano3d/archives: -------------------------------------------------------------------------------- 1 | _/src/nano3d 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/sculpt_distribution-pc/README: -------------------------------------------------------------------------------- 1 | Default Sculpt distribution for PC platforms 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/test-depot_query_index/README: -------------------------------------------------------------------------------- 1 | Test for querying index files from a depot 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/test-fs_tool/README: -------------------------------------------------------------------------------- 1 | Test for the fs_tool component 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/test-libc_vfs_audit/README: -------------------------------------------------------------------------------- 1 | Test for auditing the VFS. 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/test-libc_vfs_audit/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 256fce2e74cc228b587a5e5ad94f90f3cdc8741d 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/themed_decorator/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 a81f7bf1268353f1f7ca125ffc04e6fb41abbc10 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/themed_wm/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 962aa3e5d86346e7ac52ff1cea7b73ff5f33cd72 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/touch_keyboard/README: -------------------------------------------------------------------------------- 1 | Virtual keyboard for touch-screen devices 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/trace_fs/README: -------------------------------------------------------------------------------- 1 | File system for providing access to Genode tracing 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/pkg/trace_fs/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 6f64ea04639e3e26a71ddb4c734ea9f994068e5d 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/raw/download_coreplus/hash: -------------------------------------------------------------------------------- 1 | 2021-01-22 b64bc417d8b584eaf6ea39cf023163e2d091ad44 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/raw/drivers_nic-pc/hash: -------------------------------------------------------------------------------- 1 | 2022-01-18 a98f4c7c982b900f4468dbb0e2c44c08e5e60ae6 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/raw/fonts_fs/hash: -------------------------------------------------------------------------------- 1 | 2019-02-25 3e5b81f60b441246c64454fe96aad1e1333bac86 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/raw/themed_wm/hash: -------------------------------------------------------------------------------- 1 | 2022-04-27 8ed349741e0beafb6f0473cb9f19ebd21dcef2f7 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/raw/touch_keyboard/hash: -------------------------------------------------------------------------------- 1 | 2022-02-18 77a033bc47ac74edec3efa498e8b02a9e686c773 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/cpu_load_display/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 eac96f09dcc402ebc08edd94753e9ebc100d25f5 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/depot_deploy/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 fa0dd14af6117be8a3c90ac1d4838687da9cb6d8 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/depot_deploy/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | vfs 4 | report_session 5 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/depot_query/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | vfs 4 | report_session 5 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/file_terminal/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 cbec1310dcb93d1b87f6c435a1030a92e28a880e 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/file_terminal/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | libc 4 | vfs 5 | terminal_session 6 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/fs_query/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 6a8a43bdaa08c5ce9670e3decc50864f52e6fe26 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/fs_query/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | vfs 4 | report_session 5 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/fs_tool/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | vfs 4 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/gpt_write/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | block_session 4 | jitterentropy 5 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/mixer_gui_qt/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 c886157cf85d41133b32951dde09533d6c76d413 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/nano3d/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 10dede981c5276f1d641f7a200476f9cb673bf8a 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/terminal/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 be516317b8ae54b30b3f77367901524541d936cc 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/test-tiled_wm/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 83a1e9437bedd37c96606738030147248e0895fe 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/vfs_audit/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | so 4 | vfs 5 | gems 6 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/vfs_gpu/api: -------------------------------------------------------------------------------- 1 | vfs_gpu 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/vfs_gpu/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | so 4 | vfs 5 | gems 6 | gpu_session 7 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/vfs_import/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 d1145c962cdbd84ae5364f5897631c1b0c81e584 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/vfs_import/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | so 4 | vfs 5 | gems 6 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/vfs_pipe/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 0b036d99b988fe16730b98bde7a3489a728082f5 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/vfs_pipe/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | so 4 | vfs 5 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/vfs_trace/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 e914cde5a27603278fb305a50891c0ea8cd54634 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/vfs_trace/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | so 4 | vfs 5 | gems 6 | trace 7 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/window_layouter/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 ab08adbea53fafadb39f1df13d34e7c9d78714ae 2 | -------------------------------------------------------------------------------- /repos/gems/recipes/src/wm/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 1447996da98683c26796f6fab7cfe910ee45dbba 2 | -------------------------------------------------------------------------------- /repos/gems/run/fs_query.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/gems/run/fs_query.run -------------------------------------------------------------------------------- /repos/gems/run/nano3d.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/gems/run/nano3d.run -------------------------------------------------------------------------------- /repos/gems/run/sculpt.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/gems/run/sculpt.run -------------------------------------------------------------------------------- /repos/gems/run/sculpt/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/gems/run/sculpt/index -------------------------------------------------------------------------------- /repos/gems/run/sculpt/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/gems/run/sculpt/vimrc -------------------------------------------------------------------------------- /repos/gems/run/tiled_wm.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/gems/run/tiled_wm.run -------------------------------------------------------------------------------- /repos/gems/run/vfs_cbe.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/gems/run/vfs_cbe.run -------------------------------------------------------------------------------- /repos/gems/run/vfs_cbe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/gems/run/vfs_cbe.sh -------------------------------------------------------------------------------- /repos/gems/run/wm.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/gems/run/wm.run -------------------------------------------------------------------------------- /repos/gems/sculpt/depot/alex-ab/download: -------------------------------------------------------------------------------- 1 | https://depot.genode.org 2 | -------------------------------------------------------------------------------- /repos/gems/sculpt/depot/blarson/download: -------------------------------------------------------------------------------- 1 | https://nobodyiii.github.io/genode-depot 2 | -------------------------------------------------------------------------------- /repos/gems/sculpt/depot/chelmuth/download: -------------------------------------------------------------------------------- 1 | https://depot.genode.org 2 | -------------------------------------------------------------------------------- /repos/gems/sculpt/depot/cnuke/download: -------------------------------------------------------------------------------- 1 | https://depot.genode.org 2 | -------------------------------------------------------------------------------- /repos/gems/sculpt/depot/cproc/download: -------------------------------------------------------------------------------- 1 | https://depot.genode.org 2 | -------------------------------------------------------------------------------- /repos/gems/sculpt/depot/genodelabs/download: -------------------------------------------------------------------------------- 1 | https://depot.genode.org 2 | -------------------------------------------------------------------------------- /repos/gems/sculpt/depot/jschlatow/download: -------------------------------------------------------------------------------- 1 | https://depot.genode.org 2 | -------------------------------------------------------------------------------- /repos/gems/sculpt/depot/mstein/download: -------------------------------------------------------------------------------- 1 | https://depot.genode.org 2 | -------------------------------------------------------------------------------- /repos/gems/sculpt/depot/nfeske/download: -------------------------------------------------------------------------------- 1 | https://depot.genode.org 2 | -------------------------------------------------------------------------------- /repos/gems/sculpt/depot/rite/download: -------------------------------------------------------------------------------- 1 | https://s3.eu-central-1.amazonaws.com/dev.depot.gapfruit.com 2 | -------------------------------------------------------------------------------- /repos/gems/sculpt/depot/skalk/download: -------------------------------------------------------------------------------- 1 | https://depot.genode.org 2 | -------------------------------------------------------------------------------- /repos/gems/sculpt/depot/ssumpf/download: -------------------------------------------------------------------------------- 1 | https://depot.genode.org 2 | -------------------------------------------------------------------------------- /repos/gems/sculpt/system/default: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /repos/gems/sculpt/system/pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/gems/sculpt/system/pc -------------------------------------------------------------------------------- /repos/gems/src/app/fs_tool/target.mk: -------------------------------------------------------------------------------- 1 | TARGET = fs_tool 2 | SRC_CC = main.cc 3 | LIBS += base vfs 4 | -------------------------------------------------------------------------------- /repos/gems/src/lib/vfs/gpu/target.mk: -------------------------------------------------------------------------------- 1 | LIBS = vfs_gpu 2 | 3 | BUILD_ARTIFACTS := 4 | -------------------------------------------------------------------------------- /repos/gems/src/lib/vfs/trace/target.mk: -------------------------------------------------------------------------------- 1 | LIBS = vfs_trace 2 | 3 | BUILD_ARTIFACTS := 4 | -------------------------------------------------------------------------------- /repos/hello_tutorial/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/hello_tutorial/README -------------------------------------------------------------------------------- /repos/libports/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/libports/README -------------------------------------------------------------------------------- /repos/libports/doc/libc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/libports/doc/libc.txt -------------------------------------------------------------------------------- /repos/libports/include/libc-genode/timeconv.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/libports/include/ncurses/ncurses.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /repos/libports/include/stdcxx/bits/gstdint.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /repos/libports/include/x86emu/stdint.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /repos/libports/include/x86emu/stdio.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /repos/libports/include/x86emu/stdlib.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /repos/libports/include/x86emu/string.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /repos/libports/lib/import/import-expat.mk: -------------------------------------------------------------------------------- 1 | INC_DIR += $(call select_from_ports,expat)/include 2 | -------------------------------------------------------------------------------- /repos/libports/lib/import/import-fatfs_block.mk: -------------------------------------------------------------------------------- 1 | INC_DIR += $(call select_from_ports,fatfs)/include 2 | -------------------------------------------------------------------------------- /repos/libports/lib/import/import-freetype.mk: -------------------------------------------------------------------------------- 1 | INC_DIR += $(call select_from_ports,freetype)/include 2 | -------------------------------------------------------------------------------- /repos/libports/lib/import/import-liblzma.mk: -------------------------------------------------------------------------------- 1 | INC_DIR += $(call select_from_ports,xz)/include/liblzma 2 | -------------------------------------------------------------------------------- /repos/libports/lib/import/import-libuvc.mk: -------------------------------------------------------------------------------- 1 | INC_DIR += $(call select_from_ports,libuvc)/include 2 | -------------------------------------------------------------------------------- /repos/libports/lib/import/import-libyuv.mk: -------------------------------------------------------------------------------- 1 | INC_DIR += $(call select_from_ports,libyuv)/include 2 | -------------------------------------------------------------------------------- /repos/libports/lib/import/import-lz4.mk: -------------------------------------------------------------------------------- 1 | INC_DIR += $(call select_from_ports,lz4)/include/lz4 2 | -------------------------------------------------------------------------------- /repos/libports/lib/import/import-qoost.mk: -------------------------------------------------------------------------------- 1 | INC_DIR += $(call select_from_ports,qoost)/include 2 | -------------------------------------------------------------------------------- /repos/libports/lib/import/import-x86emu.mk: -------------------------------------------------------------------------------- 1 | INC_DIR += $(call select_from_ports,x86emu)/include 2 | -------------------------------------------------------------------------------- /repos/libports/lib/mk/mesa.mk: -------------------------------------------------------------------------------- 1 | include $(REP_DIR)/lib/mk/mesa.inc 2 | -------------------------------------------------------------------------------- /repos/libports/lib/mk/mesa_api.mk: -------------------------------------------------------------------------------- 1 | # stub mk file 2 | 3 | CC_CXX_WARN_STRICT = 4 | -------------------------------------------------------------------------------- /repos/libports/lib/mk/spec/x86_32/qemu-usb.mk: -------------------------------------------------------------------------------- 1 | include $(REP_DIR)/lib/mk/qemu-usb.inc 2 | -------------------------------------------------------------------------------- /repos/libports/lib/mk/spec/x86_64/qemu-usb.mk: -------------------------------------------------------------------------------- 1 | include $(REP_DIR)/lib/mk/qemu-usb.inc 2 | -------------------------------------------------------------------------------- /repos/libports/lib/symbols/posix: -------------------------------------------------------------------------------- 1 | _ZN4Libc9Component9constructERNS_3EnvE T 2 | main U 3 | -------------------------------------------------------------------------------- /repos/libports/lib/symbols/qt5_component: -------------------------------------------------------------------------------- 1 | _ZN4Libc9Component9constructERNS_3EnvE T 2 | -------------------------------------------------------------------------------- /repos/libports/ports/acpica.hash: -------------------------------------------------------------------------------- 1 | cd5027ca2f274e0274219109ac8b3908fd9ed681 2 | -------------------------------------------------------------------------------- /repos/libports/ports/ada-runtime.hash: -------------------------------------------------------------------------------- 1 | 86595132085bfd8d141682fb04d96cb6f688a71a 2 | -------------------------------------------------------------------------------- /repos/libports/ports/ccid.hash: -------------------------------------------------------------------------------- 1 | 7a9fb9a6d004391a83a7c6c827bdacbc785c9353 2 | -------------------------------------------------------------------------------- /repos/libports/ports/curl.hash: -------------------------------------------------------------------------------- 1 | ba3c2049149311d614a70359426f5b0a49ea239f 2 | -------------------------------------------------------------------------------- /repos/libports/ports/egl_api.hash: -------------------------------------------------------------------------------- 1 | 783c1989a4f3d05c375075d054ae0359b20de147 2 | -------------------------------------------------------------------------------- /repos/libports/ports/expat.hash: -------------------------------------------------------------------------------- 1 | 6af8cf04ee4b5325ad883f9922d9320548c853bc 2 | -------------------------------------------------------------------------------- /repos/libports/ports/fatfs.hash: -------------------------------------------------------------------------------- 1 | 973b91980a4eff6f47c81e4a2de8d94726fc2ffc 2 | -------------------------------------------------------------------------------- /repos/libports/ports/ffi.hash: -------------------------------------------------------------------------------- 1 | f4bc2449b826b5884559d6ff453b06269270fff3 2 | -------------------------------------------------------------------------------- /repos/libports/ports/freetype.hash: -------------------------------------------------------------------------------- 1 | 35b677031728f8d9728d69ac44623909c1fad92d 2 | -------------------------------------------------------------------------------- /repos/libports/ports/fribidi.hash: -------------------------------------------------------------------------------- 1 | 389935d1fc7c08921e2759067289fa1219f75e20 2 | -------------------------------------------------------------------------------- /repos/libports/ports/gcov.hash: -------------------------------------------------------------------------------- 1 | 3da457023a91c4f0f272ab61fffdaf6e69eb173f 2 | -------------------------------------------------------------------------------- /repos/libports/ports/gmp.hash: -------------------------------------------------------------------------------- 1 | 855680cf4411a440d5353ea01c55ee6289c67b26 2 | -------------------------------------------------------------------------------- /repos/libports/ports/icu.hash: -------------------------------------------------------------------------------- 1 | 62f13b0976e6f74904ad9dfc82f1bc686fb36b6e 2 | -------------------------------------------------------------------------------- /repos/libports/ports/jbig2dec.hash: -------------------------------------------------------------------------------- 1 | 68226914536c0fdb1fb42fd87685989a43a8ea92 2 | -------------------------------------------------------------------------------- /repos/libports/ports/jitterentropy.hash: -------------------------------------------------------------------------------- 1 | a03bf871577242847d2be302ff4054197e8799e3 2 | -------------------------------------------------------------------------------- /repos/libports/ports/jpeg.hash: -------------------------------------------------------------------------------- 1 | cecaf6804d1785610c7cafb7b7abb5858c0af122 2 | -------------------------------------------------------------------------------- /repos/libports/ports/libarchive.hash: -------------------------------------------------------------------------------- 1 | 7ce310ea094eb907bb70a4936b60691131e19a2f 2 | -------------------------------------------------------------------------------- /repos/libports/ports/libc.hash: -------------------------------------------------------------------------------- 1 | c7cd230b11ca71979f32950803bc78b45adfa0ce 2 | -------------------------------------------------------------------------------- /repos/libports/ports/libdrm.hash: -------------------------------------------------------------------------------- 1 | b9c5f6ab814f107e5eb743892281c6ef0e80d860 2 | -------------------------------------------------------------------------------- /repos/libports/ports/libgcrypt.hash: -------------------------------------------------------------------------------- 1 | 37159ab4d75cdbca0929fa3fe3ea155f1ce45b83 2 | -------------------------------------------------------------------------------- /repos/libports/ports/libiconv.hash: -------------------------------------------------------------------------------- 1 | 3f5ca36dccc317a4b7f33f0e7b2807781861cbf9 2 | -------------------------------------------------------------------------------- /repos/libports/ports/libpng.hash: -------------------------------------------------------------------------------- 1 | ac05f35990279bbd8cc2f019ca51bc5d17b32be6 2 | -------------------------------------------------------------------------------- /repos/libports/ports/libsparkcrypto.hash: -------------------------------------------------------------------------------- 1 | 120d029e631135e802559ef196759ea314c6c257 2 | -------------------------------------------------------------------------------- /repos/libports/ports/libssh.hash: -------------------------------------------------------------------------------- 1 | 3abfbeacd8bfe69ba0e332a193fa62889a36ae0c 2 | -------------------------------------------------------------------------------- /repos/libports/ports/libusb.hash: -------------------------------------------------------------------------------- 1 | 63335816a3c8163c37af60eace3494b70fbb6ec4 2 | -------------------------------------------------------------------------------- /repos/libports/ports/libuvc.hash: -------------------------------------------------------------------------------- 1 | 71fd7ae692e1dadaaf191edc3de532efa6b2e1af 2 | -------------------------------------------------------------------------------- /repos/libports/ports/libyaml.hash: -------------------------------------------------------------------------------- 1 | 1cde80292bd8270c2b00d0f02730a014ece9c4d8 2 | -------------------------------------------------------------------------------- /repos/libports/ports/libyuv.hash: -------------------------------------------------------------------------------- 1 | 01cdd9be97364d27b8d6aa7aafc18ba0f2eb4c3f 2 | -------------------------------------------------------------------------------- /repos/libports/ports/lwip.hash: -------------------------------------------------------------------------------- 1 | 6e0661b21fde397041389d5d8db906b5a6543700 2 | -------------------------------------------------------------------------------- /repos/libports/ports/lz4.hash: -------------------------------------------------------------------------------- 1 | d99c3d3929a063031f588dbbc99318fffe00fb98 2 | -------------------------------------------------------------------------------- /repos/libports/ports/mesa.hash: -------------------------------------------------------------------------------- 1 | 2a8726a52ca7b243fcf40d07da28a52aba4c767f 2 | -------------------------------------------------------------------------------- /repos/libports/ports/mupdf.hash: -------------------------------------------------------------------------------- 1 | 5b492514a8e9ba4db6bbf54dee54b94f068f0dae 2 | -------------------------------------------------------------------------------- /repos/libports/ports/openjpeg.hash: -------------------------------------------------------------------------------- 1 | 721d101479429b2435349579ba5f2bdea84430b9 2 | -------------------------------------------------------------------------------- /repos/libports/ports/openssl.hash: -------------------------------------------------------------------------------- 1 | 69864664449bcdbee8dc08f4bbce08a66ca22e6f 2 | -------------------------------------------------------------------------------- /repos/libports/ports/pcg-c.hash: -------------------------------------------------------------------------------- 1 | 721366d846b2206f07e1285bc397b71e27b4a84b 2 | -------------------------------------------------------------------------------- /repos/libports/ports/pcsc-lite.hash: -------------------------------------------------------------------------------- 1 | 405b75827e7e6e8df46781cb3e9d8e68bc53f3d4 2 | -------------------------------------------------------------------------------- /repos/libports/ports/qemu-usb.hash: -------------------------------------------------------------------------------- 1 | 8b0fa7bf30ac8ee32c547b0eb5f468b947f12ae6 2 | -------------------------------------------------------------------------------- /repos/libports/ports/qoost.hash: -------------------------------------------------------------------------------- 1 | 014d68ce23644076c30c2dc03ee70c8fa04698d7 2 | -------------------------------------------------------------------------------- /repos/libports/ports/qt5-host.hash: -------------------------------------------------------------------------------- 1 | 21e078acd47b0d6888fe0f289eafbc8682da7a05 2 | -------------------------------------------------------------------------------- /repos/libports/ports/qt5.hash: -------------------------------------------------------------------------------- 1 | 8c77588a4c223886c942a3de31bf8f0b3aca6ca1 2 | -------------------------------------------------------------------------------- /repos/libports/ports/sanitizer.hash: -------------------------------------------------------------------------------- 1 | 68b8eb5bfa950adf094fe9e6c579e6d542dd6c63 2 | -------------------------------------------------------------------------------- /repos/libports/ports/stb.hash: -------------------------------------------------------------------------------- 1 | ab8f505722d9668c907cabba084f96b886985056 2 | -------------------------------------------------------------------------------- /repos/libports/ports/ttf-bitstream-vera.hash: -------------------------------------------------------------------------------- 1 | cd3684816b73c4361e11236f9e63302f99b9b1ff 2 | -------------------------------------------------------------------------------- /repos/libports/ports/x86emu.hash: -------------------------------------------------------------------------------- 1 | 8a1c3aa1d592fd3e5a1b0798471f8364870b79ae 2 | -------------------------------------------------------------------------------- /repos/libports/ports/xz.hash: -------------------------------------------------------------------------------- 1 | 45203fe21f2b441f6814db38d8ae73d922937587 2 | -------------------------------------------------------------------------------- /repos/libports/ports/zlib.hash: -------------------------------------------------------------------------------- 1 | f7aef12209e5464a2a54db75bf0cf9dc722da9a3 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/api/ffi/hash: -------------------------------------------------------------------------------- 1 | 2021-06-24 b808b219e520e96953ac5531d49d7ae6456d9538 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/api/gmp/hash: -------------------------------------------------------------------------------- 1 | 2021-02-22 85dd7243bee149bbd1a691c89182fe9bd0fd1835 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/api/icu/hash: -------------------------------------------------------------------------------- 1 | 2020-04-16 928dd5d7fb078ee2584490e9117caf47b67ef2bd 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/api/jpeg/hash: -------------------------------------------------------------------------------- 1 | 7-x-x f24469482e4bdede38ab82fc757642aaf66a7374 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/api/libdrm/hash: -------------------------------------------------------------------------------- 1 | 2021-11-29 82e8cd40bd7c44247a7559f1db8374538e714b05 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/api/liblzma/hash: -------------------------------------------------------------------------------- 1 | 2019-02-25 36ecffdb422eda24d40c58f5ac981d57c9700874 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/api/libpng/hash: -------------------------------------------------------------------------------- 1 | 2019-02-25 f7de8d21e768765331e2437518b99a1e78526427 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/api/libsparkcrypto/hash: -------------------------------------------------------------------------------- 1 | 2021-05-27 ed1297d6904dd32a9def3498127bbc911747bda3 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/api/libyaml/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 64ab1ef5a090fb894738dfa303f658ae681eb5b5 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/api/openjpeg/hash: -------------------------------------------------------------------------------- 1 | 2019-02-25 3ebdf39b39de250cec0143e69e1c517d0d039b1c 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/api/posix/hash: -------------------------------------------------------------------------------- 1 | 2020-05-17 a21b88d1cd96426315ca4486fec74a8a5409b4bd 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/api/qt5_component/hash: -------------------------------------------------------------------------------- 1 | 2020-07-12 450f4b22fbe6a0aeb7a69dd7e72d330fcbb7ce86 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/api/sanitizer/hash: -------------------------------------------------------------------------------- 1 | 2021-05-27 440f9a80a0232a20c13d89d8f3fa759dbd232b7b 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/api/zlib/hash: -------------------------------------------------------------------------------- 1 | 2019-02-25 3cc65f6f58596eb9456fddde0f343a82d4a0ffa8 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/acpica/README: -------------------------------------------------------------------------------- 1 | 2 | The acpica component. 3 | 4 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/acpica/archives: -------------------------------------------------------------------------------- 1 | _/src/acpica 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/gcov/README: -------------------------------------------------------------------------------- 1 | gcov runtime for tests executed by 'depot_autopilot.run' 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/mesa_gpu-cpu/README: -------------------------------------------------------------------------------- 1 | Softpipe Gallium driver of MESA using solely the CPU 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/mesa_gpu-etnaviv/README: -------------------------------------------------------------------------------- 1 | Etnaviv Gallium driver of MESA for Vivante GPUs 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/mesa_gpu-intel/README: -------------------------------------------------------------------------------- 1 | Iris Gallium driver of MESA for Intel GPUs 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/mesa_gpu-intel/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 2c0dfe3c79d85972f8946340b6a29aca6c3ed30c 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/pdf_view/README: -------------------------------------------------------------------------------- 1 | 2 | A PDF viewer 3 | 4 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/qt5_textedit/README: -------------------------------------------------------------------------------- 1 | Qt5 text editor 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/qt5_textedit/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 a78e8b3b90d0fec6c9bd4f54e5ae9e373cb0c1c9 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/system_rtc-pc/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 7314ffd53ce1d9f266a45b149455ffe4f39e26a7 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/test-expat/README: -------------------------------------------------------------------------------- 1 | Basic test for Expat port. 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/test-ldso/README: -------------------------------------------------------------------------------- 1 | Basic test for Genode LDSO. 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/test-ldso/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 467270387a1dc0410425ea81a6f7a0a06dd93bcd 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/test-libc/README: -------------------------------------------------------------------------------- 1 | Basic test for ported LibC. 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/test-libc_counter/README: -------------------------------------------------------------------------------- 1 | LibC counter test. 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/test-libc_fork/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 13950c69012005b54a3549bd3d19bf2e8838ae60 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/test-libc_getenv/README: -------------------------------------------------------------------------------- 1 | Libc getenv(...) test. 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/test-libc_vfs/README: -------------------------------------------------------------------------------- 1 | Test for using the libc_vfs plugin. 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/test-libc_vfs_counter/README: -------------------------------------------------------------------------------- 1 | LibC counter test through LibC VFS. 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/test-pthread/README: -------------------------------------------------------------------------------- 1 | POSIX thread and semaphore test. 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/test-sequence/README: -------------------------------------------------------------------------------- 1 | Test of the sequence utility. 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/test-spark/README: -------------------------------------------------------------------------------- 1 | Basic test for Ada language support. 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/test-spark_exception/README: -------------------------------------------------------------------------------- 1 | Test Ada exceptions in C++. 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/test-spark_secondary_stack/README: -------------------------------------------------------------------------------- 1 | Test Ada secondary stack. 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/pkg/test-stdcxx/README: -------------------------------------------------------------------------------- 1 | Simple stdcxx regression tests. 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/curl/api: -------------------------------------------------------------------------------- 1 | curl 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/curl/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | libssh 3 | openssl 4 | zlib 5 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/expat/api: -------------------------------------------------------------------------------- 1 | expat 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/expat/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/extract/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | base 3 | os 4 | so 5 | vfs 6 | libarchive 7 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/ffi/api: -------------------------------------------------------------------------------- 1 | ffi 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/ffi/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/freetype/api: -------------------------------------------------------------------------------- 1 | freetype 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/freetype/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/fs_utils/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | posix 3 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/gcov/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 337041d656fae9ffc8fb3b11fbf7723d966cc1e4 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/gcov/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | gmp 3 | libc 4 | posix 5 | stdcxx 6 | zlib 7 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/gmp/api: -------------------------------------------------------------------------------- 1 | gmp 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/gmp/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 982fbc9f71641fafa7ed3ab0cd438b0ac0dc158e 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/gmp/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/icu/api: -------------------------------------------------------------------------------- 1 | icu 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/icu/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | stdcxx 3 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/jbig2dec/api: -------------------------------------------------------------------------------- 1 | jbig2dec 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/jbig2dec/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | libpng 3 | zlib 4 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/jpeg/api: -------------------------------------------------------------------------------- 1 | jpeg 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/jpeg/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libarchive/api: -------------------------------------------------------------------------------- 1 | libarchive 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libarchive/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | liblzma 3 | zlib 4 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libc/api: -------------------------------------------------------------------------------- 1 | libc 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libc/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | net 3 | os 4 | so 5 | timer_session 6 | vfs 7 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libdrm/api: -------------------------------------------------------------------------------- 1 | libdrm 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libdrm/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 2c3b6f341a8ca08017cdddee7b79248817284d1d 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libdrm/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | gpu_session 3 | libc 4 | vfs_gpu 5 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libiconv/api: -------------------------------------------------------------------------------- 1 | libiconv 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libiconv/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/liblzma/api: -------------------------------------------------------------------------------- 1 | liblzma 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/liblzma/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libpng/api: -------------------------------------------------------------------------------- 1 | libpng 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libpng/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | so 3 | zlib 4 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libqgenodeviewwidget/api: -------------------------------------------------------------------------------- 1 | libqgenodeviewwidget 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libqpluginwidget/api: -------------------------------------------------------------------------------- 1 | libqpluginwidget 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libsparkcrypto/api: -------------------------------------------------------------------------------- 1 | libsparkcrypto 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libsparkcrypto/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | spark 3 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libssh/api: -------------------------------------------------------------------------------- 1 | libssh 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libssh/hash: -------------------------------------------------------------------------------- 1 | 2022-02-27 c3f794f683058386e890490b7d6ae8fca998579a 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libssh/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | zlib 3 | openssl 4 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libusb/api: -------------------------------------------------------------------------------- 1 | libusb 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libusb/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | usb_session 4 | libc 5 | 6 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libuvc/api: -------------------------------------------------------------------------------- 1 | libuvc 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libuvc/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | jpeg 3 | libusb 4 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libyuv/api: -------------------------------------------------------------------------------- 1 | libyuv 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/libyuv/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | stdcxx 3 | jpeg 4 | 5 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/mesa/api: -------------------------------------------------------------------------------- 1 | mesa 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/mupdf/api: -------------------------------------------------------------------------------- 1 | mupdf 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/ncurses/api: -------------------------------------------------------------------------------- 1 | ncurses 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/ncurses/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/openjpeg/api: -------------------------------------------------------------------------------- 1 | jpeg 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/openjpeg/hash: -------------------------------------------------------------------------------- 1 | 2022-04-27 9cd976edbdb7c2350cf42aa92f69c1862a844b99 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/openjpeg/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/openssl/api: -------------------------------------------------------------------------------- 1 | openssl 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/openssl/hash: -------------------------------------------------------------------------------- 1 | 2022-02-27 dead81c4adc98995bd57d60195091f4e418daa4d 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/openssl/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/pcre/api: -------------------------------------------------------------------------------- 1 | pcre 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/pcre/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/pcre16/api: -------------------------------------------------------------------------------- 1 | pcre16 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/pcre16/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 0f5ac6a0ebdb46269e5e04d7e5ee944166434da2 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/pcre16/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/pdf_view/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 88a13fcf79c53a7b1f865f44c5d0941682440ae8 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/posix/api: -------------------------------------------------------------------------------- 1 | posix 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/posix/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | libc 3 | so 4 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/qt5_base/api: -------------------------------------------------------------------------------- 1 | qt5 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/qt5_base/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 a3e77f5a876ec6b1593425f123e0a57c0b0ed5e1 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/qt5_component/api: -------------------------------------------------------------------------------- 1 | qt5_component 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/qt5_component/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | libc 3 | so 4 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/qt5_declarative/api: -------------------------------------------------------------------------------- 1 | qt5 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/qt5_declarative/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 1195b1637935e2075f45203a0b1de4cde892a506 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/qt5_declarative/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | mesa 3 | so 4 | stdcxx 5 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/qt5_quickcontrols/api: -------------------------------------------------------------------------------- 1 | qt5 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/qt5_quickcontrols/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | mesa 3 | so 4 | stdcxx 5 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/qt5_quickcontrols2/api: -------------------------------------------------------------------------------- 1 | qt5 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/qt5_quickcontrols2/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | libc 3 | mesa 4 | stdcxx 5 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/qt5_svg/api: -------------------------------------------------------------------------------- 1 | qt5 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/qt5_svg/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 e5c71d2c5bc7336b8a79021fcc376622aaf3221f 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/qt5_svg/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | libc 3 | mesa 4 | stdcxx 5 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/qt5_testqstring/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 b481f2969d7220678dadfb9e49d4d8caa3a5f11c 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/qt5_virtualkeyboard/api: -------------------------------------------------------------------------------- 1 | qt5 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/qt5_virtualkeyboard/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | mesa 3 | so 4 | stdcxx 5 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/sanitizer/api: -------------------------------------------------------------------------------- 1 | sanitizer 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/sanitizer/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 b98ba7f58b9b87dbc019927934c7c4e2fcbd1d0a 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/sanitizer/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | so 3 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/spark/api: -------------------------------------------------------------------------------- 1 | spark 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/spark/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | terminal_session 4 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/stdcxx/api: -------------------------------------------------------------------------------- 1 | stdcxx 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/stdcxx/used_apis: -------------------------------------------------------------------------------- 1 | so 2 | libc 3 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/stdin2out/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | posix 3 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/system_rtc/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 f19649677d866da951e8a8cfab69e5d5a3c191e1 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/system_rtc/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | rtc_session 4 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/test-expat/used_apis: -------------------------------------------------------------------------------- 1 | expat 2 | posix 3 | libc 4 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/test-ldso/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | libc 3 | so 4 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/test-libc/used_apis: -------------------------------------------------------------------------------- 1 | posix 2 | libc 3 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/test-libc_connect/used_apis: -------------------------------------------------------------------------------- 1 | posix 2 | libc 3 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/test-libc_counter/used_apis: -------------------------------------------------------------------------------- 1 | posix 2 | libc 3 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/test-libc_execve/used_apis: -------------------------------------------------------------------------------- 1 | posix 2 | libc 3 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/test-libc_fork/hash: -------------------------------------------------------------------------------- 1 | 2022-02-27 7439bd4f2fa0092ea95551c9dc17301954ec4d28 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/test-libc_fork/used_apis: -------------------------------------------------------------------------------- 1 | posix 2 | libc 3 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/test-libc_getenv/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | posix 3 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/test-libc_pipe/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | posix 3 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/test-libc_vfs/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | libc 3 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/test-libc_vfs_block/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | libc 3 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/test-netty/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | libc 3 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/test-pthread/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | posix 3 | libc 4 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/test-spark/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | spark 3 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/test-spark_exception/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | spark 3 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/test-spark_secondary_stack/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | spark 3 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/test-stdcxx/used_apis: -------------------------------------------------------------------------------- 1 | stdcxx 2 | posix 3 | libc 4 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/test-tcp/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 8de1893617e35e2b9fe0f9b57924717b37cab979 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/test-tcp/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | libc 3 | posix 4 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/vfs_fatfs/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | block_session 3 | fatfs 4 | os 5 | vfs 6 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/vfs_libusb/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | so 4 | usb_session 5 | vfs 6 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/zlib/api: -------------------------------------------------------------------------------- 1 | zlib 2 | -------------------------------------------------------------------------------- /repos/libports/recipes/src/zlib/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | -------------------------------------------------------------------------------- /repos/libports/src/app/qt5/examples/samegame/samegame.pro: -------------------------------------------------------------------------------- 1 | QT += quick 2 | SOURCES += main.cpp 3 | -------------------------------------------------------------------------------- /repos/libports/src/lib/libdrm/include/linux/stddef.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/libports/src/lib/libdrm/include/linux/types.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/libports/src/lib/libgcrypt/mod-source-info.h: -------------------------------------------------------------------------------- 1 | static char mod_source_info[] = ""; 2 | -------------------------------------------------------------------------------- /repos/libports/src/lib/mesa/etnaviv/target.mk: -------------------------------------------------------------------------------- 1 | LIBS := mesa_gpu-etnaviv 2 | -------------------------------------------------------------------------------- /repos/libports/src/lib/mesa/include/machine/cpu.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/libports/src/lib/mesa/softpipe/target.mk: -------------------------------------------------------------------------------- 1 | LIBS := mesa_gpu-softpipe 2 | -------------------------------------------------------------------------------- /repos/os/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/README -------------------------------------------------------------------------------- /repos/os/doc/init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/doc/init.txt -------------------------------------------------------------------------------- /repos/os/include/os/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/include/os/vfs.h -------------------------------------------------------------------------------- /repos/os/lib/import/import-nic_driver.mk: -------------------------------------------------------------------------------- 1 | REP_INC_DIR += src/drivers/nic/include 2 | -------------------------------------------------------------------------------- /repos/os/lib/mk/blit.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/lib/mk/blit.mk -------------------------------------------------------------------------------- /repos/os/lib/mk/net.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/lib/mk/net.mk -------------------------------------------------------------------------------- /repos/os/lib/mk/nic_driver.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/os/lib/mk/vfs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/lib/mk/vfs.mk -------------------------------------------------------------------------------- /repos/os/lib/symbols/vfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/lib/symbols/vfs -------------------------------------------------------------------------------- /repos/os/recipes/api/capture_session/hash: -------------------------------------------------------------------------------- 1 | 2020-07-12 964021d224cb6bd1d308c551e1be2a97a9f8071c 2 | -------------------------------------------------------------------------------- /repos/os/recipes/api/gpio_session/hash: -------------------------------------------------------------------------------- 1 | 2020-03-25 d4b2b5dbd93c331f848d0e9288260ce792caa3aa 2 | -------------------------------------------------------------------------------- /repos/os/recipes/api/gui_session/hash: -------------------------------------------------------------------------------- 1 | 2020-06-28 bc6b9b8b54bb405c2fa72134c370a98302d4511c 2 | -------------------------------------------------------------------------------- /repos/os/recipes/api/loader_session/hash: -------------------------------------------------------------------------------- 1 | 2020-06-21 cce0daa92e65cd749a5ed7bad7b90e8869263bf8 2 | -------------------------------------------------------------------------------- /repos/os/recipes/api/rtc_session/hash: -------------------------------------------------------------------------------- 1 | 2020-03-25 d7c406b9c9bc4e482419d1d90a19d6c3e877c590 2 | -------------------------------------------------------------------------------- /repos/os/recipes/api/sandbox/hash: -------------------------------------------------------------------------------- 1 | 2021-06-24 107da4ffef6e8c55cee14a497131292c779b7889 2 | -------------------------------------------------------------------------------- /repos/os/recipes/api/uplink_session/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 996ab9d103b7cafd48f0813bb474da789cefc895 2 | -------------------------------------------------------------------------------- /repos/os/recipes/api/usb_session/hash: -------------------------------------------------------------------------------- 1 | 2022-04-12 b3aee50282918f3b8e28218ecce8fb94fc71802c 2 | -------------------------------------------------------------------------------- /repos/os/recipes/api/virtio/hash: -------------------------------------------------------------------------------- 1 | 2022-02-14 ba487bac0db1f052bf39aeaf594e0fce0db77dde 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/black_hole/archives: -------------------------------------------------------------------------------- 1 | _/src/black_hole 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/chroot/archives: -------------------------------------------------------------------------------- 1 | _/src/chroot 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/clipboard/README: -------------------------------------------------------------------------------- 1 | Clipboard service 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/clipboard/archives: -------------------------------------------------------------------------------- 1 | _/src/clipboard 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/cpu_balancer/README: -------------------------------------------------------------------------------- 1 | 2 | A dynamic CPU balancer component. 3 | 4 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/cpu_balancer/archives: -------------------------------------------------------------------------------- 1 | _/src/cpu_balancer 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/fs_report/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 2a1ec14f9c409dc0a26f8397cb0314f4268b0191 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/fs_rom/archives: -------------------------------------------------------------------------------- 1 | _/src/fs_rom 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/mixer/archives: -------------------------------------------------------------------------------- 1 | _/src/mixer 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/nic_router-nat/archives: -------------------------------------------------------------------------------- 1 | _/src/nic_router 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/nit_focus/archives: -------------------------------------------------------------------------------- 1 | _/src/nit_focus 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/nit_focus/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 b38e298c4ed31ae2d768fa2ca443b5cf7de6ccfd 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/recall_fs/archives: -------------------------------------------------------------------------------- 1 | _/src/chroot 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/report_rom/archives: -------------------------------------------------------------------------------- 1 | _/src/report_rom 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/rom_filter/archives: -------------------------------------------------------------------------------- 1 | _/src/rom_filter 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/rom_reporter/archives: -------------------------------------------------------------------------------- 1 | _/src/rom_reporter 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-black_hole/README: -------------------------------------------------------------------------------- 1 | Test for the black-hole server 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-capture/README: -------------------------------------------------------------------------------- 1 | 2 | Test for the capture session interface 3 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-capture/archives: -------------------------------------------------------------------------------- 1 | _/src/test-capture 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-clipboard/README: -------------------------------------------------------------------------------- 1 | Clipboard test 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-dynamic_config/README: -------------------------------------------------------------------------------- 1 | Test for changing configuration at runtime. 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-fs_packet/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 2fa8b8039815d81b80d72e0d04afc91b9a56d41f 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-init/README: -------------------------------------------------------------------------------- 1 | Test for the init component. 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-init/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 aca9ff105cbe1363c9b36a0d6051c8acf95fdbe0 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-lx_block/README: -------------------------------------------------------------------------------- 1 | Testing the Linux-file-to-block-session server. 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-lx_block/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 0976a9790be7a938540eadb3ef6ce73a37f796b2 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-nic_loopback/README: -------------------------------------------------------------------------------- 1 | Test for the NIC loop-back service. 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-part_block_gpt/README: -------------------------------------------------------------------------------- 1 | Test part_block server with GPT disk. 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-part_block_mbr/README: -------------------------------------------------------------------------------- 1 | Test part_block server with MBR disk. 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-read_only_rom/README: -------------------------------------------------------------------------------- 1 | Test of read-only cached FS ROM. 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-report_rom/README: -------------------------------------------------------------------------------- 1 | Test for report-ROM service 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-report_rom/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 9791af897f0354b0fd2639d810d59417b68743c4 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-resource_yield/README: -------------------------------------------------------------------------------- 1 | Test for yielding resources. 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-rom_filter/README: -------------------------------------------------------------------------------- 1 | Test the ROM filter server. 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-rom_filter/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 f9e76fb42835686d491afbaf984d573499c7eef1 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-rtc/README: -------------------------------------------------------------------------------- 1 | Test for the RTC driver. 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-sandbox/README: -------------------------------------------------------------------------------- 1 | Test for the sandbox API. 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-signal/README: -------------------------------------------------------------------------------- 1 | Test for signalling framework 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-slab/README: -------------------------------------------------------------------------------- 1 | Slab allocator test 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-slab/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 a9f05d4cf34d42d31f71fad5e665a2b4f05dddb9 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-terminal_crosslink/README: -------------------------------------------------------------------------------- 1 | Test for the terminal crosslink server. 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-trace/README: -------------------------------------------------------------------------------- 1 | Low-level test for TRACE service. 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-trace/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 78b0460c5a8cc630fbe39826fe14fbec3b521381 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-trace_buffer/README: -------------------------------------------------------------------------------- 1 | Low-level test of the trace buffer. 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-trace_logger/README: -------------------------------------------------------------------------------- 1 | Test functionality of the trace logger. 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-utf8/README: -------------------------------------------------------------------------------- 1 | Test for UTF-8 decoder. 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-vfs_block/README: -------------------------------------------------------------------------------- 1 | Testing the VFS to Block session server. 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-vfs_stress_fs/README: -------------------------------------------------------------------------------- 1 | VFS stress test. 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-vfs_stress_ram/README: -------------------------------------------------------------------------------- 1 | VFS stress test. 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/test-weak_ptr/README: -------------------------------------------------------------------------------- 1 | Test for weak-pointer utilities. 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/trace_logger/README: -------------------------------------------------------------------------------- 1 | Utility for capturing trace events to the log 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/vfs/archives: -------------------------------------------------------------------------------- 1 | _/src/vfs 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/vfs/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 4376719c575cecddf6b96662edf7b4d88939f767 2 | -------------------------------------------------------------------------------- /repos/os/recipes/pkg/vfs_block/archives: -------------------------------------------------------------------------------- 1 | _/src/vfs_block 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/ahci_drv/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 8d14d1bb16d8e6e79518981293ee29efa5076640 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/black_hole/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 5ac9b906376475807bffa72389a4fe88bdd30e1a 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/chroot/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | file_system_session 3 | os 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/clipboard/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 6070043d80c7e58d9bcca8136c9f023794afffc4 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/clipboard/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | report_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/cpu_burner/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 3dc056efacfa12cea3196b43556e42d6263addf6 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/cpu_burner/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | timer_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/dummy/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 fb79764f11e84a786bbb6d1ca5a538106b10f9b4 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/dummy/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | timer_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/dummy_rtc_drv/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | rtc_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/dynamic_rom/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | timer_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/fb_sdl/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 8dde2409fff2c91af7e1897437ef9ffe4a6b5f6d 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/fs_report/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | report_session 4 | vfs 5 | -------------------------------------------------------------------------------- /repos/os/recipes/src/fs_rom/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | file_system_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/linux_nic_drv/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 deb834207a8c64d9e60de13781dc1b4f68f286dc 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/linux_rtc_drv/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | base-linux 3 | os 4 | rtc_session 5 | -------------------------------------------------------------------------------- /repos/os/recipes/src/log_core/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | timer_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/log_terminal/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | terminal_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/lx_fs/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 214aabdee3bfabd37b9e393890412dcfa0781ec3 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/mixer/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 e460af414b356460715c0641e0b719c3c5240527 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/nic_bridge/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 50e90b99f54a58dbde10886e3fde577112a4ff8c 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/nic_bridge/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | net 4 | nic_session 5 | -------------------------------------------------------------------------------- /repos/os/recipes/src/nic_loopback/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | nic_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/nic_router/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 62b001db529654caa8b5e203e443cb3d18ab5e58 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/nit_focus/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | report_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/pbxa9_drivers/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 dd886745a030e2c9b124e99884da1cd860fcc947 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/report_rom/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | report_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/rom_filter/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | -------------------------------------------------------------------------------- /repos/os/recipes/src/rom_logger/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/rom_reporter/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | report_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/rom_to_file/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | vfs 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/rtc_drv/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | rtc_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/sandbox/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | sandbox 3 | os 4 | report_session 5 | -------------------------------------------------------------------------------- /repos/os/recipes/src/sequence/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 419347e013764f8c6db1aba7e73b228ed51a872b 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/sequence/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | -------------------------------------------------------------------------------- /repos/os/recipes/src/shim/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 e3f0c80569c95f2ff75137dd13544fbce9b00aed 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/shim/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/terminal_crosslink/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | terminal_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/terminal_log/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 ecb26455d4aa28beca935d488490ce3af18a3c8c 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/terminal_log/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | terminal_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-black_hole/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 c7d6153af7c4b5c3455927b40e1f0d7058f3fc97 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-bomb/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 7cfbf701e399ce6b2347cf1bc7d9fd324196698e 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-bomb/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | timer_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-fs_packet/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 7b5edc93f53a09705bad7b2451fe8bfbed0f264a 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-fs_packet/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | file_system_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-fs_report/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 e3cff88308acd589bf38086da31c055ceb8ce45b 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-immutable_rom/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-init/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 5c34bd3ea35e8fcd989ff2bb6efaef2d737155a6 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-init_loop/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 3e10707de27b0339bf579f877dc5dd170cd17cad 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-init_loop/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | report_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-nic_loopback/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | nic_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-ram_fs_chunk/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | file_system_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-report_rom/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 e3acd9b4afd446c8cc8cb5be8e1ebd8504390f1b 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-resource_request/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | report_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-resource_yield/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | timer_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-sandbox/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 3ad10501025a79d86f9ee3f979a5bd823abb9f93 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-sandbox/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | sandbox 3 | os 4 | timer_session 5 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-signal/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | timer_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-slab/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 a89960bccd1d80a9e3c60799f1557ddc8efbc2a5 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-slab/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | timer_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-terminal_crosslink/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | terminal_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-trace/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 ee8b965ccee564b90864c1d4f402a52193fa0a96 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-trace/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | timer_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-trace_buffer/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-trace_logger/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | timer_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-utf8/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-vfs_capture/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 b346b457a35a8f4eaa5dac436b0dc30eac311e92 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-vfs_stress/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | vfs 4 | timer_session 5 | -------------------------------------------------------------------------------- /repos/os/recipes/src/test-weak_ptr/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | timer_session 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/top/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 9b4b0a908f6bcb7139736d9406b404812d8738a3 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/trace_logger/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 cbbd075ac91a3e11aa04075c0d646dd1dfc638af 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/trace_logger/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | timer_session 4 | trace 5 | -------------------------------------------------------------------------------- /repos/os/recipes/src/trace_policy/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | trace 4 | -------------------------------------------------------------------------------- /repos/os/recipes/src/vfs/api: -------------------------------------------------------------------------------- 1 | vfs 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/vfs/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 8aba6698ed3c7ee216dfe09b514f99e9bdc402d4 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/vfs_block/api: -------------------------------------------------------------------------------- 1 | vfs 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/vfs_block/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 591e7c2fc588c20cb64a8dbdd76beab5f8c2b630 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/vfs_block/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | block_session 4 | so 5 | -------------------------------------------------------------------------------- /repos/os/recipes/src/vfs_tap/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 e4fa0b3ac8c84ed7a56b165e7d15208976d5108d 2 | -------------------------------------------------------------------------------- /repos/os/recipes/src/virtdev_rom/used_apis: -------------------------------------------------------------------------------- 1 | base 2 | os 3 | -------------------------------------------------------------------------------- /repos/os/recipes/src/virtio_fb_drv/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 34ab0bce62cf310845b1ffe0d2be889a61684004 2 | -------------------------------------------------------------------------------- /repos/os/run/bomb.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/bomb.run -------------------------------------------------------------------------------- /repos/os/run/cache.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/cache.run -------------------------------------------------------------------------------- /repos/os/run/demo.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/demo.run -------------------------------------------------------------------------------- /repos/os/run/fb_bench.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/fb_bench.run -------------------------------------------------------------------------------- /repos/os/run/gpio_led.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/gpio_led.run -------------------------------------------------------------------------------- /repos/os/run/init_smp.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/init_smp.run -------------------------------------------------------------------------------- /repos/os/run/input.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/input.run -------------------------------------------------------------------------------- /repos/os/run/loader.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/loader.run -------------------------------------------------------------------------------- /repos/os/run/log_core.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/log_core.run -------------------------------------------------------------------------------- /repos/os/run/mixer.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/mixer.run -------------------------------------------------------------------------------- /repos/os/run/nic_dump.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/nic_dump.run -------------------------------------------------------------------------------- /repos/os/run/nvme.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/nvme.run -------------------------------------------------------------------------------- /repos/os/run/pci.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/pci.run -------------------------------------------------------------------------------- /repos/os/run/ping.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/ping.run -------------------------------------------------------------------------------- /repos/os/run/pointer.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/pointer.run -------------------------------------------------------------------------------- /repos/os/run/rtc.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/rtc.run -------------------------------------------------------------------------------- /repos/os/run/sd_card.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/sd_card.run -------------------------------------------------------------------------------- /repos/os/run/tar_rom.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/tar_rom.run -------------------------------------------------------------------------------- /repos/os/run/test.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/test.run -------------------------------------------------------------------------------- /repos/os/run/timeout.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/timeout.run -------------------------------------------------------------------------------- /repos/os/run/tz_vmm.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/tz_vmm.run -------------------------------------------------------------------------------- /repos/os/run/uart.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/uart.run -------------------------------------------------------------------------------- /repos/os/run/vmm_arm.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/vmm_arm.run -------------------------------------------------------------------------------- /repos/os/run/vmm_x86.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/run/vmm_x86.run -------------------------------------------------------------------------------- /repos/os/src/app/dummy/target.mk: -------------------------------------------------------------------------------- 1 | TARGET = dummy 2 | SRC_CC = main.cc 3 | LIBS += base 4 | -------------------------------------------------------------------------------- /repos/os/src/app/pointer/target.mk: -------------------------------------------------------------------------------- 1 | TARGET = pointer 2 | SRC_CC = main.cc 3 | LIBS += base 4 | -------------------------------------------------------------------------------- /repos/os/src/app/shim/target.mk: -------------------------------------------------------------------------------- 1 | TARGET = shim 2 | SRC_CC = main.cc 3 | LIBS += base 4 | -------------------------------------------------------------------------------- /repos/os/src/app/top/target.mk: -------------------------------------------------------------------------------- 1 | TARGET = top 2 | SRC_CC = main.cc 3 | LIBS += base 4 | -------------------------------------------------------------------------------- /repos/os/src/drivers/platform/policy.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/os/src/init/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/os/src/init/main.cc -------------------------------------------------------------------------------- /repos/os/src/test/init/target.mk: -------------------------------------------------------------------------------- 1 | TARGET = test-init 2 | SRC_CC = main.cc 3 | LIBS += base 4 | -------------------------------------------------------------------------------- /repos/os/src/test/trace/target.mk: -------------------------------------------------------------------------------- 1 | TARGET = test-trace 2 | SRC_CC = main.cc 3 | LIBS += base 4 | -------------------------------------------------------------------------------- /repos/pc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/pc/README -------------------------------------------------------------------------------- /repos/pc/lib/mk/wifi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/pc/lib/mk/wifi.inc -------------------------------------------------------------------------------- /repos/pc/recipes/pkg/wifi/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 45f1a7f6d75e5c9de9953ae07b4d1b4cc2776d52 2 | -------------------------------------------------------------------------------- /repos/pc/recipes/src/pc_intel_fb_drv/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 d64e7f436e14662624e7c176d7fe9c4af882a686 2 | -------------------------------------------------------------------------------- /repos/pc/recipes/src/pc_wifi_drv/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 2a841aabd16216917c5931ce45dcbf99416dc3ff 2 | -------------------------------------------------------------------------------- /repos/pc/run/intel_fb.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/pc/run/intel_fb.run -------------------------------------------------------------------------------- /repos/pc/run/wifi.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/pc/run/wifi.run -------------------------------------------------------------------------------- /repos/pc/src/lib/vfs/wifi/target.mk: -------------------------------------------------------------------------------- 1 | LIBS := vfs_wifi 2 | 3 | BUILD_ARTIFACTS := 4 | -------------------------------------------------------------------------------- /repos/ports/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/ports/README -------------------------------------------------------------------------------- /repos/ports/doc/gdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/ports/doc/gdb.txt -------------------------------------------------------------------------------- /repos/ports/lib/mk/gdbserver_platform.mk: -------------------------------------------------------------------------------- 1 | SHARED_LIB = yes 2 | 3 | CC_CXX_WARN_STRICT = 4 | -------------------------------------------------------------------------------- /repos/ports/mk/noux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/ports/mk/noux.mk -------------------------------------------------------------------------------- /repos/ports/ports/binutils.hash: -------------------------------------------------------------------------------- 1 | 6c84c45b94d27bedf4b79d37f4703594e74458eb 2 | -------------------------------------------------------------------------------- /repos/ports/ports/coreutils.hash: -------------------------------------------------------------------------------- 1 | 22cd3f93c947424aa8d647b91cbeda896bff4f9c 2 | -------------------------------------------------------------------------------- /repos/ports/ports/diffutils.hash: -------------------------------------------------------------------------------- 1 | ee502a1a486f45d0915518169b7b21ba043f513d 2 | -------------------------------------------------------------------------------- /repos/ports/ports/e2fsprogs.hash: -------------------------------------------------------------------------------- 1 | 1de5bac5c7b3001c77db5833452395e0d349eec9 2 | -------------------------------------------------------------------------------- /repos/ports/ports/findutils.hash: -------------------------------------------------------------------------------- 1 | 6707e893464244e8c1830e1ef7bfb339b446a551 2 | -------------------------------------------------------------------------------- /repos/ports/ports/gcc.hash: -------------------------------------------------------------------------------- 1 | bc8a730adbf377de2c449d222a0df0ba7096a4b8 2 | -------------------------------------------------------------------------------- /repos/ports/ports/gdb.hash: -------------------------------------------------------------------------------- 1 | 601cdd5711839f85cd2d151f51d989b678a02efc 2 | -------------------------------------------------------------------------------- /repos/ports/ports/gnupg.hash: -------------------------------------------------------------------------------- 1 | c784d4658f87704035f17c0e182aa0e9de931acf 2 | -------------------------------------------------------------------------------- /repos/ports/ports/grep.hash: -------------------------------------------------------------------------------- 1 | b96a88c916f9857523d285cfce0ad629687ed948 2 | -------------------------------------------------------------------------------- /repos/ports/ports/less.hash: -------------------------------------------------------------------------------- 1 | e7a42c13c8252aba5dc948d6624471d4fd197671 2 | -------------------------------------------------------------------------------- /repos/ports/ports/lighttpd.hash: -------------------------------------------------------------------------------- 1 | 0665eee22a27970bb977c93abdea7e89d3011a1d 2 | -------------------------------------------------------------------------------- /repos/ports/ports/make.hash: -------------------------------------------------------------------------------- 1 | c8beffda9c98bfb34b038a55aadd83af8824bc8d 2 | -------------------------------------------------------------------------------- /repos/ports/ports/microcode_intel.hash: -------------------------------------------------------------------------------- 1 | cac424dd9e47b73dd955377e08dbf632a0a70ca5 2 | -------------------------------------------------------------------------------- /repos/ports/ports/netperf.hash: -------------------------------------------------------------------------------- 1 | 6db34a7949b8942c256b881977e91fbf53638dd6 2 | -------------------------------------------------------------------------------- /repos/ports/ports/tar.hash: -------------------------------------------------------------------------------- 1 | 19aea4d7e95b06609e10b7472a42726d5e5b2d6b 2 | -------------------------------------------------------------------------------- /repos/ports/ports/tcl.hash: -------------------------------------------------------------------------------- 1 | 842b1a2c30a4e4117a17fd78c73049a902321c90 2 | -------------------------------------------------------------------------------- /repos/ports/ports/vim.hash: -------------------------------------------------------------------------------- 1 | 53caaaa7542e262f983eda2d44a0b4d4a7b3243d 2 | -------------------------------------------------------------------------------- /repos/ports/ports/virtualbox5.hash: -------------------------------------------------------------------------------- 1 | a4d2f03ac0c0d8f7d7c3a4c3b284a68fb259cbc8 2 | -------------------------------------------------------------------------------- /repos/ports/ports/virtualbox6.hash: -------------------------------------------------------------------------------- 1 | db7d6d9b9ab32c34fcfb371dfc9e100b208ee982 2 | -------------------------------------------------------------------------------- /repos/ports/ports/which.hash: -------------------------------------------------------------------------------- 1 | 91c95369824bcad520c2319bc17c584cd54c9e42 2 | -------------------------------------------------------------------------------- /repos/ports/recipes/pkg/vbox5/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 69b7ff98e1b485e62bd92c713cca31c1f3812b2e 2 | -------------------------------------------------------------------------------- /repos/ports/recipes/raw/vbox6/hash: -------------------------------------------------------------------------------- 1 | 2022-04-27 e31ad0593335a4b555d5bff7fed9d6501a939804 2 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/bash-minimal/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | noux 3 | posix 4 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/bash/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | noux 3 | posix 4 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/binutils_x86/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | noux 3 | posix 4 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/coreutils-minimal/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | noux 3 | posix 4 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/coreutils/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | noux 3 | posix 4 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/diffutils/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | noux 3 | posix 4 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/e2fsprogs-minimal/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | noux 3 | posix 4 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/e2fsprogs/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | noux 3 | posix 4 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/findutils/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 e073e070381e4ab140d28840ccb8f3df63ec9988 2 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/findutils/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | noux 3 | posix 4 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/gcc_x86/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | noux 3 | posix 4 | stdcxx 5 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/gnumake/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 6a503d5b6e3f8f67838fb940c9d1f8acf70544dd 2 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/gnumake/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | noux 3 | posix 4 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/grep/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 91d0df4c916462460e75016b2e7a879f55ecd798 2 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/grep/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | noux 3 | posix 4 | pcre 5 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/less/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | noux 3 | posix 4 | ncurses 5 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/lighttpd/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 712c3df1e840d4daf957ff8421672ea8a9fb8541 2 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/lighttpd/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | posix 3 | openssl 4 | zlib 5 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/sed/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | noux 3 | posix 4 | pcre 5 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/tar/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | noux 3 | posix 4 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/tclsh/hash: -------------------------------------------------------------------------------- 1 | 2022-02-27 51b1a519dc0fb7e4574cdf3489a7af63f5a72ee0 2 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/tclsh/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | noux 3 | posix 4 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/vbox5/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 55c2594e7a2ebb80fdbf5f7c9faa5d23bb022ed3 2 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/vbox6/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 fc407384ceb313b03b5f02af0753b82afa0922d0 2 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/vim-minimal/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | noux 3 | posix 4 | ncurses 5 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/vim/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | noux 3 | posix 4 | ncurses 5 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/which/hash: -------------------------------------------------------------------------------- 1 | 2022-05-24 3a608208a4eb46947fa2086f99dc8b4fe8c81380 2 | -------------------------------------------------------------------------------- /repos/ports/recipes/src/which/used_apis: -------------------------------------------------------------------------------- 1 | libc 2 | noux 3 | posix 4 | -------------------------------------------------------------------------------- /repos/ports/run/bash.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/ports/run/bash.run -------------------------------------------------------------------------------- /repos/ports/run/test.vbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/ports/run/test.vbox -------------------------------------------------------------------------------- /repos/ports/run/vim.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/repos/ports/run/vim.run -------------------------------------------------------------------------------- /repos/ports/src/app/verify/assuan.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/ports/src/app/verify/config.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/ports/src/app/verify/test/expect_invalid.txt: -------------------------------------------------------------------------------- 1 | Streifenhoernchen sind lecker 2 | -------------------------------------------------------------------------------- /repos/ports/src/app/verify/test/expect_valid.txt: -------------------------------------------------------------------------------- 1 | Kinder moegen Suessigkeiten 2 | -------------------------------------------------------------------------------- /repos/ports/src/noux-pkg/bash/target.mk: -------------------------------------------------------------------------------- 1 | include $(PRG_DIR)/target.inc 2 | -------------------------------------------------------------------------------- /repos/ports/src/noux-pkg/coreutils/target.mk: -------------------------------------------------------------------------------- 1 | include $(PRG_DIR)/target.inc 2 | -------------------------------------------------------------------------------- /repos/ports/src/noux-pkg/e2fsprogs/target.mk: -------------------------------------------------------------------------------- 1 | include $(PRG_DIR)/target.inc 2 | -------------------------------------------------------------------------------- /repos/ports/src/noux-pkg/tar/target.mk: -------------------------------------------------------------------------------- 1 | include $(call select_from_repositories,mk/noux.mk) 2 | -------------------------------------------------------------------------------- /repos/ports/src/noux-pkg/vim/target.mk: -------------------------------------------------------------------------------- 1 | include $(REP_DIR)/src/noux-pkg/vim/target.inc 2 | -------------------------------------------------------------------------------- /repos/ports/src/noux-pkg/which/target.mk: -------------------------------------------------------------------------------- 1 | include $(call select_from_repositories,mk/noux.mk) 2 | -------------------------------------------------------------------------------- /repos/ports/src/virtualbox6/include/rpc/types.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tool/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/README -------------------------------------------------------------------------------- /tool/abi_symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/abi_symbols -------------------------------------------------------------------------------- /tool/autopilot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/autopilot -------------------------------------------------------------------------------- /tool/autopilot.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/autopilot.list -------------------------------------------------------------------------------- /tool/beautify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/beautify -------------------------------------------------------------------------------- /tool/boot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/boot/README -------------------------------------------------------------------------------- /tool/boot/bender: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/boot/bender -------------------------------------------------------------------------------- /tool/boot/boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/boot/boot.png -------------------------------------------------------------------------------- /tool/boot/pulsar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/boot/pulsar -------------------------------------------------------------------------------- /tool/boot/unzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/boot/unzip -------------------------------------------------------------------------------- /tool/builddir/build.conf/ccache: -------------------------------------------------------------------------------- 1 | # enable use of compiler cache 2 | #CCACHE := yes 3 | 4 | -------------------------------------------------------------------------------- /tool/builddir/build.conf/make_j: -------------------------------------------------------------------------------- 1 | # enable parallel build 2 | #MAKE += -j4 3 | 4 | -------------------------------------------------------------------------------- /tool/builddir/build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/builddir/build.mk -------------------------------------------------------------------------------- /tool/cbe_autopilot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/cbe_autopilot -------------------------------------------------------------------------------- /tool/check_abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/check_abi -------------------------------------------------------------------------------- /tool/create_builddir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/create_builddir -------------------------------------------------------------------------------- /tool/create_iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/create_iso -------------------------------------------------------------------------------- /tool/create_uboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/create_uboot -------------------------------------------------------------------------------- /tool/cxx_to_html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/cxx_to_html -------------------------------------------------------------------------------- /tool/depot/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/depot/build -------------------------------------------------------------------------------- /tool/depot/create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/depot/create -------------------------------------------------------------------------------- /tool/depot/dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/depot/dependencies -------------------------------------------------------------------------------- /tool/depot/download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/depot/download -------------------------------------------------------------------------------- /tool/depot/extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/depot/extract -------------------------------------------------------------------------------- /tool/depot/missing_ports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/depot/missing_ports -------------------------------------------------------------------------------- /tool/depot/mk/common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/depot/mk/common.inc -------------------------------------------------------------------------------- /tool/depot/mk/downloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/depot/mk/downloader -------------------------------------------------------------------------------- /tool/depot/mk/extract.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/depot/mk/extract.inc -------------------------------------------------------------------------------- /tool/depot/mk/gpg.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/depot/mk/gpg.inc -------------------------------------------------------------------------------- /tool/depot/publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/depot/publish -------------------------------------------------------------------------------- /tool/depot/static_analyze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/depot/static_analyze -------------------------------------------------------------------------------- /tool/dts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/dts/README -------------------------------------------------------------------------------- /tool/dts/extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/dts/extract -------------------------------------------------------------------------------- /tool/dts/parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/dts/parse -------------------------------------------------------------------------------- /tool/fix_include_ifndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/fix_include_ifndef -------------------------------------------------------------------------------- /tool/internal_abi.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/internal_abi.list -------------------------------------------------------------------------------- /tool/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/link.h -------------------------------------------------------------------------------- /tool/parse_cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/parse_cxx -------------------------------------------------------------------------------- /tool/ports/check_hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/ports/check_hash -------------------------------------------------------------------------------- /tool/ports/current: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/ports/current -------------------------------------------------------------------------------- /tool/ports/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/ports/list -------------------------------------------------------------------------------- /tool/ports/mk/check.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/ports/mk/check.mk -------------------------------------------------------------------------------- /tool/ports/mk/common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/ports/mk/common.inc -------------------------------------------------------------------------------- /tool/ports/mk/hash.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/ports/mk/hash.inc -------------------------------------------------------------------------------- /tool/ports/mk/install.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/ports/mk/install.mk -------------------------------------------------------------------------------- /tool/ports/prepare_port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/ports/prepare_port -------------------------------------------------------------------------------- /tool/ports/shortcut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/ports/shortcut -------------------------------------------------------------------------------- /tool/ports/update_hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/ports/update_hash -------------------------------------------------------------------------------- /tool/rump_cgdconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/rump_cgdconf -------------------------------------------------------------------------------- /tool/run/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/README -------------------------------------------------------------------------------- /tool/run/amt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/amt.inc -------------------------------------------------------------------------------- /tool/run/boot_dir/fiasco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/boot_dir/fiasco -------------------------------------------------------------------------------- /tool/run/boot_dir/foc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/boot_dir/foc -------------------------------------------------------------------------------- /tool/run/boot_dir/hw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/boot_dir/hw -------------------------------------------------------------------------------- /tool/run/boot_dir/linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/boot_dir/linux -------------------------------------------------------------------------------- /tool/run/boot_dir/nova: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/boot_dir/nova -------------------------------------------------------------------------------- /tool/run/boot_dir/okl4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/boot_dir/okl4 -------------------------------------------------------------------------------- /tool/run/boot_dir/sel4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/boot_dir/sel4 -------------------------------------------------------------------------------- /tool/run/depot.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/depot.inc -------------------------------------------------------------------------------- /tool/run/grub2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/grub2.inc -------------------------------------------------------------------------------- /tool/run/image/disk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/image/disk -------------------------------------------------------------------------------- /tool/run/image/iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/image/iso -------------------------------------------------------------------------------- /tool/run/image/uboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/image/uboot -------------------------------------------------------------------------------- /tool/run/image/uboot_fit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/image/uboot_fit -------------------------------------------------------------------------------- /tool/run/image/uefi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/image/uefi -------------------------------------------------------------------------------- /tool/run/iso.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/iso.inc -------------------------------------------------------------------------------- /tool/run/load.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/load.inc -------------------------------------------------------------------------------- /tool/run/load/fastboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/load/fastboot -------------------------------------------------------------------------------- /tool/run/load/ipxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/load/ipxe -------------------------------------------------------------------------------- /tool/run/load/jtag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/load/jtag -------------------------------------------------------------------------------- /tool/run/load/pxe.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/load/pxe.inc -------------------------------------------------------------------------------- /tool/run/load/tftp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/load/tftp -------------------------------------------------------------------------------- /tool/run/log.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/log.inc -------------------------------------------------------------------------------- /tool/run/log/amt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/log/amt -------------------------------------------------------------------------------- /tool/run/log/linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/log/linux -------------------------------------------------------------------------------- /tool/run/log/qemu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/log/qemu -------------------------------------------------------------------------------- /tool/run/log/serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/log/serial -------------------------------------------------------------------------------- /tool/run/log/xen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/log/xen -------------------------------------------------------------------------------- /tool/run/power_netio.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/power_netio.inc -------------------------------------------------------------------------------- /tool/run/power_off/allnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/power_off/allnet -------------------------------------------------------------------------------- /tool/run/power_off/netio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/power_off/netio -------------------------------------------------------------------------------- /tool/run/power_off/xen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/power_off/xen -------------------------------------------------------------------------------- /tool/run/power_on/allnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/power_on/allnet -------------------------------------------------------------------------------- /tool/run/power_on/amt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/power_on/amt -------------------------------------------------------------------------------- /tool/run/power_on/command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/power_on/command -------------------------------------------------------------------------------- /tool/run/power_on/linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/power_on/linux -------------------------------------------------------------------------------- /tool/run/power_on/netio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/power_on/netio -------------------------------------------------------------------------------- /tool/run/power_on/qemu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/power_on/qemu -------------------------------------------------------------------------------- /tool/run/power_on/wol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/power_on/wol -------------------------------------------------------------------------------- /tool/run/power_on/xen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/power_on/xen -------------------------------------------------------------------------------- /tool/run/qemu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/qemu.inc -------------------------------------------------------------------------------- /tool/run/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/run -------------------------------------------------------------------------------- /tool/run/xen.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/run/xen.inc -------------------------------------------------------------------------------- /tool/sdk/genode-lib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/sdk/genode-lib.pc.in -------------------------------------------------------------------------------- /tool/sdk/genode-prg.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/sdk/genode-prg.pc -------------------------------------------------------------------------------- /tool/sdk/genode-prg.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/sdk/genode-prg.pc.in -------------------------------------------------------------------------------- /tool/sdk/genode-vfs.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/sdk/genode-vfs.pc.in -------------------------------------------------------------------------------- /tool/seccomp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/seccomp/.gitignore -------------------------------------------------------------------------------- /tool/seccomp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/seccomp/Makefile -------------------------------------------------------------------------------- /tool/tool_chain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/tool_chain -------------------------------------------------------------------------------- /tool/tool_chain_qt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/tool_chain_qt5 -------------------------------------------------------------------------------- /tool/xkb2ifcfg/.gitignore: -------------------------------------------------------------------------------- 1 | /xkb2ifcfg 2 | -------------------------------------------------------------------------------- /tool/xkb2ifcfg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/xkb2ifcfg/Makefile -------------------------------------------------------------------------------- /tool/xkb2ifcfg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/xkb2ifcfg/README -------------------------------------------------------------------------------- /tool/xkb2ifcfg/genode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/xkb2ifcfg/genode.cc -------------------------------------------------------------------------------- /tool/xkb2ifcfg/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/xkb2ifcfg/main.cc -------------------------------------------------------------------------------- /tool/xkb2ifcfg/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skalk/genode/HEAD/tool/xkb2ifcfg/util.h --------------------------------------------------------------------------------