[U-Boot] [PATCH 05/12] x86: qemu: split qfw command interface and qfw core
Bin Meng
bmeng.cn at gmail.com
Mon May 16 10:47:47 CEST 2016
Hi Miao,
On Fri, May 13, 2016 at 2:29 PM, Miao Yan <yanmiaobest at gmail.com> wrote:
> This patch splits qfw command interface and qfw core function into two
> files, and introduces a new Kconfig option (CONFIG_QFW). for
> qfw core.
>
> Now when qfw command interface is enabled, it will automatically select
> qfw core. This patch also makes the ACPI table generation select
> CONFIG_QFW.
>
> Signed-off-by: Miao Yan <yanmiaobest at gmail.com>
> ---
> arch/x86/Kconfig | 2 +-
> arch/x86/cpu/mp_init.c | 6 +-
> arch/x86/cpu/qemu/Makefile | 3 +-
> arch/x86/cpu/qemu/acpi_table.c | 2 +
> arch/x86/cpu/qemu/qemu.c | 4 +
> cmd/Kconfig | 1 +
> cmd/Makefile | 2 +-
> cmd/cmd_qfw.c | 182 +++++++++++++++++++++
The file name should be qfw.c without cmd_
> cmd/qemu_fw_cfg.c | 353 -----------------------------------------
And I suspect you can also use "git mv" for cmd/qemu_fw_cfg.c. "git mv
cmd/qemu_fw_cfg.c cmd/qfw.c"
> common/Kconfig | 1 +
> drivers/misc/Kconfig | 6 +
> drivers/misc/Makefile | 1 +
> drivers/misc/qemu_fw_cfg.c | 185 +++++++++++++++++++++
> 13 files changed, 390 insertions(+), 358 deletions(-)
> create mode 100644 cmd/cmd_qfw.c
> delete mode 100644 cmd/qemu_fw_cfg.c
> create mode 100644 drivers/misc/qemu_fw_cfg.c
>
Regards,
Bin
More information about the U-Boot
mailing list