diff options
author | Daniel Weipert <code@drogueronin.de> | 2018-09-24 23:23:19 +0200 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2018-09-24 23:23:19 +0200 |
commit | 87293b0a1150b1bc7467f6916419f56f9f2be075 (patch) | |
tree | c254231193037001f6875286d80b13250e47b9f7 /Cargo.toml |
Initial commit
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..f7da070 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "vulkan_os" +version = "0.1.0" +authors = ["Daniel Weipert <code@drogueronin.de>"] + +[package.metadata.bootimage] +default-target = "x86_64-vulkan_os.json" + +[dependencies] +bootloader_precompiled = "0.2.0" + +# steps to create VDI for VirtualBox +# dd if=target/x86_64-vulkan_os/debug/bootimage-vulkan_os.bin of=target/x86_64-vulkan_os/debug/vulkan_os.padded.bin bs=100M conv=sync +# VBoxManage convertdd vulkan_os.padded.bin vulkan_os.vdi --format VDI +# Use as existing disk for VirtualBox => start + +# steps to create VMDK for VirtualBox +# VBoxManage convertfromraw target/x86_64-vulkan_os/debug/bootimage-vulkan_os.bin target/x86_64-vulkan_os/debug/bootimage-vulkan_os.vmdk --format vmdk +# Use as existing disk for VirtualBox => start + +# QEMU on Windows run command +# "F:\Windows\Programme\qemu\qemu-system-x86_64.exe" -drive format=raw,file=E:\dweipert\JetbrainsProjects\IdeaProjects\VulkanOS\target\x86_64-vulkan_os\debug\bootimage-vulkan_os.bin +# "F:\Windows\Programme\qemu\qemu-system-x86_64.exe" -drive format=raw,file=target\x86_64-vulkan_os\debug\bootimage-vulkan_os.bin + |