Skip to content

Instantly share code, notes, and snippets.

@zhuowei
Created March 3, 2016 19:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zhuowei/3df42601be42c7452f7a to your computer and use it in GitHub Desktop.
Save zhuowei/3df42601be42c7452f7a to your computer and use it in GitHub Desktop.
Attempt at booting Windows IoT edition for ARM in QEMU; not working (blackscreening at boot with a KERNEL_SECURITY_CHECK_FAILURE)
#!/bin/sh
# You need QEMU_EFI.fd from http://snapshots.linaro.org/components/kernel/leg-virt-tianocore-edk2-upstream/latest/QEMU-ARM/DEBUG_GCC49/
# and dragon.img from a DragonBoard 410 or by converting the 410 wim image
qemu-system-arm -m 512 -cpu cortex-a15 -M virt -bios fromdragon/arm/QEMU_EFI.fd -serial stdio -drive file=dragon.img,id=hd0,if=none,readonly=on -device virtio-blk-device,drive=hd0 -device VGA
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment