summary refs log tree commit diff stats
path: root/gitlab/issues_text/target_missing/host_missing/accel_missing/1360
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-01 21:35:14 +0200
committerChristian Krinitsin <mail@krinitsin.com>2025-06-01 21:35:14 +0200
commit3e4c5a6261770bced301b5e74233e7866166ea5b (patch)
tree9379fddaba693ef8a045da06efee8529baa5f6f4 /gitlab/issues_text/target_missing/host_missing/accel_missing/1360
parente5634e2806195bee44407853c4bf8776f7abfa4f (diff)
downloadqemu-analysis-3e4c5a6261770bced301b5e74233e7866166ea5b.tar.gz
qemu-analysis-3e4c5a6261770bced301b5e74233e7866166ea5b.zip
clean up repository
Diffstat (limited to 'gitlab/issues_text/target_missing/host_missing/accel_missing/1360')
-rw-r--r--gitlab/issues_text/target_missing/host_missing/accel_missing/136019
1 files changed, 0 insertions, 19 deletions
diff --git a/gitlab/issues_text/target_missing/host_missing/accel_missing/1360 b/gitlab/issues_text/target_missing/host_missing/accel_missing/1360
deleted file mode 100644
index 1a5771e75..000000000
--- a/gitlab/issues_text/target_missing/host_missing/accel_missing/1360
+++ /dev/null
@@ -1,19 +0,0 @@
-Starting using WSL fails even if the same image is valid when starting qemu directly from windows
-Description of problem:
-I'm trying to follow a rust tutorial on writing a custom OS in rust. https://os.phil-opp.com/minimal-rust-kernel/
-The problem occurse when trying to run qemu from wsl. If I run qemu from a windows command line everything works as expected. 
-If I run the os calling qemu (installed on windows) from wsl it fails with 
-
-```
-ERROR:../../../block.c:1715:bdrv_open_driver: assertion failed: (is_power_of_2(bs->bl.request_alignment))
-Bail out! ERROR:../../../block.c:1715:bdrv_open_driver: assertion failed: (is_power_of_2(bs->bl.request_alignment))
-```
-
-I also found an old bug report that seemed to be the same issue in the old issue tracker: https://bugs.launchpad.net/qemu/+bug/1893807
-Steps to reproduce:
-1. Sample code can be found at `https://github.com/phil-opp/blog_os` branch: `post-02`
-2. create wsl environment
-3. run `cargo install bootimage` only required on the once to install bootimage
-4. run `cargo build`
-5. run `cargo bootimage` to create the image
-6. `qemu-system-x86_64 -drive format=raw,file=target/x86_64-blog_os/debug/bootimage-blog-os.bin`