summaryrefslogtreecommitdiffstats
path: root/vl.c
diff options
context:
space:
mode:
authorMichael Olbrich2016-10-17 20:22:17 +0200
committerPeter Maydell2016-10-17 20:22:17 +0200
commit4c8afda7d2864023047d466eddd1e8f73a6b072c (patch)
treea78b5dd986e4d9a86094270ecca1469ac5abc649 /vl.c
parentaspeed: add support for the SMC segment registers (diff)
downloadqemu-4c8afda7d2864023047d466eddd1e8f73a6b072c.tar.gz
qemu-4c8afda7d2864023047d466eddd1e8f73a6b072c.tar.xz
qemu-4c8afda7d2864023047d466eddd1e8f73a6b072c.zip
hw/arm/boot: allow using a command line specified dtb without a kernel
When kernel and device tree are specified in the QEMU commandline, then this device tree may be modified e.g. to add virtio_mmio devices. With a bootloader e.g. on a flash device these extra devices are not available. With this change, the device tree can be specified at the QEMU commandline. The modified device tree made available to the bootloader with the same mechanism already supported by device trees fully generated by QEMU. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de> Message-id: 1473520054-402-1-git-send-email-m.olbrich@pengutronix.de Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'vl.c')
-rw-r--r--vl.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/vl.c b/vl.c
index c657acdd3c..2569ec24f8 100644
--- a/vl.c
+++ b/vl.c
@@ -4389,11 +4389,6 @@ int main(int argc, char **argv, char **envp)
exit(1);
}
- if (!linux_boot && qemu_opt_get(machine_opts, "dtb")) {
- error_report("-dtb only allowed with -kernel option");
- exit(1);
- }
-
if (semihosting_enabled() && !semihosting_get_argc() && kernel_filename) {
/* fall back to the -kernel/-append */
semihosting_arg_fallback(kernel_filename, kernel_cmdline);