├── .gitignore ├── .gitmodules ├── .travis.yml ├── AUTHORS ├── LICENSE ├── README.md ├── app-tools ├── Makefile ├── cc.in ├── cookfs.in ├── recipe.s.in ├── rumprun ├── rumprun-bake.conf ├── rumprun-bake.in ├── rumpstop ├── specs-bake.in ├── specs-compile_or_ferment.in ├── specs-stub.in └── toolchain.cmake.in ├── doc └── config.md ├── gdbscripts ├── bmk_dmesg └── bmk_thr.subr ├── global.mk ├── include ├── bmk-core │ ├── amd64 │ │ └── asm.h │ ├── arm │ │ └── asm.h │ ├── core.h │ ├── errno.h │ ├── i386 │ │ └── asm.h │ ├── jsmn.h │ ├── mainthread.h │ ├── memalloc.h │ ├── null.h │ ├── pgalloc.h │ ├── platform.h │ ├── printf.h │ ├── queue.h │ ├── sched.h │ ├── string.h │ └── types.h ├── bmk-rumpuser │ ├── core_types.h │ └── rumpuser.h └── rumprun-base │ ├── config.h │ ├── makelwp.h │ ├── parseargs.h │ └── rumprun.h ├── lib ├── Makefile.inc ├── README.txt ├── libbmk_core │ ├── Makefile │ ├── arch │ │ ├── earm │ │ │ ├── Makefile.inc │ │ │ ├── __aeabi_read_tp.S │ │ │ ├── cpu_sched.c │ │ │ └── cpu_sched_switch.S │ │ ├── i386 │ │ │ ├── Makefile.inc │ │ │ └── cpu_sched_switch.S │ │ ├── x86 │ │ │ ├── Makefile.inc │ │ │ └── cpu_sched.c │ │ └── x86_64 │ │ │ ├── Makefile.inc │ │ │ └── cpu_sched_switch.S │ ├── bmk_string.c │ ├── init.c │ ├── jsmn.c │ ├── memalloc.c │ ├── pgalloc.c │ ├── sched.c │ ├── strtoul.c │ └── subr_prf.c ├── libbmk_rumpuser │ ├── Makefile │ ├── rumpuser_base.c │ ├── rumpuser_clock.c │ ├── rumpuser_cons.c │ ├── rumpuser_mem.c │ ├── rumpuser_stubs.c │ └── rumpuser_synch.c ├── libcompiler_rt │ └── Makefile ├── librumpkern_bmktc │ ├── Makefile │ ├── bmktc_user.c │ ├── bmktc_user.h │ └── rump_bmktc.c ├── librumpkern_mman │ ├── Makefile │ ├── mman_component.c │ └── sys_mman.c ├── librumprun_base │ ├── Makefile │ ├── __errno.c │ ├── _lwp.c │ ├── config.c │ ├── daemon.c │ ├── libc_stubs.c │ ├── main.c │ ├── malloc.c │ ├── netbsd_initfini.c │ ├── parseargs.c │ ├── platefs.c │ ├── platefs.h │ ├── pthread │ │ └── pthread_makelwp_rumprun.c │ ├── rumprun-private.h │ ├── rumprun.c │ ├── signals.c │ ├── syscall_misc.c │ ├── syscall_mman.c │ └── sysproxy.c ├── librumprun_tester │ ├── Makefile │ ├── rumprun_tester.c │ └── tester.h ├── librumprunfs_base │ ├── Makefile │ └── rootfs │ │ └── etc │ │ ├── group │ │ ├── hosts │ │ ├── master.passwd │ │ ├── nsswitch.conf │ │ ├── protocols │ │ ├── pwd.db │ │ ├── resolv.conf │ │ ├── services │ │ └── spwd.db └── libunwind │ └── Makefile ├── platform ├── Makefile.inc ├── hw │ ├── Makefile │ ├── arch │ │ ├── amd64 │ │ │ ├── Makefile.inc │ │ │ ├── intr.S │ │ │ ├── kern.ldscript │ │ │ ├── locore.S │ │ │ ├── machdep.c │ │ │ ├── makepagetable.awk │ │ │ └── pagetable.S │ │ ├── arm │ │ │ └── integrator │ │ │ │ ├── Makefile.inc │ │ │ │ ├── boardreg.h │ │ │ │ ├── kern.ldscript │ │ │ │ ├── locore.S │ │ │ │ ├── machdep.c │ │ │ │ └── serialcons.c │ │ ├── i386 │ │ │ ├── Makefile.inc │ │ │ ├── kern.ldscript │ │ │ ├── locore.S │ │ │ └── machdep.c │ │ └── x86 │ │ │ ├── boot.c │ │ │ ├── clock.c │ │ │ ├── cons.c │ │ │ ├── cpu_subr.c │ │ │ ├── hypervisor.c │ │ │ ├── serialcons.c │ │ │ ├── vgacons.c │ │ │ └── x86_subr.c │ ├── clock_subr.c │ ├── include │ │ ├── arch │ │ │ ├── earm │ │ │ │ ├── inline.h │ │ │ │ ├── md.h │ │ │ │ └── pcpu.h │ │ │ ├── i386 │ │ │ │ ├── md.h │ │ │ │ └── pcpu.h │ │ │ ├── x86 │ │ │ │ ├── cons.h │ │ │ │ ├── hypervisor.h │ │ │ │ ├── inline.h │ │ │ │ ├── reg.h │ │ │ │ └── var.h │ │ │ └── x86_64 │ │ │ │ ├── md.h │ │ │ │ └── pcpu.h │ │ └── hw │ │ │ ├── clock_subr.h │ │ │ ├── kernel.h │ │ │ ├── multiboot.h │ │ │ └── types.h │ ├── intr.c │ ├── kernel.c │ ├── multiboot.c │ ├── pci │ │ ├── Makefile │ │ ├── Makefile.pcihyperdefs │ │ ├── rumpcomp_userfeatures_pci.h │ │ ├── rumpdma.c │ │ └── rumppci.c │ ├── platform.conf │ ├── tests │ │ └── checksum │ │ │ └── test.sh │ └── undefs.c ├── makepseudolinkstubs.sh └── xen │ ├── Makefile │ ├── init.c │ ├── librumpnet_xenif │ ├── Makefile │ ├── if_virt.c │ ├── if_virt.h │ ├── if_virt_user.h │ ├── xenif_component.c │ └── xenif_user.c │ ├── librumpxen_xendev │ ├── Makefile │ ├── busdev.c │ ├── busdev_user.c │ ├── busdev_user.h │ ├── evtdev.c │ ├── privcmd.c │ ├── rumpxen_xendev.h │ ├── xendev_component.c │ ├── xenio.h │ └── xenio3.h │ ├── pci │ ├── Makefile │ ├── Makefile.pcihyperdefs │ ├── rumpcomp_userfeatures_pci.h │ ├── rumphyper_dma.c │ └── rumphyper_pci.c │ ├── platform.conf │ ├── rumphyper_bio.c │ └── xen │ ├── Config.mk │ ├── Makefile │ ├── arch │ └── x86 │ │ ├── Makefile │ │ ├── arch.mk │ │ ├── gdt_32.c │ │ ├── ioremap.c │ │ ├── minios-x86_32.lds │ │ ├── minios-x86_64.lds │ │ ├── mm.c │ │ ├── sched.c │ │ ├── setup.c │ │ ├── time.c │ │ ├── traps.c │ │ ├── x86_32.S │ │ └── x86_64.S │ ├── blkfront.c │ ├── console │ ├── console.c │ ├── console.h │ ├── xenbus.c │ └── xencons_ring.c │ ├── events.c │ ├── gntmap.c │ ├── gnttab.c │ ├── hypervisor.c │ ├── include │ └── mini-os │ │ ├── blkfront.h │ │ ├── console.h │ │ ├── events.h │ │ ├── fbfront.h │ │ ├── gntmap.h │ │ ├── gnttab.h │ │ ├── hypervisor.h │ │ ├── ioremap.h │ │ ├── kernel.h │ │ ├── lib.h │ │ ├── mm.h │ │ ├── netfront.h │ │ ├── os.h │ │ ├── pcifront.h │ │ ├── queue.h │ │ ├── semaphore.h │ │ ├── spinlock.h │ │ ├── time.h │ │ ├── types.h │ │ ├── wait.h │ │ ├── waittypes.h │ │ ├── x86 │ │ ├── limits.h │ │ ├── mm.h │ │ ├── os.h │ │ ├── pcpu.h │ │ ├── spinlock.h │ │ ├── traps.h │ │ ├── x86_32 │ │ │ └── hypercall-x86_32.h │ │ └── x86_64 │ │ │ └── hypercall-x86_64.h │ │ └── xenbus.h │ ├── kernel.c │ ├── minios.mk │ ├── mm.c │ ├── netfront.c │ ├── pcifront.c │ └── xenbus │ └── xenbus.c └── tests ├── Makefile ├── Makefile.inc ├── basic ├── Makefile ├── ctor_test.c ├── misc_test.c ├── pthread_test.c └── tls_test.c ├── buildtests.sh ├── cmake ├── CMakeLists.txt ├── config.h.in └── test.c ├── configure ├── .gitignore ├── Makefile.am ├── Makefile.in ├── aclocal.m4 ├── build-aux │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── depcomp │ ├── install-sh │ ├── ltmain.sh │ └── missing ├── config.h.in ├── configure ├── configure.ac ├── m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ └── lt~obsolete.m4 └── test.c ├── crypto ├── Makefile ├── README └── md5.c ├── hello ├── Makefile ├── hello.c └── hellopp.cc ├── nolibc ├── Makefile ├── main.c └── nolibc.h └── runtests.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.o 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/README.md -------------------------------------------------------------------------------- /app-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/app-tools/Makefile -------------------------------------------------------------------------------- /app-tools/cc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/app-tools/cc.in -------------------------------------------------------------------------------- /app-tools/cookfs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/app-tools/cookfs.in -------------------------------------------------------------------------------- /app-tools/recipe.s.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/app-tools/recipe.s.in -------------------------------------------------------------------------------- /app-tools/rumprun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/app-tools/rumprun -------------------------------------------------------------------------------- /app-tools/rumprun-bake.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/app-tools/rumprun-bake.conf -------------------------------------------------------------------------------- /app-tools/rumprun-bake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/app-tools/rumprun-bake.in -------------------------------------------------------------------------------- /app-tools/rumpstop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/app-tools/rumpstop -------------------------------------------------------------------------------- /app-tools/specs-bake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/app-tools/specs-bake.in -------------------------------------------------------------------------------- /app-tools/specs-compile_or_ferment.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/app-tools/specs-compile_or_ferment.in -------------------------------------------------------------------------------- /app-tools/specs-stub.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/app-tools/specs-stub.in -------------------------------------------------------------------------------- /app-tools/toolchain.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/app-tools/toolchain.cmake.in -------------------------------------------------------------------------------- /doc/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/doc/config.md -------------------------------------------------------------------------------- /gdbscripts/bmk_dmesg: -------------------------------------------------------------------------------- 1 | set pagination off 2 | target remote:1234 3 | printf "%s", bmk_dmesg 4 | detach 5 | quit 6 | -------------------------------------------------------------------------------- /gdbscripts/bmk_thr.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/gdbscripts/bmk_thr.subr -------------------------------------------------------------------------------- /global.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/global.mk -------------------------------------------------------------------------------- /include/bmk-core/amd64/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/include/bmk-core/amd64/asm.h -------------------------------------------------------------------------------- /include/bmk-core/arm/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/include/bmk-core/arm/asm.h -------------------------------------------------------------------------------- /include/bmk-core/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/include/bmk-core/core.h -------------------------------------------------------------------------------- /include/bmk-core/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/include/bmk-core/errno.h -------------------------------------------------------------------------------- /include/bmk-core/i386/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/include/bmk-core/i386/asm.h -------------------------------------------------------------------------------- /include/bmk-core/jsmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/include/bmk-core/jsmn.h -------------------------------------------------------------------------------- /include/bmk-core/mainthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/include/bmk-core/mainthread.h -------------------------------------------------------------------------------- /include/bmk-core/memalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/include/bmk-core/memalloc.h -------------------------------------------------------------------------------- /include/bmk-core/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/include/bmk-core/null.h -------------------------------------------------------------------------------- /include/bmk-core/pgalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/include/bmk-core/pgalloc.h -------------------------------------------------------------------------------- /include/bmk-core/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/include/bmk-core/platform.h -------------------------------------------------------------------------------- /include/bmk-core/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/include/bmk-core/printf.h -------------------------------------------------------------------------------- /include/bmk-core/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/include/bmk-core/queue.h -------------------------------------------------------------------------------- /include/bmk-core/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/include/bmk-core/sched.h -------------------------------------------------------------------------------- /include/bmk-core/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/include/bmk-core/string.h -------------------------------------------------------------------------------- /include/bmk-core/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/include/bmk-core/types.h -------------------------------------------------------------------------------- /include/bmk-rumpuser/core_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/include/bmk-rumpuser/core_types.h -------------------------------------------------------------------------------- /include/bmk-rumpuser/rumpuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/include/bmk-rumpuser/rumpuser.h -------------------------------------------------------------------------------- /include/rumprun-base/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/include/rumprun-base/config.h -------------------------------------------------------------------------------- /include/rumprun-base/makelwp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/include/rumprun-base/makelwp.h -------------------------------------------------------------------------------- /include/rumprun-base/parseargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/include/rumprun-base/parseargs.h -------------------------------------------------------------------------------- /include/rumprun-base/rumprun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/include/rumprun-base/rumprun.h -------------------------------------------------------------------------------- /lib/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/Makefile.inc -------------------------------------------------------------------------------- /lib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/README.txt -------------------------------------------------------------------------------- /lib/libbmk_core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_core/Makefile -------------------------------------------------------------------------------- /lib/libbmk_core/arch/earm/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_core/arch/earm/Makefile.inc -------------------------------------------------------------------------------- /lib/libbmk_core/arch/earm/__aeabi_read_tp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_core/arch/earm/__aeabi_read_tp.S -------------------------------------------------------------------------------- /lib/libbmk_core/arch/earm/cpu_sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_core/arch/earm/cpu_sched.c -------------------------------------------------------------------------------- /lib/libbmk_core/arch/earm/cpu_sched_switch.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_core/arch/earm/cpu_sched_switch.S -------------------------------------------------------------------------------- /lib/libbmk_core/arch/i386/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_core/arch/i386/Makefile.inc -------------------------------------------------------------------------------- /lib/libbmk_core/arch/i386/cpu_sched_switch.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_core/arch/i386/cpu_sched_switch.S -------------------------------------------------------------------------------- /lib/libbmk_core/arch/x86/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_core/arch/x86/Makefile.inc -------------------------------------------------------------------------------- /lib/libbmk_core/arch/x86/cpu_sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_core/arch/x86/cpu_sched.c -------------------------------------------------------------------------------- /lib/libbmk_core/arch/x86_64/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_core/arch/x86_64/Makefile.inc -------------------------------------------------------------------------------- /lib/libbmk_core/arch/x86_64/cpu_sched_switch.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_core/arch/x86_64/cpu_sched_switch.S -------------------------------------------------------------------------------- /lib/libbmk_core/bmk_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_core/bmk_string.c -------------------------------------------------------------------------------- /lib/libbmk_core/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_core/init.c -------------------------------------------------------------------------------- /lib/libbmk_core/jsmn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_core/jsmn.c -------------------------------------------------------------------------------- /lib/libbmk_core/memalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_core/memalloc.c -------------------------------------------------------------------------------- /lib/libbmk_core/pgalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_core/pgalloc.c -------------------------------------------------------------------------------- /lib/libbmk_core/sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_core/sched.c -------------------------------------------------------------------------------- /lib/libbmk_core/strtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_core/strtoul.c -------------------------------------------------------------------------------- /lib/libbmk_core/subr_prf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_core/subr_prf.c -------------------------------------------------------------------------------- /lib/libbmk_rumpuser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_rumpuser/Makefile -------------------------------------------------------------------------------- /lib/libbmk_rumpuser/rumpuser_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_rumpuser/rumpuser_base.c -------------------------------------------------------------------------------- /lib/libbmk_rumpuser/rumpuser_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_rumpuser/rumpuser_clock.c -------------------------------------------------------------------------------- /lib/libbmk_rumpuser/rumpuser_cons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_rumpuser/rumpuser_cons.c -------------------------------------------------------------------------------- /lib/libbmk_rumpuser/rumpuser_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_rumpuser/rumpuser_mem.c -------------------------------------------------------------------------------- /lib/libbmk_rumpuser/rumpuser_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_rumpuser/rumpuser_stubs.c -------------------------------------------------------------------------------- /lib/libbmk_rumpuser/rumpuser_synch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libbmk_rumpuser/rumpuser_synch.c -------------------------------------------------------------------------------- /lib/libcompiler_rt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libcompiler_rt/Makefile -------------------------------------------------------------------------------- /lib/librumpkern_bmktc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumpkern_bmktc/Makefile -------------------------------------------------------------------------------- /lib/librumpkern_bmktc/bmktc_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumpkern_bmktc/bmktc_user.c -------------------------------------------------------------------------------- /lib/librumpkern_bmktc/bmktc_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumpkern_bmktc/bmktc_user.h -------------------------------------------------------------------------------- /lib/librumpkern_bmktc/rump_bmktc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumpkern_bmktc/rump_bmktc.c -------------------------------------------------------------------------------- /lib/librumpkern_mman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumpkern_mman/Makefile -------------------------------------------------------------------------------- /lib/librumpkern_mman/mman_component.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumpkern_mman/mman_component.c -------------------------------------------------------------------------------- /lib/librumpkern_mman/sys_mman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumpkern_mman/sys_mman.c -------------------------------------------------------------------------------- /lib/librumprun_base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprun_base/Makefile -------------------------------------------------------------------------------- /lib/librumprun_base/__errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprun_base/__errno.c -------------------------------------------------------------------------------- /lib/librumprun_base/_lwp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprun_base/_lwp.c -------------------------------------------------------------------------------- /lib/librumprun_base/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprun_base/config.c -------------------------------------------------------------------------------- /lib/librumprun_base/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprun_base/daemon.c -------------------------------------------------------------------------------- /lib/librumprun_base/libc_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprun_base/libc_stubs.c -------------------------------------------------------------------------------- /lib/librumprun_base/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprun_base/main.c -------------------------------------------------------------------------------- /lib/librumprun_base/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprun_base/malloc.c -------------------------------------------------------------------------------- /lib/librumprun_base/netbsd_initfini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprun_base/netbsd_initfini.c -------------------------------------------------------------------------------- /lib/librumprun_base/parseargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprun_base/parseargs.c -------------------------------------------------------------------------------- /lib/librumprun_base/platefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprun_base/platefs.c -------------------------------------------------------------------------------- /lib/librumprun_base/platefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprun_base/platefs.h -------------------------------------------------------------------------------- /lib/librumprun_base/pthread/pthread_makelwp_rumprun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprun_base/pthread/pthread_makelwp_rumprun.c -------------------------------------------------------------------------------- /lib/librumprun_base/rumprun-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprun_base/rumprun-private.h -------------------------------------------------------------------------------- /lib/librumprun_base/rumprun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprun_base/rumprun.c -------------------------------------------------------------------------------- /lib/librumprun_base/signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprun_base/signals.c -------------------------------------------------------------------------------- /lib/librumprun_base/syscall_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprun_base/syscall_misc.c -------------------------------------------------------------------------------- /lib/librumprun_base/syscall_mman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprun_base/syscall_mman.c -------------------------------------------------------------------------------- /lib/librumprun_base/sysproxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprun_base/sysproxy.c -------------------------------------------------------------------------------- /lib/librumprun_tester/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprun_tester/Makefile -------------------------------------------------------------------------------- /lib/librumprun_tester/rumprun_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprun_tester/rumprun_tester.c -------------------------------------------------------------------------------- /lib/librumprun_tester/tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprun_tester/tester.h -------------------------------------------------------------------------------- /lib/librumprunfs_base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprunfs_base/Makefile -------------------------------------------------------------------------------- /lib/librumprunfs_base/rootfs/etc/group: -------------------------------------------------------------------------------- 1 | daemon:x:1: 2 | -------------------------------------------------------------------------------- /lib/librumprunfs_base/rootfs/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprunfs_base/rootfs/etc/hosts -------------------------------------------------------------------------------- /lib/librumprunfs_base/rootfs/etc/master.passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprunfs_base/rootfs/etc/master.passwd -------------------------------------------------------------------------------- /lib/librumprunfs_base/rootfs/etc/nsswitch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprunfs_base/rootfs/etc/nsswitch.conf -------------------------------------------------------------------------------- /lib/librumprunfs_base/rootfs/etc/protocols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprunfs_base/rootfs/etc/protocols -------------------------------------------------------------------------------- /lib/librumprunfs_base/rootfs/etc/pwd.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprunfs_base/rootfs/etc/pwd.db -------------------------------------------------------------------------------- /lib/librumprunfs_base/rootfs/etc/resolv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprunfs_base/rootfs/etc/resolv.conf -------------------------------------------------------------------------------- /lib/librumprunfs_base/rootfs/etc/services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprunfs_base/rootfs/etc/services -------------------------------------------------------------------------------- /lib/librumprunfs_base/rootfs/etc/spwd.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/librumprunfs_base/rootfs/etc/spwd.db -------------------------------------------------------------------------------- /lib/libunwind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/lib/libunwind/Makefile -------------------------------------------------------------------------------- /platform/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/Makefile.inc -------------------------------------------------------------------------------- /platform/hw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/Makefile -------------------------------------------------------------------------------- /platform/hw/arch/amd64/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/amd64/Makefile.inc -------------------------------------------------------------------------------- /platform/hw/arch/amd64/intr.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/amd64/intr.S -------------------------------------------------------------------------------- /platform/hw/arch/amd64/kern.ldscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/amd64/kern.ldscript -------------------------------------------------------------------------------- /platform/hw/arch/amd64/locore.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/amd64/locore.S -------------------------------------------------------------------------------- /platform/hw/arch/amd64/machdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/amd64/machdep.c -------------------------------------------------------------------------------- /platform/hw/arch/amd64/makepagetable.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/amd64/makepagetable.awk -------------------------------------------------------------------------------- /platform/hw/arch/amd64/pagetable.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/amd64/pagetable.S -------------------------------------------------------------------------------- /platform/hw/arch/arm/integrator/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/arm/integrator/Makefile.inc -------------------------------------------------------------------------------- /platform/hw/arch/arm/integrator/boardreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/arm/integrator/boardreg.h -------------------------------------------------------------------------------- /platform/hw/arch/arm/integrator/kern.ldscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/arm/integrator/kern.ldscript -------------------------------------------------------------------------------- /platform/hw/arch/arm/integrator/locore.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/arm/integrator/locore.S -------------------------------------------------------------------------------- /platform/hw/arch/arm/integrator/machdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/arm/integrator/machdep.c -------------------------------------------------------------------------------- /platform/hw/arch/arm/integrator/serialcons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/arm/integrator/serialcons.c -------------------------------------------------------------------------------- /platform/hw/arch/i386/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/i386/Makefile.inc -------------------------------------------------------------------------------- /platform/hw/arch/i386/kern.ldscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/i386/kern.ldscript -------------------------------------------------------------------------------- /platform/hw/arch/i386/locore.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/i386/locore.S -------------------------------------------------------------------------------- /platform/hw/arch/i386/machdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/i386/machdep.c -------------------------------------------------------------------------------- /platform/hw/arch/x86/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/x86/boot.c -------------------------------------------------------------------------------- /platform/hw/arch/x86/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/x86/clock.c -------------------------------------------------------------------------------- /platform/hw/arch/x86/cons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/x86/cons.c -------------------------------------------------------------------------------- /platform/hw/arch/x86/cpu_subr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/x86/cpu_subr.c -------------------------------------------------------------------------------- /platform/hw/arch/x86/hypervisor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/x86/hypervisor.c -------------------------------------------------------------------------------- /platform/hw/arch/x86/serialcons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/x86/serialcons.c -------------------------------------------------------------------------------- /platform/hw/arch/x86/vgacons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/x86/vgacons.c -------------------------------------------------------------------------------- /platform/hw/arch/x86/x86_subr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/arch/x86/x86_subr.c -------------------------------------------------------------------------------- /platform/hw/clock_subr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/clock_subr.c -------------------------------------------------------------------------------- /platform/hw/include/arch/earm/inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/include/arch/earm/inline.h -------------------------------------------------------------------------------- /platform/hw/include/arch/earm/md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/include/arch/earm/md.h -------------------------------------------------------------------------------- /platform/hw/include/arch/earm/pcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/include/arch/earm/pcpu.h -------------------------------------------------------------------------------- /platform/hw/include/arch/i386/md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/include/arch/i386/md.h -------------------------------------------------------------------------------- /platform/hw/include/arch/i386/pcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/include/arch/i386/pcpu.h -------------------------------------------------------------------------------- /platform/hw/include/arch/x86/cons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/include/arch/x86/cons.h -------------------------------------------------------------------------------- /platform/hw/include/arch/x86/hypervisor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/include/arch/x86/hypervisor.h -------------------------------------------------------------------------------- /platform/hw/include/arch/x86/inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/include/arch/x86/inline.h -------------------------------------------------------------------------------- /platform/hw/include/arch/x86/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/include/arch/x86/reg.h -------------------------------------------------------------------------------- /platform/hw/include/arch/x86/var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/include/arch/x86/var.h -------------------------------------------------------------------------------- /platform/hw/include/arch/x86_64/md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/include/arch/x86_64/md.h -------------------------------------------------------------------------------- /platform/hw/include/arch/x86_64/pcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/include/arch/x86_64/pcpu.h -------------------------------------------------------------------------------- /platform/hw/include/hw/clock_subr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/include/hw/clock_subr.h -------------------------------------------------------------------------------- /platform/hw/include/hw/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/include/hw/kernel.h -------------------------------------------------------------------------------- /platform/hw/include/hw/multiboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/include/hw/multiboot.h -------------------------------------------------------------------------------- /platform/hw/include/hw/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/include/hw/types.h -------------------------------------------------------------------------------- /platform/hw/intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/intr.c -------------------------------------------------------------------------------- /platform/hw/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/kernel.c -------------------------------------------------------------------------------- /platform/hw/multiboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/multiboot.c -------------------------------------------------------------------------------- /platform/hw/pci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/pci/Makefile -------------------------------------------------------------------------------- /platform/hw/pci/Makefile.pcihyperdefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/pci/Makefile.pcihyperdefs -------------------------------------------------------------------------------- /platform/hw/pci/rumpcomp_userfeatures_pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/pci/rumpcomp_userfeatures_pci.h -------------------------------------------------------------------------------- /platform/hw/pci/rumpdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/pci/rumpdma.c -------------------------------------------------------------------------------- /platform/hw/pci/rumppci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/pci/rumppci.c -------------------------------------------------------------------------------- /platform/hw/platform.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/platform.conf -------------------------------------------------------------------------------- /platform/hw/tests/checksum/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/tests/checksum/test.sh -------------------------------------------------------------------------------- /platform/hw/undefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/hw/undefs.c -------------------------------------------------------------------------------- /platform/makepseudolinkstubs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/makepseudolinkstubs.sh -------------------------------------------------------------------------------- /platform/xen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/Makefile -------------------------------------------------------------------------------- /platform/xen/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/init.c -------------------------------------------------------------------------------- /platform/xen/librumpnet_xenif/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/librumpnet_xenif/Makefile -------------------------------------------------------------------------------- /platform/xen/librumpnet_xenif/if_virt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/librumpnet_xenif/if_virt.c -------------------------------------------------------------------------------- /platform/xen/librumpnet_xenif/if_virt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/librumpnet_xenif/if_virt.h -------------------------------------------------------------------------------- /platform/xen/librumpnet_xenif/if_virt_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/librumpnet_xenif/if_virt_user.h -------------------------------------------------------------------------------- /platform/xen/librumpnet_xenif/xenif_component.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/librumpnet_xenif/xenif_component.c -------------------------------------------------------------------------------- /platform/xen/librumpnet_xenif/xenif_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/librumpnet_xenif/xenif_user.c -------------------------------------------------------------------------------- /platform/xen/librumpxen_xendev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/librumpxen_xendev/Makefile -------------------------------------------------------------------------------- /platform/xen/librumpxen_xendev/busdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/librumpxen_xendev/busdev.c -------------------------------------------------------------------------------- /platform/xen/librumpxen_xendev/busdev_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/librumpxen_xendev/busdev_user.c -------------------------------------------------------------------------------- /platform/xen/librumpxen_xendev/busdev_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/librumpxen_xendev/busdev_user.h -------------------------------------------------------------------------------- /platform/xen/librumpxen_xendev/evtdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/librumpxen_xendev/evtdev.c -------------------------------------------------------------------------------- /platform/xen/librumpxen_xendev/privcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/librumpxen_xendev/privcmd.c -------------------------------------------------------------------------------- /platform/xen/librumpxen_xendev/rumpxen_xendev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/librumpxen_xendev/rumpxen_xendev.h -------------------------------------------------------------------------------- /platform/xen/librumpxen_xendev/xendev_component.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/librumpxen_xendev/xendev_component.c -------------------------------------------------------------------------------- /platform/xen/librumpxen_xendev/xenio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/librumpxen_xendev/xenio.h -------------------------------------------------------------------------------- /platform/xen/librumpxen_xendev/xenio3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/librumpxen_xendev/xenio3.h -------------------------------------------------------------------------------- /platform/xen/pci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/pci/Makefile -------------------------------------------------------------------------------- /platform/xen/pci/Makefile.pcihyperdefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/pci/Makefile.pcihyperdefs -------------------------------------------------------------------------------- /platform/xen/pci/rumpcomp_userfeatures_pci.h: -------------------------------------------------------------------------------- 1 | /* empty */ 2 | -------------------------------------------------------------------------------- /platform/xen/pci/rumphyper_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/pci/rumphyper_dma.c -------------------------------------------------------------------------------- /platform/xen/pci/rumphyper_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/pci/rumphyper_pci.c -------------------------------------------------------------------------------- /platform/xen/platform.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/platform.conf -------------------------------------------------------------------------------- /platform/xen/rumphyper_bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/rumphyper_bio.c -------------------------------------------------------------------------------- /platform/xen/xen/Config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/Config.mk -------------------------------------------------------------------------------- /platform/xen/xen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/Makefile -------------------------------------------------------------------------------- /platform/xen/xen/arch/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/arch/x86/Makefile -------------------------------------------------------------------------------- /platform/xen/xen/arch/x86/arch.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/arch/x86/arch.mk -------------------------------------------------------------------------------- /platform/xen/xen/arch/x86/gdt_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/arch/x86/gdt_32.c -------------------------------------------------------------------------------- /platform/xen/xen/arch/x86/ioremap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/arch/x86/ioremap.c -------------------------------------------------------------------------------- /platform/xen/xen/arch/x86/minios-x86_32.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/arch/x86/minios-x86_32.lds -------------------------------------------------------------------------------- /platform/xen/xen/arch/x86/minios-x86_64.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/arch/x86/minios-x86_64.lds -------------------------------------------------------------------------------- /platform/xen/xen/arch/x86/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/arch/x86/mm.c -------------------------------------------------------------------------------- /platform/xen/xen/arch/x86/sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/arch/x86/sched.c -------------------------------------------------------------------------------- /platform/xen/xen/arch/x86/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/arch/x86/setup.c -------------------------------------------------------------------------------- /platform/xen/xen/arch/x86/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/arch/x86/time.c -------------------------------------------------------------------------------- /platform/xen/xen/arch/x86/traps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/arch/x86/traps.c -------------------------------------------------------------------------------- /platform/xen/xen/arch/x86/x86_32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/arch/x86/x86_32.S -------------------------------------------------------------------------------- /platform/xen/xen/arch/x86/x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/arch/x86/x86_64.S -------------------------------------------------------------------------------- /platform/xen/xen/blkfront.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/blkfront.c -------------------------------------------------------------------------------- /platform/xen/xen/console/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/console/console.c -------------------------------------------------------------------------------- /platform/xen/xen/console/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/console/console.h -------------------------------------------------------------------------------- /platform/xen/xen/console/xenbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/console/xenbus.c -------------------------------------------------------------------------------- /platform/xen/xen/console/xencons_ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/console/xencons_ring.c -------------------------------------------------------------------------------- /platform/xen/xen/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/events.c -------------------------------------------------------------------------------- /platform/xen/xen/gntmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/gntmap.c -------------------------------------------------------------------------------- /platform/xen/xen/gnttab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/gnttab.c -------------------------------------------------------------------------------- /platform/xen/xen/hypervisor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/hypervisor.c -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/blkfront.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/blkfront.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/console.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/events.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/fbfront.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/fbfront.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/gntmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/gntmap.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/gnttab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/gnttab.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/hypervisor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/hypervisor.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/ioremap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/ioremap.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/kernel.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/lib.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/mm.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/netfront.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/netfront.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/os.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/pcifront.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/pcifront.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/queue.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/semaphore.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/spinlock.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/time.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/types.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/wait.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/waittypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/waittypes.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/x86/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/x86/limits.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/x86/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/x86/mm.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/x86/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/x86/os.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/x86/pcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/x86/pcpu.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/x86/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/x86/spinlock.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/x86/traps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/x86/traps.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/x86/x86_32/hypercall-x86_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/x86/x86_32/hypercall-x86_32.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/x86/x86_64/hypercall-x86_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/x86/x86_64/hypercall-x86_64.h -------------------------------------------------------------------------------- /platform/xen/xen/include/mini-os/xenbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/include/mini-os/xenbus.h -------------------------------------------------------------------------------- /platform/xen/xen/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/kernel.c -------------------------------------------------------------------------------- /platform/xen/xen/minios.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/minios.mk -------------------------------------------------------------------------------- /platform/xen/xen/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/mm.c -------------------------------------------------------------------------------- /platform/xen/xen/netfront.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/netfront.c -------------------------------------------------------------------------------- /platform/xen/xen/pcifront.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/pcifront.c -------------------------------------------------------------------------------- /platform/xen/xen/xenbus/xenbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/platform/xen/xen/xenbus/xenbus.c -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/Makefile.inc -------------------------------------------------------------------------------- /tests/basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/basic/Makefile -------------------------------------------------------------------------------- /tests/basic/ctor_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/basic/ctor_test.c -------------------------------------------------------------------------------- /tests/basic/misc_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/basic/misc_test.c -------------------------------------------------------------------------------- /tests/basic/pthread_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/basic/pthread_test.c -------------------------------------------------------------------------------- /tests/basic/tls_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/basic/tls_test.c -------------------------------------------------------------------------------- /tests/buildtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/buildtests.sh -------------------------------------------------------------------------------- /tests/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /tests/cmake/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/cmake/config.h.in -------------------------------------------------------------------------------- /tests/cmake/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/cmake/test.c -------------------------------------------------------------------------------- /tests/configure/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/configure/.gitignore -------------------------------------------------------------------------------- /tests/configure/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/configure/Makefile.am -------------------------------------------------------------------------------- /tests/configure/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/configure/Makefile.in -------------------------------------------------------------------------------- /tests/configure/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/configure/aclocal.m4 -------------------------------------------------------------------------------- /tests/configure/build-aux/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/configure/build-aux/compile -------------------------------------------------------------------------------- /tests/configure/build-aux/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/configure/build-aux/config.guess -------------------------------------------------------------------------------- /tests/configure/build-aux/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/configure/build-aux/config.sub -------------------------------------------------------------------------------- /tests/configure/build-aux/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/configure/build-aux/depcomp -------------------------------------------------------------------------------- /tests/configure/build-aux/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/configure/build-aux/install-sh -------------------------------------------------------------------------------- /tests/configure/build-aux/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/configure/build-aux/ltmain.sh -------------------------------------------------------------------------------- /tests/configure/build-aux/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/configure/build-aux/missing -------------------------------------------------------------------------------- /tests/configure/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/configure/config.h.in -------------------------------------------------------------------------------- /tests/configure/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/configure/configure -------------------------------------------------------------------------------- /tests/configure/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/configure/configure.ac -------------------------------------------------------------------------------- /tests/configure/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/configure/m4/libtool.m4 -------------------------------------------------------------------------------- /tests/configure/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/configure/m4/ltoptions.m4 -------------------------------------------------------------------------------- /tests/configure/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/configure/m4/ltsugar.m4 -------------------------------------------------------------------------------- /tests/configure/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/configure/m4/ltversion.m4 -------------------------------------------------------------------------------- /tests/configure/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/configure/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /tests/configure/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/configure/test.c -------------------------------------------------------------------------------- /tests/crypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/crypto/Makefile -------------------------------------------------------------------------------- /tests/crypto/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/crypto/README -------------------------------------------------------------------------------- /tests/crypto/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/crypto/md5.c -------------------------------------------------------------------------------- /tests/hello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/hello/Makefile -------------------------------------------------------------------------------- /tests/hello/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/hello/hello.c -------------------------------------------------------------------------------- /tests/hello/hellopp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/hello/hellopp.cc -------------------------------------------------------------------------------- /tests/nolibc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/nolibc/Makefile -------------------------------------------------------------------------------- /tests/nolibc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/nolibc/main.c -------------------------------------------------------------------------------- /tests/nolibc/nolibc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/nolibc/nolibc.h -------------------------------------------------------------------------------- /tests/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rumpkernel/rumprun/HEAD/tests/runtests.sh --------------------------------------------------------------------------------