├── .clang-format ├── .gitignore ├── Documents ├── 000-INDEX ├── 001-Build_Minos.md ├── 002-Test_Minos_on_Raspberry_4.md ├── 003-Test_Minos_on_Khadas_VIM3.md ├── 004-Test_Minos_on_ARM_FVP.md ├── 005-Run_Minos_on_Qemu.md ├── 009-Test_Minos_on_Raspberry_3B.md ├── virtio-0.9.5.pdf ├── virtio-paper.pdf └── virtio-v1.0.pdf ├── Kconfig ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── apps ├── Kconfig ├── Makefile ├── esh │ ├── COPYING │ ├── Kconfig │ ├── Makefile │ ├── README.md │ ├── esh.c │ ├── esh.h │ ├── esh_argparser.c │ ├── esh_argparser.h │ ├── esh_config.h │ ├── esh_hist.c │ ├── esh_hist.h │ ├── esh_incl_config.h │ ├── esh_internal.h │ └── shell.c └── init.c ├── arch └── aarch64 │ ├── Kconfig │ ├── Makefile │ ├── core │ ├── Kconfig │ ├── Makefile │ ├── aarch64.S │ ├── aarch64_IRQ.c │ ├── aarch64_sync.c │ ├── arch.c │ ├── arm_arch_timer.c │ ├── asm-offset.c │ ├── boot.S │ ├── cache.S │ ├── cpu.c │ ├── cpu_feature.c │ ├── entry.S │ ├── fpsimd.c │ ├── mem_map.S │ ├── stage1.c │ ├── stage1.h │ └── vector.S │ ├── include │ └── asm │ │ ├── aarch64_common.h │ │ ├── aarch64_el1_reg.h │ │ ├── aarch64_el2_reg.h │ │ ├── aarch64_helper.h │ │ ├── aarch64_reg.h │ │ ├── arch.h │ │ ├── asm_current.h │ │ ├── asm_marco.S │ │ ├── asm_types.h │ │ ├── atomic.h │ │ ├── barrier.h │ │ ├── bitops.h │ │ ├── cache.h │ │ ├── cmpxchg.h │ │ ├── cpu_feature.h │ │ ├── div64.h │ │ ├── gic_reg.h │ │ ├── io.h │ │ ├── power.h │ │ ├── psci.h │ │ ├── reg.h │ │ ├── svccc.h │ │ ├── tcb.h │ │ ├── time.h │ │ ├── tlb.h │ │ ├── trap.h │ │ ├── virt.h │ │ └── vtcb.h │ ├── lds │ ├── Makefile │ └── minos.lds.S │ ├── lib │ ├── Makefile │ ├── atomic.S │ ├── bitops.S │ ├── memchr.S │ ├── memcmp.S │ ├── memcpy.S │ ├── memmove.S │ ├── memset.S │ ├── spinlock.S │ ├── strchr.S │ ├── strcmp.S │ ├── strcpy.S │ ├── strlen.S │ ├── strncmp.S │ ├── strnlen.S │ ├── strrchr.S │ └── ticket_lock.S │ └── virt │ ├── Kconfig │ ├── Makefile │ ├── arch_virt.c │ ├── smc_service.c │ ├── stage2.c │ ├── stage2.h │ ├── svc_service.c │ ├── trap.c │ ├── vfp.c │ ├── vmsa.c │ └── vtimer.c ├── configs ├── espressobin_defconfig ├── fvp_a76_defconfig ├── fvp_defconfig ├── fvp_rtos_defconfig ├── kvim3_defconfig ├── qemu_arm64_defconfig ├── r8a7795_defconfig ├── rpi_3_defconfig └── rpi_4_defconfig ├── core ├── Kconfig ├── Makefile ├── bitmap.c ├── bootarg.c ├── calltrace.c ├── delay.c ├── event.c ├── find_bit.c ├── flag.c ├── hook.c ├── hweight.c ├── idle.c ├── init.c ├── irq.c ├── mbox.c ├── mem_region.c ├── memory.c ├── minos.c ├── mutex.c ├── percpu.c ├── print.c ├── queue.c ├── ramdisk.c ├── sched.c ├── sem.c ├── smp.c ├── stdlib.c ├── string.c ├── task.c ├── timer.c └── vspace.c ├── drivers ├── Kconfig ├── Makefile ├── console.c ├── device_id.c ├── iommu │ ├── Kconfig │ ├── Makefile │ ├── ipmmu-plat.c │ └── ipmmu.c ├── irq-chips │ ├── Kconfig │ ├── Makefile │ ├── gicv2.c │ ├── gicv3.c │ ├── irq-bcm2836.c │ └── irqchip.c ├── of │ ├── Kconfig │ ├── Makefile │ ├── of.c │ └── of_mm.c ├── serial │ ├── Kconfig │ ├── Makefile │ ├── pl011.h │ ├── serial_bcm283x_mu.c │ ├── serial_meson.c │ ├── serial_mvebu_a3700.c │ ├── serial_pl011.c │ └── serial_scif.c └── tty.c ├── dtbs ├── Makefile ├── armada-3720-community-v5.dts ├── bcm2837-rpi-3-b-plus.dts ├── bcm2838-rpi-4-b-32bit.dts ├── bcm2838-rpi-4-b.dts ├── foundation-v8-gicv2.dts ├── foundation-v8-gicv3-zephyr.dts ├── foundation-v8-gicv3.dts ├── kvim3.dts ├── qemu-arm64.dts └── r8a7795.dts ├── generic ├── include │ └── generic │ │ ├── gvm.h │ │ ├── hypervisor.h │ │ ├── ramdisk.h │ │ └── virtio_mmio.h └── minos-linux-driver │ ├── Kconfig │ ├── Makefile │ ├── minos.c │ ├── minos.h │ ├── minos_hypercall.h │ ├── minos_ioctl.h │ ├── minos_irq.c │ ├── vmbox │ ├── Makefile │ ├── vmbox_bus.c │ ├── vmbox_bus.h │ ├── vmbox_console.c │ ├── vmbox_controller.c │ ├── vmbox_veth.c │ ├── vmbox_virtq.c │ └── vmbox_virtq.h │ └── vtcon_early_printk.c ├── include ├── device │ ├── bcm_irq.h │ ├── gicv2.h │ └── gicv3.h ├── libfdt │ ├── fdt.h │ ├── libfdt.h │ └── libfdt_env.h ├── minos │ ├── arch.h │ ├── atomic.h │ ├── bitmap.h │ ├── bitops.h │ ├── bootarg.h │ ├── calltrace.h │ ├── compiler.h │ ├── console.h │ ├── const.h │ ├── cpumask.h │ ├── current.h │ ├── device_id.h │ ├── errno.h │ ├── event.h │ ├── flag.h │ ├── hook.h │ ├── init.h │ ├── irq.h │ ├── kbuild.h │ ├── list.h │ ├── math64.h │ ├── mbox.h │ ├── memattr.h │ ├── memory.h │ ├── minos.h │ ├── mm.h │ ├── mutex.h │ ├── of.h │ ├── os.h │ ├── percpu.h │ ├── platform.h │ ├── pm.h │ ├── preempt.h │ ├── print.h │ ├── queue.h │ ├── ramdisk.h │ ├── raw_spinlock.h │ ├── sched.h │ ├── sem.h │ ├── shell_command.h │ ├── smp.h │ ├── softirq.h │ ├── spinlock.h │ ├── stdlib.h │ ├── string.h │ ├── symbol.h │ ├── task.h │ ├── task_def.h │ ├── task_info.h │ ├── time.h │ ├── timer.h │ ├── tty.h │ ├── types.h │ ├── varlist.h │ ├── vspace.h │ └── wait.h └── virt │ ├── hypercall.h │ ├── iommu.h │ ├── os.h │ ├── resource.h │ ├── vdev.h │ ├── virq.h │ ├── virq_chip.h │ ├── virt.h │ ├── virtio.h │ ├── vm.h │ ├── vm_mmap.h │ ├── vm_pm.h │ ├── vmbox.h │ ├── vmcs.h │ ├── vmm.h │ └── vmodule.h ├── libs ├── Kconfig ├── Makefile ├── libfdt │ ├── Makefile │ ├── fdt.c │ ├── fdt_addresses.c │ ├── fdt_empty_tree.c │ ├── fdt_overlay.c │ ├── fdt_ro.c │ ├── fdt_rw.c │ ├── fdt_strerror.c │ ├── fdt_sw.c │ ├── fdt_wip.c │ └── libfdt_internal.h └── shell_command │ ├── Kconfig │ ├── Makefile │ ├── clear.c │ ├── help_cmd.c │ ├── shell_command.c │ └── task_cmd.c ├── platform ├── Kconfig ├── Makefile ├── amlogic │ ├── Kconfig │ ├── Makefile │ ├── amlogic_smc.c │ └── kvim3.c ├── espressobin │ ├── Kconfig │ ├── Makefile │ └── espressobin.c ├── fvp │ ├── Kconfig │ ├── Makefile │ └── fvp.c ├── platform.c ├── qemu │ ├── Kconfig │ ├── Makefile │ └── qemu.c ├── r8a7795 │ ├── Kconfig │ ├── Makefile │ └── r8a7795.c ├── raspberry3 │ ├── Kconfig │ ├── Makefile │ └── raspberry3.c └── raspberry4 │ ├── Kconfig │ ├── Makefile │ └── raspberry4.c ├── scripts ├── Kconfiglib │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── README.rst │ ├── alldefconfig.py │ ├── allmodconfig.py │ ├── allnoconfig.py │ ├── allyesconfig.py │ ├── defconfig.py │ ├── examples │ │ ├── Kmenuconfig │ │ ├── allnoconfig_walk.py │ │ ├── defconfig_oldconfig.py │ │ ├── dumpvars.py │ │ ├── eval_expr.py │ │ ├── find_symbol.py │ │ ├── help_grep.py │ │ ├── kconfiglib.py │ │ ├── list_undefined.py │ │ ├── menuconfig_example.py │ │ ├── merge_config.py │ │ ├── print_config_tree.py │ │ ├── print_sym_info.py │ │ └── print_tree.py │ ├── genconfig.py │ ├── guiconfig.py │ ├── kconfiglib.py │ ├── listnewconfig.py │ ├── menuconfig.py │ ├── oldconfig.py │ ├── olddefconfig.py │ ├── savedefconfig.py │ ├── setconfig.py │ ├── setup.cfg │ ├── setup.py │ ├── tests │ │ ├── Kappend │ │ ├── Kassignable │ │ ├── Kchoice │ │ ├── Kdefconfig_existent │ │ ├── Kdefconfig_existent_but_n │ │ ├── Kdefconfig_nonexistent │ │ ├── Kdefconfig_srctree │ │ ├── Kdepcopy │ │ ├── Kdeploop0 │ │ ├── Kdeploop1 │ │ ├── Kdeploop10 │ │ ├── Kdeploop2 │ │ ├── Kdeploop3 │ │ ├── Kdeploop4 │ │ ├── Kdeploop5 │ │ ├── Kdeploop6 │ │ ├── Kdeploop7 │ │ ├── Kdeploop8 │ │ ├── Kdeploop9 │ │ ├── Kdirdep │ │ ├── Kescape │ │ ├── Keval │ │ ├── Kexpr_items │ │ ├── Kheader │ │ ├── Khelp │ │ ├── Kifremoval │ │ ├── Kimply │ │ ├── Kinclude_path │ │ ├── Kinclude_path_sourced_1 │ │ ├── Kinclude_path_sourced_2 │ │ ├── Kitemlists │ │ ├── Klocation │ │ ├── Klocation_sourced │ │ ├── Kmainmenu │ │ ├── Kmenuconfig │ │ ├── Kmisc │ │ ├── Kmissingrsource │ │ ├── Kmissingsource │ │ ├── Korder │ │ ├── Kpreprocess │ │ ├── Krange │ │ ├── Krecursive1 │ │ ├── Krecursive2 │ │ ├── Kreferenced │ │ ├── Krelation │ │ ├── Krepr │ │ ├── Kstr │ │ ├── Kundef │ │ ├── Kuserfunctions │ │ ├── Kvisibility │ │ ├── config_indented │ │ ├── config_set_bool │ │ ├── config_set_string │ │ ├── defconfig_1 │ │ ├── defconfig_2 │ │ ├── empty │ │ ├── kconfigfunctions.py │ │ ├── reltest │ │ ├── sub │ │ │ ├── Kconfig_symlink_2 │ │ │ ├── Kconfig_symlink_3 │ │ │ ├── Klocation_grsourced1 │ │ │ ├── Klocation_grsourced2 │ │ │ ├── Klocation_gsourced1 │ │ │ ├── Klocation_gsourced2 │ │ │ ├── Klocation_rsourced │ │ │ ├── defconfig_in_sub │ │ │ └── sub │ │ │ │ └── Kconfig_symlink_1 │ │ └── symlink │ └── testsuite.py ├── Minos.build.mk ├── Minos.clean.mk ├── Minos.config.mk ├── generate_allsymbols.py └── make_ramdisk.sh ├── tools ├── fdt_parse │ ├── Makefile │ ├── fdt_parse.c │ ├── libfdt │ │ ├── fdt.c │ │ ├── fdt.h │ │ ├── fdt_addresses.c │ │ ├── fdt_empty_tree.c │ │ ├── fdt_overlay.c │ │ ├── fdt_ro.c │ │ ├── fdt_rw.c │ │ ├── fdt_strerror.c │ │ ├── fdt_sw.c │ │ ├── fdt_wip.c │ │ ├── libfdt.h │ │ ├── libfdt_env.h │ │ └── libfdt_internal.h │ └── of.h ├── mkrmd │ ├── Makefile │ └── mkrmd.c └── mvm │ ├── Android.bp │ ├── Makefile │ ├── build32.sh │ ├── devices │ ├── block_if.c │ ├── option_vdev.c │ ├── s3c_uart.c │ ├── vdev.c │ └── virtio │ │ ├── virtio.c │ │ ├── virtio_block.c │ │ ├── virtio_console.c │ │ └── virtio_net.c │ ├── include │ ├── libfdt │ │ ├── fdt.h │ │ ├── libfdt.h │ │ └── libfdt_env.h │ └── minos │ │ ├── ahci.h │ │ ├── barrier.h │ │ ├── block_if.h │ │ ├── bootimage.h │ │ ├── compiler.h │ │ ├── debug.h │ │ ├── io.h │ │ ├── list.h │ │ ├── mevent.h │ │ ├── mvm.h │ │ ├── mvm_queue.h │ │ ├── netmap.h │ │ ├── netmap_user.h │ │ ├── option.h │ │ ├── os.h │ │ ├── os_xnu.h │ │ ├── vdev.h │ │ ├── virtio.h │ │ ├── vm.h │ │ └── vmcs.h │ ├── libfdt │ ├── fdt.c │ ├── fdt_addresses.c │ ├── fdt_empty_tree.c │ ├── fdt_overlay.c │ ├── fdt_ro.c │ ├── fdt_rw.c │ ├── fdt_strerror.c │ ├── fdt_sw.c │ ├── fdt_wip.c │ └── libfdt_internal.h │ ├── main │ ├── bootimage.c │ ├── mevent.c │ ├── mvm.c │ ├── mvm_queue.c │ ├── option.c │ └── option_vm.c │ └── os │ ├── option_os.c │ ├── os.c │ ├── os_linux.c │ ├── os_other.c │ └── os_xnu.c └── virt ├── Kconfig ├── Makefile ├── debug_console.c ├── hypercall.c ├── iommu.c ├── os ├── Kconfig ├── Makefile ├── os.c ├── os_linux.c ├── os_other.c └── os_xnu.c ├── resource.c ├── shmem.c ├── varm_timer.c ├── vdev.c ├── vfault.c ├── virq.c ├── virq_chips ├── Kconfig ├── Makefile ├── bcm_virq.c ├── vaic.c ├── vgic.c ├── vgic.h ├── vgicv2.c ├── vgicv3.c └── virq_chip.c ├── virtio_mmio.c ├── vm.c ├── vm_daemon.c ├── vm_pm.c ├── vmbox ├── Kconfig ├── Makefile ├── vmbox.c └── vmbox_hvc.c ├── vmcs.c ├── vmm.c ├── vmodule.c ├── vrtc.c └── vwdt.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/.gitignore -------------------------------------------------------------------------------- /Documents/000-INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/Documents/000-INDEX -------------------------------------------------------------------------------- /Documents/001-Build_Minos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/Documents/001-Build_Minos.md -------------------------------------------------------------------------------- /Documents/002-Test_Minos_on_Raspberry_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/Documents/002-Test_Minos_on_Raspberry_4.md -------------------------------------------------------------------------------- /Documents/003-Test_Minos_on_Khadas_VIM3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/Documents/003-Test_Minos_on_Khadas_VIM3.md -------------------------------------------------------------------------------- /Documents/004-Test_Minos_on_ARM_FVP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/Documents/004-Test_Minos_on_ARM_FVP.md -------------------------------------------------------------------------------- /Documents/005-Run_Minos_on_Qemu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/Documents/005-Run_Minos_on_Qemu.md -------------------------------------------------------------------------------- /Documents/009-Test_Minos_on_Raspberry_3B.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/Documents/009-Test_Minos_on_Raspberry_3B.md -------------------------------------------------------------------------------- /Documents/virtio-0.9.5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/Documents/virtio-0.9.5.pdf -------------------------------------------------------------------------------- /Documents/virtio-paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/Documents/virtio-paper.pdf -------------------------------------------------------------------------------- /Documents/virtio-v1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/Documents/virtio-v1.0.pdf -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/Kconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/VERSION -------------------------------------------------------------------------------- /apps/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/apps/Kconfig -------------------------------------------------------------------------------- /apps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/apps/Makefile -------------------------------------------------------------------------------- /apps/esh/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/apps/esh/COPYING -------------------------------------------------------------------------------- /apps/esh/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/apps/esh/Kconfig -------------------------------------------------------------------------------- /apps/esh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/apps/esh/Makefile -------------------------------------------------------------------------------- /apps/esh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/apps/esh/README.md -------------------------------------------------------------------------------- /apps/esh/esh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/apps/esh/esh.c -------------------------------------------------------------------------------- /apps/esh/esh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/apps/esh/esh.h -------------------------------------------------------------------------------- /apps/esh/esh_argparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/apps/esh/esh_argparser.c -------------------------------------------------------------------------------- /apps/esh/esh_argparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/apps/esh/esh_argparser.h -------------------------------------------------------------------------------- /apps/esh/esh_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/apps/esh/esh_config.h -------------------------------------------------------------------------------- /apps/esh/esh_hist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/apps/esh/esh_hist.c -------------------------------------------------------------------------------- /apps/esh/esh_hist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/apps/esh/esh_hist.h -------------------------------------------------------------------------------- /apps/esh/esh_incl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/apps/esh/esh_incl_config.h -------------------------------------------------------------------------------- /apps/esh/esh_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/apps/esh/esh_internal.h -------------------------------------------------------------------------------- /apps/esh/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/apps/esh/shell.c -------------------------------------------------------------------------------- /apps/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/apps/init.c -------------------------------------------------------------------------------- /arch/aarch64/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/Kconfig -------------------------------------------------------------------------------- /arch/aarch64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/Makefile -------------------------------------------------------------------------------- /arch/aarch64/core/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/core/Kconfig -------------------------------------------------------------------------------- /arch/aarch64/core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/core/Makefile -------------------------------------------------------------------------------- /arch/aarch64/core/aarch64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/core/aarch64.S -------------------------------------------------------------------------------- /arch/aarch64/core/aarch64_IRQ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/core/aarch64_IRQ.c -------------------------------------------------------------------------------- /arch/aarch64/core/aarch64_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/core/aarch64_sync.c -------------------------------------------------------------------------------- /arch/aarch64/core/arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/core/arch.c -------------------------------------------------------------------------------- /arch/aarch64/core/arm_arch_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/core/arm_arch_timer.c -------------------------------------------------------------------------------- /arch/aarch64/core/asm-offset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/core/asm-offset.c -------------------------------------------------------------------------------- /arch/aarch64/core/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/core/boot.S -------------------------------------------------------------------------------- /arch/aarch64/core/cache.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/core/cache.S -------------------------------------------------------------------------------- /arch/aarch64/core/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/core/cpu.c -------------------------------------------------------------------------------- /arch/aarch64/core/cpu_feature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/core/cpu_feature.c -------------------------------------------------------------------------------- /arch/aarch64/core/entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/core/entry.S -------------------------------------------------------------------------------- /arch/aarch64/core/fpsimd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/core/fpsimd.c -------------------------------------------------------------------------------- /arch/aarch64/core/mem_map.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/core/mem_map.S -------------------------------------------------------------------------------- /arch/aarch64/core/stage1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/core/stage1.c -------------------------------------------------------------------------------- /arch/aarch64/core/stage1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/core/stage1.h -------------------------------------------------------------------------------- /arch/aarch64/core/vector.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/core/vector.S -------------------------------------------------------------------------------- /arch/aarch64/include/asm/aarch64_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/aarch64_common.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/aarch64_el1_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/aarch64_el1_reg.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/aarch64_el2_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/aarch64_el2_reg.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/aarch64_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/aarch64_helper.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/aarch64_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/aarch64_reg.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/arch.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/asm_current.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/asm_current.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/asm_marco.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/asm_marco.S -------------------------------------------------------------------------------- /arch/aarch64/include/asm/asm_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/asm_types.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/atomic.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/barrier.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/bitops.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/cache.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/cmpxchg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/cmpxchg.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/cpu_feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/cpu_feature.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/div64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/div64.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/gic_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/gic_reg.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/io.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/power.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/psci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/psci.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/reg.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/svccc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/svccc.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/tcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/tcb.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/time.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/tlb.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/trap.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/virt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/virt.h -------------------------------------------------------------------------------- /arch/aarch64/include/asm/vtcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/include/asm/vtcb.h -------------------------------------------------------------------------------- /arch/aarch64/lds/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += minos.lds 2 | -------------------------------------------------------------------------------- /arch/aarch64/lds/minos.lds.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/lds/minos.lds.S -------------------------------------------------------------------------------- /arch/aarch64/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/lib/Makefile -------------------------------------------------------------------------------- /arch/aarch64/lib/atomic.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/lib/atomic.S -------------------------------------------------------------------------------- /arch/aarch64/lib/bitops.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/lib/bitops.S -------------------------------------------------------------------------------- /arch/aarch64/lib/memchr.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/lib/memchr.S -------------------------------------------------------------------------------- /arch/aarch64/lib/memcmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/lib/memcmp.S -------------------------------------------------------------------------------- /arch/aarch64/lib/memcpy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/lib/memcpy.S -------------------------------------------------------------------------------- /arch/aarch64/lib/memmove.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/lib/memmove.S -------------------------------------------------------------------------------- /arch/aarch64/lib/memset.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/lib/memset.S -------------------------------------------------------------------------------- /arch/aarch64/lib/spinlock.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/lib/spinlock.S -------------------------------------------------------------------------------- /arch/aarch64/lib/strchr.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/lib/strchr.S -------------------------------------------------------------------------------- /arch/aarch64/lib/strcmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/lib/strcmp.S -------------------------------------------------------------------------------- /arch/aarch64/lib/strcpy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/lib/strcpy.S -------------------------------------------------------------------------------- /arch/aarch64/lib/strlen.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/lib/strlen.S -------------------------------------------------------------------------------- /arch/aarch64/lib/strncmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/lib/strncmp.S -------------------------------------------------------------------------------- /arch/aarch64/lib/strnlen.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/lib/strnlen.S -------------------------------------------------------------------------------- /arch/aarch64/lib/strrchr.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/lib/strrchr.S -------------------------------------------------------------------------------- /arch/aarch64/lib/ticket_lock.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/lib/ticket_lock.S -------------------------------------------------------------------------------- /arch/aarch64/virt/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/virt/Kconfig -------------------------------------------------------------------------------- /arch/aarch64/virt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/virt/Makefile -------------------------------------------------------------------------------- /arch/aarch64/virt/arch_virt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/virt/arch_virt.c -------------------------------------------------------------------------------- /arch/aarch64/virt/smc_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/virt/smc_service.c -------------------------------------------------------------------------------- /arch/aarch64/virt/stage2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/virt/stage2.c -------------------------------------------------------------------------------- /arch/aarch64/virt/stage2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/virt/stage2.h -------------------------------------------------------------------------------- /arch/aarch64/virt/svc_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/virt/svc_service.c -------------------------------------------------------------------------------- /arch/aarch64/virt/trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/virt/trap.c -------------------------------------------------------------------------------- /arch/aarch64/virt/vfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/virt/vfp.c -------------------------------------------------------------------------------- /arch/aarch64/virt/vmsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/virt/vmsa.c -------------------------------------------------------------------------------- /arch/aarch64/virt/vtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/arch/aarch64/virt/vtimer.c -------------------------------------------------------------------------------- /configs/espressobin_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/configs/espressobin_defconfig -------------------------------------------------------------------------------- /configs/fvp_a76_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/configs/fvp_a76_defconfig -------------------------------------------------------------------------------- /configs/fvp_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/configs/fvp_defconfig -------------------------------------------------------------------------------- /configs/fvp_rtos_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/configs/fvp_rtos_defconfig -------------------------------------------------------------------------------- /configs/kvim3_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/configs/kvim3_defconfig -------------------------------------------------------------------------------- /configs/qemu_arm64_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/configs/qemu_arm64_defconfig -------------------------------------------------------------------------------- /configs/r8a7795_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/configs/r8a7795_defconfig -------------------------------------------------------------------------------- /configs/rpi_3_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/configs/rpi_3_defconfig -------------------------------------------------------------------------------- /configs/rpi_4_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/configs/rpi_4_defconfig -------------------------------------------------------------------------------- /core/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/Kconfig -------------------------------------------------------------------------------- /core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/Makefile -------------------------------------------------------------------------------- /core/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/bitmap.c -------------------------------------------------------------------------------- /core/bootarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/bootarg.c -------------------------------------------------------------------------------- /core/calltrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/calltrace.c -------------------------------------------------------------------------------- /core/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/delay.c -------------------------------------------------------------------------------- /core/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/event.c -------------------------------------------------------------------------------- /core/find_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/find_bit.c -------------------------------------------------------------------------------- /core/flag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/flag.c -------------------------------------------------------------------------------- /core/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/hook.c -------------------------------------------------------------------------------- /core/hweight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/hweight.c -------------------------------------------------------------------------------- /core/idle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/idle.c -------------------------------------------------------------------------------- /core/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/init.c -------------------------------------------------------------------------------- /core/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/irq.c -------------------------------------------------------------------------------- /core/mbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/mbox.c -------------------------------------------------------------------------------- /core/mem_region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/mem_region.c -------------------------------------------------------------------------------- /core/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/memory.c -------------------------------------------------------------------------------- /core/minos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/minos.c -------------------------------------------------------------------------------- /core/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/mutex.c -------------------------------------------------------------------------------- /core/percpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/percpu.c -------------------------------------------------------------------------------- /core/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/print.c -------------------------------------------------------------------------------- /core/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/queue.c -------------------------------------------------------------------------------- /core/ramdisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/ramdisk.c -------------------------------------------------------------------------------- /core/sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/sched.c -------------------------------------------------------------------------------- /core/sem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/sem.c -------------------------------------------------------------------------------- /core/smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/smp.c -------------------------------------------------------------------------------- /core/stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/stdlib.c -------------------------------------------------------------------------------- /core/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/string.c -------------------------------------------------------------------------------- /core/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/task.c -------------------------------------------------------------------------------- /core/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/timer.c -------------------------------------------------------------------------------- /core/vspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/core/vspace.c -------------------------------------------------------------------------------- /drivers/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/Kconfig -------------------------------------------------------------------------------- /drivers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/Makefile -------------------------------------------------------------------------------- /drivers/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/console.c -------------------------------------------------------------------------------- /drivers/device_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/device_id.c -------------------------------------------------------------------------------- /drivers/iommu/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/iommu/Kconfig -------------------------------------------------------------------------------- /drivers/iommu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/iommu/Makefile -------------------------------------------------------------------------------- /drivers/iommu/ipmmu-plat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/iommu/ipmmu-plat.c -------------------------------------------------------------------------------- /drivers/iommu/ipmmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/iommu/ipmmu.c -------------------------------------------------------------------------------- /drivers/irq-chips/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/irq-chips/Kconfig -------------------------------------------------------------------------------- /drivers/irq-chips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/irq-chips/Makefile -------------------------------------------------------------------------------- /drivers/irq-chips/gicv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/irq-chips/gicv2.c -------------------------------------------------------------------------------- /drivers/irq-chips/gicv3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/irq-chips/gicv3.c -------------------------------------------------------------------------------- /drivers/irq-chips/irq-bcm2836.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/irq-chips/irq-bcm2836.c -------------------------------------------------------------------------------- /drivers/irq-chips/irqchip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/irq-chips/irqchip.c -------------------------------------------------------------------------------- /drivers/of/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /drivers/of/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/of/Makefile -------------------------------------------------------------------------------- /drivers/of/of.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/of/of.c -------------------------------------------------------------------------------- /drivers/of/of_mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/of/of_mm.c -------------------------------------------------------------------------------- /drivers/serial/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/serial/Kconfig -------------------------------------------------------------------------------- /drivers/serial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/serial/Makefile -------------------------------------------------------------------------------- /drivers/serial/pl011.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/serial/pl011.h -------------------------------------------------------------------------------- /drivers/serial/serial_bcm283x_mu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/serial/serial_bcm283x_mu.c -------------------------------------------------------------------------------- /drivers/serial/serial_meson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/serial/serial_meson.c -------------------------------------------------------------------------------- /drivers/serial/serial_mvebu_a3700.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/serial/serial_mvebu_a3700.c -------------------------------------------------------------------------------- /drivers/serial/serial_pl011.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/serial/serial_pl011.c -------------------------------------------------------------------------------- /drivers/serial/serial_scif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/serial/serial_scif.c -------------------------------------------------------------------------------- /drivers/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/drivers/tty.c -------------------------------------------------------------------------------- /dtbs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/dtbs/Makefile -------------------------------------------------------------------------------- /dtbs/armada-3720-community-v5.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/dtbs/armada-3720-community-v5.dts -------------------------------------------------------------------------------- /dtbs/bcm2837-rpi-3-b-plus.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/dtbs/bcm2837-rpi-3-b-plus.dts -------------------------------------------------------------------------------- /dtbs/bcm2838-rpi-4-b-32bit.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/dtbs/bcm2838-rpi-4-b-32bit.dts -------------------------------------------------------------------------------- /dtbs/bcm2838-rpi-4-b.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/dtbs/bcm2838-rpi-4-b.dts -------------------------------------------------------------------------------- /dtbs/foundation-v8-gicv2.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/dtbs/foundation-v8-gicv2.dts -------------------------------------------------------------------------------- /dtbs/foundation-v8-gicv3-zephyr.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/dtbs/foundation-v8-gicv3-zephyr.dts -------------------------------------------------------------------------------- /dtbs/foundation-v8-gicv3.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/dtbs/foundation-v8-gicv3.dts -------------------------------------------------------------------------------- /dtbs/kvim3.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/dtbs/kvim3.dts -------------------------------------------------------------------------------- /dtbs/qemu-arm64.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/dtbs/qemu-arm64.dts -------------------------------------------------------------------------------- /dtbs/r8a7795.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/dtbs/r8a7795.dts -------------------------------------------------------------------------------- /generic/include/generic/gvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/generic/include/generic/gvm.h -------------------------------------------------------------------------------- /generic/include/generic/hypervisor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/generic/include/generic/hypervisor.h -------------------------------------------------------------------------------- /generic/include/generic/ramdisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/generic/include/generic/ramdisk.h -------------------------------------------------------------------------------- /generic/include/generic/virtio_mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/generic/include/generic/virtio_mmio.h -------------------------------------------------------------------------------- /generic/minos-linux-driver/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/generic/minos-linux-driver/Kconfig -------------------------------------------------------------------------------- /generic/minos-linux-driver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/generic/minos-linux-driver/Makefile -------------------------------------------------------------------------------- /generic/minos-linux-driver/minos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/generic/minos-linux-driver/minos.c -------------------------------------------------------------------------------- /generic/minos-linux-driver/minos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/generic/minos-linux-driver/minos.h -------------------------------------------------------------------------------- /generic/minos-linux-driver/minos_hypercall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/generic/minos-linux-driver/minos_hypercall.h -------------------------------------------------------------------------------- /generic/minos-linux-driver/minos_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/generic/minos-linux-driver/minos_ioctl.h -------------------------------------------------------------------------------- /generic/minos-linux-driver/minos_irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/generic/minos-linux-driver/minos_irq.c -------------------------------------------------------------------------------- /generic/minos-linux-driver/vmbox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/generic/minos-linux-driver/vmbox/Makefile -------------------------------------------------------------------------------- /generic/minos-linux-driver/vmbox/vmbox_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/generic/minos-linux-driver/vmbox/vmbox_bus.c -------------------------------------------------------------------------------- /generic/minos-linux-driver/vmbox/vmbox_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/generic/minos-linux-driver/vmbox/vmbox_bus.h -------------------------------------------------------------------------------- /generic/minos-linux-driver/vmbox/vmbox_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/generic/minos-linux-driver/vmbox/vmbox_console.c -------------------------------------------------------------------------------- /generic/minos-linux-driver/vmbox/vmbox_controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/generic/minos-linux-driver/vmbox/vmbox_controller.c -------------------------------------------------------------------------------- /generic/minos-linux-driver/vmbox/vmbox_veth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/generic/minos-linux-driver/vmbox/vmbox_veth.c -------------------------------------------------------------------------------- /generic/minos-linux-driver/vmbox/vmbox_virtq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/generic/minos-linux-driver/vmbox/vmbox_virtq.c -------------------------------------------------------------------------------- /generic/minos-linux-driver/vmbox/vmbox_virtq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/generic/minos-linux-driver/vmbox/vmbox_virtq.h -------------------------------------------------------------------------------- /generic/minos-linux-driver/vtcon_early_printk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/generic/minos-linux-driver/vtcon_early_printk.c -------------------------------------------------------------------------------- /include/device/bcm_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/device/bcm_irq.h -------------------------------------------------------------------------------- /include/device/gicv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/device/gicv2.h -------------------------------------------------------------------------------- /include/device/gicv3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/device/gicv3.h -------------------------------------------------------------------------------- /include/libfdt/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/libfdt/fdt.h -------------------------------------------------------------------------------- /include/libfdt/libfdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/libfdt/libfdt.h -------------------------------------------------------------------------------- /include/libfdt/libfdt_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/libfdt/libfdt_env.h -------------------------------------------------------------------------------- /include/minos/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/arch.h -------------------------------------------------------------------------------- /include/minos/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/atomic.h -------------------------------------------------------------------------------- /include/minos/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/bitmap.h -------------------------------------------------------------------------------- /include/minos/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/bitops.h -------------------------------------------------------------------------------- /include/minos/bootarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/bootarg.h -------------------------------------------------------------------------------- /include/minos/calltrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/calltrace.h -------------------------------------------------------------------------------- /include/minos/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/compiler.h -------------------------------------------------------------------------------- /include/minos/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/console.h -------------------------------------------------------------------------------- /include/minos/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/const.h -------------------------------------------------------------------------------- /include/minos/cpumask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/cpumask.h -------------------------------------------------------------------------------- /include/minos/current.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/current.h -------------------------------------------------------------------------------- /include/minos/device_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/device_id.h -------------------------------------------------------------------------------- /include/minos/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/errno.h -------------------------------------------------------------------------------- /include/minos/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/event.h -------------------------------------------------------------------------------- /include/minos/flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/flag.h -------------------------------------------------------------------------------- /include/minos/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/hook.h -------------------------------------------------------------------------------- /include/minos/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/init.h -------------------------------------------------------------------------------- /include/minos/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/irq.h -------------------------------------------------------------------------------- /include/minos/kbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/kbuild.h -------------------------------------------------------------------------------- /include/minos/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/list.h -------------------------------------------------------------------------------- /include/minos/math64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/math64.h -------------------------------------------------------------------------------- /include/minos/mbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/mbox.h -------------------------------------------------------------------------------- /include/minos/memattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/memattr.h -------------------------------------------------------------------------------- /include/minos/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/memory.h -------------------------------------------------------------------------------- /include/minos/minos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/minos.h -------------------------------------------------------------------------------- /include/minos/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/mm.h -------------------------------------------------------------------------------- /include/minos/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/mutex.h -------------------------------------------------------------------------------- /include/minos/of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/of.h -------------------------------------------------------------------------------- /include/minos/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/os.h -------------------------------------------------------------------------------- /include/minos/percpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/percpu.h -------------------------------------------------------------------------------- /include/minos/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/platform.h -------------------------------------------------------------------------------- /include/minos/pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/pm.h -------------------------------------------------------------------------------- /include/minos/preempt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/preempt.h -------------------------------------------------------------------------------- /include/minos/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/print.h -------------------------------------------------------------------------------- /include/minos/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/queue.h -------------------------------------------------------------------------------- /include/minos/ramdisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/ramdisk.h -------------------------------------------------------------------------------- /include/minos/raw_spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/raw_spinlock.h -------------------------------------------------------------------------------- /include/minos/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/sched.h -------------------------------------------------------------------------------- /include/minos/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/sem.h -------------------------------------------------------------------------------- /include/minos/shell_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/shell_command.h -------------------------------------------------------------------------------- /include/minos/smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/smp.h -------------------------------------------------------------------------------- /include/minos/softirq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/softirq.h -------------------------------------------------------------------------------- /include/minos/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/spinlock.h -------------------------------------------------------------------------------- /include/minos/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/stdlib.h -------------------------------------------------------------------------------- /include/minos/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/string.h -------------------------------------------------------------------------------- /include/minos/symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/symbol.h -------------------------------------------------------------------------------- /include/minos/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/task.h -------------------------------------------------------------------------------- /include/minos/task_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/task_def.h -------------------------------------------------------------------------------- /include/minos/task_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/task_info.h -------------------------------------------------------------------------------- /include/minos/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/time.h -------------------------------------------------------------------------------- /include/minos/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/timer.h -------------------------------------------------------------------------------- /include/minos/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/tty.h -------------------------------------------------------------------------------- /include/minos/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/types.h -------------------------------------------------------------------------------- /include/minos/varlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/varlist.h -------------------------------------------------------------------------------- /include/minos/vspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/vspace.h -------------------------------------------------------------------------------- /include/minos/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/minos/wait.h -------------------------------------------------------------------------------- /include/virt/hypercall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/virt/hypercall.h -------------------------------------------------------------------------------- /include/virt/iommu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/virt/iommu.h -------------------------------------------------------------------------------- /include/virt/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/virt/os.h -------------------------------------------------------------------------------- /include/virt/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/virt/resource.h -------------------------------------------------------------------------------- /include/virt/vdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/virt/vdev.h -------------------------------------------------------------------------------- /include/virt/virq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/virt/virq.h -------------------------------------------------------------------------------- /include/virt/virq_chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/virt/virq_chip.h -------------------------------------------------------------------------------- /include/virt/virt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/virt/virt.h -------------------------------------------------------------------------------- /include/virt/virtio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/virt/virtio.h -------------------------------------------------------------------------------- /include/virt/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/virt/vm.h -------------------------------------------------------------------------------- /include/virt/vm_mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/virt/vm_mmap.h -------------------------------------------------------------------------------- /include/virt/vm_pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/virt/vm_pm.h -------------------------------------------------------------------------------- /include/virt/vmbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/virt/vmbox.h -------------------------------------------------------------------------------- /include/virt/vmcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/virt/vmcs.h -------------------------------------------------------------------------------- /include/virt/vmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/virt/vmm.h -------------------------------------------------------------------------------- /include/virt/vmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/include/virt/vmodule.h -------------------------------------------------------------------------------- /libs/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/libs/Kconfig -------------------------------------------------------------------------------- /libs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/libs/Makefile -------------------------------------------------------------------------------- /libs/libfdt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/libs/libfdt/Makefile -------------------------------------------------------------------------------- /libs/libfdt/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/libs/libfdt/fdt.c -------------------------------------------------------------------------------- /libs/libfdt/fdt_addresses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/libs/libfdt/fdt_addresses.c -------------------------------------------------------------------------------- /libs/libfdt/fdt_empty_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/libs/libfdt/fdt_empty_tree.c -------------------------------------------------------------------------------- /libs/libfdt/fdt_overlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/libs/libfdt/fdt_overlay.c -------------------------------------------------------------------------------- /libs/libfdt/fdt_ro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/libs/libfdt/fdt_ro.c -------------------------------------------------------------------------------- /libs/libfdt/fdt_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/libs/libfdt/fdt_rw.c -------------------------------------------------------------------------------- /libs/libfdt/fdt_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/libs/libfdt/fdt_strerror.c -------------------------------------------------------------------------------- /libs/libfdt/fdt_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/libs/libfdt/fdt_sw.c -------------------------------------------------------------------------------- /libs/libfdt/fdt_wip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/libs/libfdt/fdt_wip.c -------------------------------------------------------------------------------- /libs/libfdt/libfdt_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/libs/libfdt/libfdt_internal.h -------------------------------------------------------------------------------- /libs/shell_command/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/libs/shell_command/Kconfig -------------------------------------------------------------------------------- /libs/shell_command/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/libs/shell_command/Makefile -------------------------------------------------------------------------------- /libs/shell_command/clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/libs/shell_command/clear.c -------------------------------------------------------------------------------- /libs/shell_command/help_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/libs/shell_command/help_cmd.c -------------------------------------------------------------------------------- /libs/shell_command/shell_command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/libs/shell_command/shell_command.c -------------------------------------------------------------------------------- /libs/shell_command/task_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/libs/shell_command/task_cmd.c -------------------------------------------------------------------------------- /platform/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/platform/Kconfig -------------------------------------------------------------------------------- /platform/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/platform/Makefile -------------------------------------------------------------------------------- /platform/amlogic/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/platform/amlogic/Kconfig -------------------------------------------------------------------------------- /platform/amlogic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/platform/amlogic/Makefile -------------------------------------------------------------------------------- /platform/amlogic/amlogic_smc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/platform/amlogic/amlogic_smc.c -------------------------------------------------------------------------------- /platform/amlogic/kvim3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/platform/amlogic/kvim3.c -------------------------------------------------------------------------------- /platform/espressobin/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/platform/espressobin/Kconfig -------------------------------------------------------------------------------- /platform/espressobin/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += espressobin.o 2 | -------------------------------------------------------------------------------- /platform/espressobin/espressobin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/platform/espressobin/espressobin.c -------------------------------------------------------------------------------- /platform/fvp/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/platform/fvp/Kconfig -------------------------------------------------------------------------------- /platform/fvp/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += fvp.o 2 | -------------------------------------------------------------------------------- /platform/fvp/fvp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/platform/fvp/fvp.c -------------------------------------------------------------------------------- /platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/platform/platform.c -------------------------------------------------------------------------------- /platform/qemu/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/platform/qemu/Kconfig -------------------------------------------------------------------------------- /platform/qemu/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += qemu.o 2 | -------------------------------------------------------------------------------- /platform/qemu/qemu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/platform/qemu/qemu.c -------------------------------------------------------------------------------- /platform/r8a7795/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/platform/r8a7795/Kconfig -------------------------------------------------------------------------------- /platform/r8a7795/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += r8a7795.o 2 | -------------------------------------------------------------------------------- /platform/r8a7795/r8a7795.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/platform/r8a7795/r8a7795.c -------------------------------------------------------------------------------- /platform/raspberry3/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/platform/raspberry3/Kconfig -------------------------------------------------------------------------------- /platform/raspberry3/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += raspberry3.o 2 | -------------------------------------------------------------------------------- /platform/raspberry3/raspberry3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/platform/raspberry3/raspberry3.c -------------------------------------------------------------------------------- /platform/raspberry4/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/platform/raspberry4/Kconfig -------------------------------------------------------------------------------- /platform/raspberry4/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += raspberry4.o 2 | -------------------------------------------------------------------------------- /platform/raspberry4/raspberry4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/platform/raspberry4/raspberry4.c -------------------------------------------------------------------------------- /scripts/Kconfiglib/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/LICENSE.txt -------------------------------------------------------------------------------- /scripts/Kconfiglib/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/MANIFEST.in -------------------------------------------------------------------------------- /scripts/Kconfiglib/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/README.rst -------------------------------------------------------------------------------- /scripts/Kconfiglib/alldefconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/alldefconfig.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/allmodconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/allmodconfig.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/allnoconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/allnoconfig.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/allyesconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/allyesconfig.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/defconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/defconfig.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/examples/Kmenuconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/examples/Kmenuconfig -------------------------------------------------------------------------------- /scripts/Kconfiglib/examples/allnoconfig_walk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/examples/allnoconfig_walk.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/examples/defconfig_oldconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/examples/defconfig_oldconfig.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/examples/dumpvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/examples/dumpvars.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/examples/eval_expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/examples/eval_expr.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/examples/find_symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/examples/find_symbol.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/examples/help_grep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/examples/help_grep.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/examples/kconfiglib.py: -------------------------------------------------------------------------------- 1 | ../kconfiglib.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/examples/list_undefined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/examples/list_undefined.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/examples/menuconfig_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/examples/menuconfig_example.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/examples/merge_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/examples/merge_config.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/examples/print_config_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/examples/print_config_tree.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/examples/print_sym_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/examples/print_sym_info.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/examples/print_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/examples/print_tree.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/genconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/genconfig.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/guiconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/guiconfig.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/kconfiglib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/kconfiglib.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/listnewconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/listnewconfig.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/menuconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/menuconfig.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/oldconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/oldconfig.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/olddefconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/olddefconfig.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/savedefconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/savedefconfig.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/setconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/setconfig.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/setup.cfg -------------------------------------------------------------------------------- /scripts/Kconfiglib/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/setup.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kappend -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kassignable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kassignable -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kchoice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kchoice -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kdefconfig_existent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kdefconfig_existent -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kdefconfig_existent_but_n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kdefconfig_existent_but_n -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kdefconfig_nonexistent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kdefconfig_nonexistent -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kdefconfig_srctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kdefconfig_srctree -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kdepcopy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kdepcopy -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kdeploop0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kdeploop0 -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kdeploop1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kdeploop1 -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kdeploop10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kdeploop10 -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kdeploop2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kdeploop2 -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kdeploop3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kdeploop3 -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kdeploop4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kdeploop4 -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kdeploop5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kdeploop5 -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kdeploop6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kdeploop6 -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kdeploop7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kdeploop7 -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kdeploop8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kdeploop8 -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kdeploop9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kdeploop9 -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kdirdep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kdirdep -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kescape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kescape -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Keval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Keval -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kexpr_items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kexpr_items -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kheader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kheader -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Khelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Khelp -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kifremoval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kifremoval -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kimply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kimply -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kinclude_path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kinclude_path -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kinclude_path_sourced_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kinclude_path_sourced_1 -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kinclude_path_sourced_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kinclude_path_sourced_2 -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kitemlists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kitemlists -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Klocation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Klocation -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Klocation_sourced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Klocation_sourced -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kmainmenu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kmainmenu -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kmenuconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kmenuconfig -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kmisc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kmisc -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kmissingrsource: -------------------------------------------------------------------------------- 1 | rsource "nonexistent" 2 | -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kmissingsource: -------------------------------------------------------------------------------- 1 | source "nonexistent" 2 | -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Korder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Korder -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kpreprocess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kpreprocess -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Krange: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Krange -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Krecursive1: -------------------------------------------------------------------------------- 1 | source "tests/Krecursive2" 2 | -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Krecursive2: -------------------------------------------------------------------------------- 1 | source "tests/Krecursive1" 2 | -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kreferenced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kreferenced -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Krelation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Krelation -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Krepr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Krepr -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kstr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kstr -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kundef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kundef -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kuserfunctions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kuserfunctions -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/Kvisibility: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/Kvisibility -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/config_indented: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/config_indented -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/config_set_bool: -------------------------------------------------------------------------------- 1 | CONFIG_BOOL=y 2 | -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/config_set_string: -------------------------------------------------------------------------------- 1 | CONFIG_STRING="foo bar" 2 | -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/defconfig_1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/defconfig_2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/kconfigfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/kconfigfunctions.py -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/reltest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/reltest -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/sub/Kconfig_symlink_2: -------------------------------------------------------------------------------- 1 | rsource "Kconfig_symlink_3" 2 | -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/sub/Kconfig_symlink_3: -------------------------------------------------------------------------------- 1 | config FOUNDME 2 | bool 3 | -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/sub/Klocation_grsourced1: -------------------------------------------------------------------------------- 1 | config MANY_DEF 2 | -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/sub/Klocation_grsourced2: -------------------------------------------------------------------------------- 1 | config MANY_DEF 2 | -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/sub/Klocation_gsourced1: -------------------------------------------------------------------------------- 1 | config MANY_DEF 2 | -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/sub/Klocation_gsourced2: -------------------------------------------------------------------------------- 1 | config MANY_DEF 2 | -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/sub/Klocation_rsourced: -------------------------------------------------------------------------------- 1 | 2 | config MANY_DEF 3 | -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/sub/defconfig_in_sub: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/sub/sub/Kconfig_symlink_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/tests/sub/sub/Kconfig_symlink_1 -------------------------------------------------------------------------------- /scripts/Kconfiglib/tests/symlink: -------------------------------------------------------------------------------- 1 | sub/sub -------------------------------------------------------------------------------- /scripts/Kconfiglib/testsuite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Kconfiglib/testsuite.py -------------------------------------------------------------------------------- /scripts/Minos.build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Minos.build.mk -------------------------------------------------------------------------------- /scripts/Minos.clean.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Minos.clean.mk -------------------------------------------------------------------------------- /scripts/Minos.config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/Minos.config.mk -------------------------------------------------------------------------------- /scripts/generate_allsymbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/generate_allsymbols.py -------------------------------------------------------------------------------- /scripts/make_ramdisk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/scripts/make_ramdisk.sh -------------------------------------------------------------------------------- /tools/fdt_parse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/fdt_parse/Makefile -------------------------------------------------------------------------------- /tools/fdt_parse/fdt_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/fdt_parse/fdt_parse.c -------------------------------------------------------------------------------- /tools/fdt_parse/libfdt/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/fdt_parse/libfdt/fdt.c -------------------------------------------------------------------------------- /tools/fdt_parse/libfdt/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/fdt_parse/libfdt/fdt.h -------------------------------------------------------------------------------- /tools/fdt_parse/libfdt/fdt_addresses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/fdt_parse/libfdt/fdt_addresses.c -------------------------------------------------------------------------------- /tools/fdt_parse/libfdt/fdt_empty_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/fdt_parse/libfdt/fdt_empty_tree.c -------------------------------------------------------------------------------- /tools/fdt_parse/libfdt/fdt_overlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/fdt_parse/libfdt/fdt_overlay.c -------------------------------------------------------------------------------- /tools/fdt_parse/libfdt/fdt_ro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/fdt_parse/libfdt/fdt_ro.c -------------------------------------------------------------------------------- /tools/fdt_parse/libfdt/fdt_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/fdt_parse/libfdt/fdt_rw.c -------------------------------------------------------------------------------- /tools/fdt_parse/libfdt/fdt_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/fdt_parse/libfdt/fdt_strerror.c -------------------------------------------------------------------------------- /tools/fdt_parse/libfdt/fdt_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/fdt_parse/libfdt/fdt_sw.c -------------------------------------------------------------------------------- /tools/fdt_parse/libfdt/fdt_wip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/fdt_parse/libfdt/fdt_wip.c -------------------------------------------------------------------------------- /tools/fdt_parse/libfdt/libfdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/fdt_parse/libfdt/libfdt.h -------------------------------------------------------------------------------- /tools/fdt_parse/libfdt/libfdt_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/fdt_parse/libfdt/libfdt_env.h -------------------------------------------------------------------------------- /tools/fdt_parse/libfdt/libfdt_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/fdt_parse/libfdt/libfdt_internal.h -------------------------------------------------------------------------------- /tools/fdt_parse/of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/fdt_parse/of.h -------------------------------------------------------------------------------- /tools/mkrmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mkrmd/Makefile -------------------------------------------------------------------------------- /tools/mkrmd/mkrmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mkrmd/mkrmd.c -------------------------------------------------------------------------------- /tools/mvm/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/Android.bp -------------------------------------------------------------------------------- /tools/mvm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/Makefile -------------------------------------------------------------------------------- /tools/mvm/build32.sh: -------------------------------------------------------------------------------- 1 | make ARCH=aarch32 CROSS_COMPILE=armv8l-linux-gnueabihf- 2 | -------------------------------------------------------------------------------- /tools/mvm/devices/block_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/devices/block_if.c -------------------------------------------------------------------------------- /tools/mvm/devices/option_vdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/devices/option_vdev.c -------------------------------------------------------------------------------- /tools/mvm/devices/s3c_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/devices/s3c_uart.c -------------------------------------------------------------------------------- /tools/mvm/devices/vdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/devices/vdev.c -------------------------------------------------------------------------------- /tools/mvm/devices/virtio/virtio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/devices/virtio/virtio.c -------------------------------------------------------------------------------- /tools/mvm/devices/virtio/virtio_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/devices/virtio/virtio_block.c -------------------------------------------------------------------------------- /tools/mvm/devices/virtio/virtio_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/devices/virtio/virtio_console.c -------------------------------------------------------------------------------- /tools/mvm/devices/virtio/virtio_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/devices/virtio/virtio_net.c -------------------------------------------------------------------------------- /tools/mvm/include/libfdt/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/libfdt/fdt.h -------------------------------------------------------------------------------- /tools/mvm/include/libfdt/libfdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/libfdt/libfdt.h -------------------------------------------------------------------------------- /tools/mvm/include/libfdt/libfdt_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/libfdt/libfdt_env.h -------------------------------------------------------------------------------- /tools/mvm/include/minos/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/minos/ahci.h -------------------------------------------------------------------------------- /tools/mvm/include/minos/barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/minos/barrier.h -------------------------------------------------------------------------------- /tools/mvm/include/minos/block_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/minos/block_if.h -------------------------------------------------------------------------------- /tools/mvm/include/minos/bootimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/minos/bootimage.h -------------------------------------------------------------------------------- /tools/mvm/include/minos/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/minos/compiler.h -------------------------------------------------------------------------------- /tools/mvm/include/minos/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/minos/debug.h -------------------------------------------------------------------------------- /tools/mvm/include/minos/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/minos/io.h -------------------------------------------------------------------------------- /tools/mvm/include/minos/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/minos/list.h -------------------------------------------------------------------------------- /tools/mvm/include/minos/mevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/minos/mevent.h -------------------------------------------------------------------------------- /tools/mvm/include/minos/mvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/minos/mvm.h -------------------------------------------------------------------------------- /tools/mvm/include/minos/mvm_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/minos/mvm_queue.h -------------------------------------------------------------------------------- /tools/mvm/include/minos/netmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/minos/netmap.h -------------------------------------------------------------------------------- /tools/mvm/include/minos/netmap_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/minos/netmap_user.h -------------------------------------------------------------------------------- /tools/mvm/include/minos/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/minos/option.h -------------------------------------------------------------------------------- /tools/mvm/include/minos/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/minos/os.h -------------------------------------------------------------------------------- /tools/mvm/include/minos/os_xnu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/minos/os_xnu.h -------------------------------------------------------------------------------- /tools/mvm/include/minos/vdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/minos/vdev.h -------------------------------------------------------------------------------- /tools/mvm/include/minos/virtio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/minos/virtio.h -------------------------------------------------------------------------------- /tools/mvm/include/minos/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/minos/vm.h -------------------------------------------------------------------------------- /tools/mvm/include/minos/vmcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/include/minos/vmcs.h -------------------------------------------------------------------------------- /tools/mvm/libfdt/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/libfdt/fdt.c -------------------------------------------------------------------------------- /tools/mvm/libfdt/fdt_addresses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/libfdt/fdt_addresses.c -------------------------------------------------------------------------------- /tools/mvm/libfdt/fdt_empty_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/libfdt/fdt_empty_tree.c -------------------------------------------------------------------------------- /tools/mvm/libfdt/fdt_overlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/libfdt/fdt_overlay.c -------------------------------------------------------------------------------- /tools/mvm/libfdt/fdt_ro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/libfdt/fdt_ro.c -------------------------------------------------------------------------------- /tools/mvm/libfdt/fdt_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/libfdt/fdt_rw.c -------------------------------------------------------------------------------- /tools/mvm/libfdt/fdt_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/libfdt/fdt_strerror.c -------------------------------------------------------------------------------- /tools/mvm/libfdt/fdt_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/libfdt/fdt_sw.c -------------------------------------------------------------------------------- /tools/mvm/libfdt/fdt_wip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/libfdt/fdt_wip.c -------------------------------------------------------------------------------- /tools/mvm/libfdt/libfdt_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/libfdt/libfdt_internal.h -------------------------------------------------------------------------------- /tools/mvm/main/bootimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/main/bootimage.c -------------------------------------------------------------------------------- /tools/mvm/main/mevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/main/mevent.c -------------------------------------------------------------------------------- /tools/mvm/main/mvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/main/mvm.c -------------------------------------------------------------------------------- /tools/mvm/main/mvm_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/main/mvm_queue.c -------------------------------------------------------------------------------- /tools/mvm/main/option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/main/option.c -------------------------------------------------------------------------------- /tools/mvm/main/option_vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/main/option_vm.c -------------------------------------------------------------------------------- /tools/mvm/os/option_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/os/option_os.c -------------------------------------------------------------------------------- /tools/mvm/os/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/os/os.c -------------------------------------------------------------------------------- /tools/mvm/os/os_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/os/os_linux.c -------------------------------------------------------------------------------- /tools/mvm/os/os_other.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/os/os_other.c -------------------------------------------------------------------------------- /tools/mvm/os/os_xnu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/tools/mvm/os/os_xnu.c -------------------------------------------------------------------------------- /virt/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/Kconfig -------------------------------------------------------------------------------- /virt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/Makefile -------------------------------------------------------------------------------- /virt/debug_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/debug_console.c -------------------------------------------------------------------------------- /virt/hypercall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/hypercall.c -------------------------------------------------------------------------------- /virt/iommu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/iommu.c -------------------------------------------------------------------------------- /virt/os/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/os/Kconfig -------------------------------------------------------------------------------- /virt/os/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/os/Makefile -------------------------------------------------------------------------------- /virt/os/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/os/os.c -------------------------------------------------------------------------------- /virt/os/os_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/os/os_linux.c -------------------------------------------------------------------------------- /virt/os/os_other.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/os/os_other.c -------------------------------------------------------------------------------- /virt/os/os_xnu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/os/os_xnu.c -------------------------------------------------------------------------------- /virt/resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/resource.c -------------------------------------------------------------------------------- /virt/shmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/shmem.c -------------------------------------------------------------------------------- /virt/varm_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/varm_timer.c -------------------------------------------------------------------------------- /virt/vdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/vdev.c -------------------------------------------------------------------------------- /virt/vfault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/vfault.c -------------------------------------------------------------------------------- /virt/virq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/virq.c -------------------------------------------------------------------------------- /virt/virq_chips/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/virq_chips/Kconfig -------------------------------------------------------------------------------- /virt/virq_chips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/virq_chips/Makefile -------------------------------------------------------------------------------- /virt/virq_chips/bcm_virq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/virq_chips/bcm_virq.c -------------------------------------------------------------------------------- /virt/virq_chips/vaic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/virq_chips/vaic.c -------------------------------------------------------------------------------- /virt/virq_chips/vgic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/virq_chips/vgic.c -------------------------------------------------------------------------------- /virt/virq_chips/vgic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/virq_chips/vgic.h -------------------------------------------------------------------------------- /virt/virq_chips/vgicv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/virq_chips/vgicv2.c -------------------------------------------------------------------------------- /virt/virq_chips/vgicv3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/virq_chips/vgicv3.c -------------------------------------------------------------------------------- /virt/virq_chips/virq_chip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/virq_chips/virq_chip.c -------------------------------------------------------------------------------- /virt/virtio_mmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/virtio_mmio.c -------------------------------------------------------------------------------- /virt/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/vm.c -------------------------------------------------------------------------------- /virt/vm_daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/vm_daemon.c -------------------------------------------------------------------------------- /virt/vm_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/vm_pm.c -------------------------------------------------------------------------------- /virt/vmbox/Kconfig: -------------------------------------------------------------------------------- 1 | config VMBOX 2 | def_bool y 3 | -------------------------------------------------------------------------------- /virt/vmbox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/vmbox/Makefile -------------------------------------------------------------------------------- /virt/vmbox/vmbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/vmbox/vmbox.c -------------------------------------------------------------------------------- /virt/vmbox/vmbox_hvc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/vmbox/vmbox_hvc.c -------------------------------------------------------------------------------- /virt/vmcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/vmcs.c -------------------------------------------------------------------------------- /virt/vmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/vmm.c -------------------------------------------------------------------------------- /virt/vmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/vmodule.c -------------------------------------------------------------------------------- /virt/vrtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/vrtc.c -------------------------------------------------------------------------------- /virt/vwdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minosproject/minos/HEAD/virt/vwdt.c --------------------------------------------------------------------------------