]> git.ipfire.org Git - people/ms/u-boot.git/commit - configs/qemu-x86_defconfig
x86: Support QEMU x86 targets
authorBin Meng <bmeng.cn@gmail.com>
Thu, 7 May 2015 13:34:08 +0000 (21:34 +0800)
committerSimon Glass <sjg@chromium.org>
Thu, 4 Jun 2015 08:39:38 +0000 (02:39 -0600)
commita65b25d148fb0a9ef7dd5fba4ae2709f5bcae0c6
treeddbf28ac4f0a34f5c8b62b80f59a0a93db645a01
parent238fe16c40f640e5b78828b21990a0565f408813
x86: Support QEMU x86 targets

This commit introduces the initial U-Boot support for QEMU x86 targets.
U-Boot can boot from coreboot as a payload, or directly without coreboot.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
Tested-by: Simon Glass <sjg@chromium.org>
Merged in patch 'x86: qemu: Add CMD_NET to qemu-x86_defconfig
   https://patchwork.ozlabs.org/patch/479745/
20 files changed:
arch/x86/Kconfig
arch/x86/cpu/Makefile
arch/x86/cpu/qemu/Kconfig [new file with mode: 0644]
arch/x86/cpu/qemu/Makefile [new file with mode: 0644]
arch/x86/cpu/qemu/car.S [new file with mode: 0644]
arch/x86/cpu/qemu/dram.c [new file with mode: 0644]
arch/x86/cpu/qemu/pci.c [new file with mode: 0644]
arch/x86/cpu/qemu/qemu.c [new file with mode: 0644]
arch/x86/dts/Makefile
arch/x86/dts/qemu-x86.dts [new file with mode: 0644]
arch/x86/include/asm/arch-qemu/gpio.h [new file with mode: 0644]
arch/x86/include/asm/arch-qemu/qemu.h [new file with mode: 0644]
board/emulation/Kconfig [new file with mode: 0644]
board/emulation/qemu-x86/Kconfig [new file with mode: 0644]
board/emulation/qemu-x86/MAINTAINERS [new file with mode: 0644]
board/emulation/qemu-x86/Makefile [new file with mode: 0644]
board/emulation/qemu-x86/qemu-x86.c [new file with mode: 0644]
board/emulation/qemu-x86/start.S [new file with mode: 0644]
configs/qemu-x86_defconfig [new file with mode: 0644]
include/configs/qemu-x86.h [new file with mode: 0644]