64MB
Target image profile
Cross-Domain Virtualizer
A Dust-native operating system stack spanning xdv-boot, xdv-kernel, xdv-runtime, xdv-shell, and xdv-xdvfs.
Target image profile
boot.bin and kernel.bin
Operational now, Q/Phi hardware-gated
Current boot policy is strict: stage-0 transports to boot.bin only;
boot.bin then resolves and transfers control to
/console/kernel.bin from xdvfs.
xdv-os/src/boot_sector.asm enters from MBR and loads boot.bin.
xdv-boot executes splash flow, firmware path recognition (MBR/UEFI), and xdvfs mount policy.
Loader resolves xdvfs:/console/kernel.bin and loads the kernel image.
XdvKernel::kernel_start() initializes runtime and enters kernel main loop.
xdv-runtime starts userspace; xdv-shell provides the interactive #: prompt.
Integration workspace that composes the boot contract and emits partitioned 64MB images.
xdv-os-mbr-64m.img (BIOS/MBR)xdv-os-uefi-64m.img (UEFI/GPT)xdv-os.img alias to MBR imageBoot loader profile with BIOS and UEFI path models and xdvfs-based kernel load policy.
boot_loader_profile.dsboot_mbr.ds and boot_uefi.dsboot_xdvfs_mount.ds, boot_kernel_load.dsSectorized kernel with 13 subsystems including memory, CPU, DAL, CDS, security, and trace layers.
100Userspace runtime services: process, memory, I/O, scheduler, filesystem, and shell bootstrap bridge.
runtime_bridge.dsruntime_memory.ds, runtime_process.dsruntime_console.ds, runtime_fs.dsInteractive command shell with lexer/parser/executor pipeline and builtin command set.
#:cd ls cat mkdir rm echo ps help exitNative filesystem stack and block-device contracts for ATA/AHCI, NVMe, USB MSC, and VirtIO.
xdv-xdvfs-utilsXDV image generation uses a partition-aware xdvfs layout for deterministic boot and preload behavior.
2048832128xdv-osxdv-core / xdv-runtime-utilsxdv-edxxdv-shellcd xdv-os\src
build.bat
cd xdv-os/src
./build.sh
powershell -NoProfile -ExecutionPolicy Bypass -File xdv-os/scripts/clean_xdv_os.ps1 -Apply
VirtualBox workflow: attach xdv-os-mbr-64m.img (or xdv-os.img) for BIOS,
or enable EFI and attach xdv-os-uefi-64m.img.