mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
cmd: qfw: rename qemu_fw_cfg.[c|h] to qfw.[c|h]
Make file names consistent with CONFIG_QFW and CONFIG_CMD_QFW Signed-off-by: Miao Yan <yanmiaobest@gmail.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
@@ -11,7 +11,7 @@
|
|||||||
#include <dm.h>
|
#include <dm.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
#include <qemu_fw_cfg.h>
|
#include <qfw.h>
|
||||||
#include <asm/atomic.h>
|
#include <asm/atomic.h>
|
||||||
#include <asm/cpu.h>
|
#include <asm/cpu.h>
|
||||||
#include <asm/interrupt.h>
|
#include <asm/interrupt.h>
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
#include <command.h>
|
#include <command.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
#include <qemu_fw_cfg.h>
|
#include <qfw.h>
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
#include <asm/tables.h>
|
#include <asm/tables.h>
|
||||||
#include <asm/e820.h>
|
#include <asm/e820.h>
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
#include <cpu.h>
|
#include <cpu.h>
|
||||||
#include <dm.h>
|
#include <dm.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <qemu_fw_cfg.h>
|
#include <qfw.h>
|
||||||
#include <asm/cpu.h>
|
#include <asm/cpu.h>
|
||||||
|
|
||||||
DECLARE_GLOBAL_DATA_PTR;
|
DECLARE_GLOBAL_DATA_PTR;
|
||||||
|
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
#include <pci.h>
|
#include <pci.h>
|
||||||
#include <qemu_fw_cfg.h>
|
#include <qfw.h>
|
||||||
#include <asm/irq.h>
|
#include <asm/irq.h>
|
||||||
#include <asm/post.h>
|
#include <asm/post.h>
|
||||||
#include <asm/processor.h>
|
#include <asm/processor.h>
|
||||||
|
@@ -593,7 +593,7 @@ config CMD_SOUND
|
|||||||
sound init - set up sound system
|
sound init - set up sound system
|
||||||
sound play - play a sound
|
sound play - play a sound
|
||||||
|
|
||||||
config CMD_QEMU_FW_CFG
|
config CMD_QFW
|
||||||
bool "qfw"
|
bool "qfw"
|
||||||
depends on X86
|
depends on X86
|
||||||
select QFW
|
select QFW
|
||||||
|
@@ -105,7 +105,7 @@ endif
|
|||||||
obj-y += pcmcia.o
|
obj-y += pcmcia.o
|
||||||
obj-$(CONFIG_CMD_PORTIO) += portio.o
|
obj-$(CONFIG_CMD_PORTIO) += portio.o
|
||||||
obj-$(CONFIG_CMD_PXE) += pxe.o
|
obj-$(CONFIG_CMD_PXE) += pxe.o
|
||||||
obj-$(CONFIG_CMD_QEMU_FW_CFG) += qfw.o
|
obj-$(CONFIG_CMD_QFW) += qfw.o
|
||||||
obj-$(CONFIG_CMD_READ) += read.o
|
obj-$(CONFIG_CMD_READ) += read.o
|
||||||
obj-$(CONFIG_CMD_REGINFO) += reginfo.o
|
obj-$(CONFIG_CMD_REGINFO) += reginfo.o
|
||||||
obj-$(CONFIG_CMD_REISER) += reiser.o
|
obj-$(CONFIG_CMD_REISER) += reiser.o
|
||||||
|
@@ -7,7 +7,7 @@
|
|||||||
#include <common.h>
|
#include <common.h>
|
||||||
#include <command.h>
|
#include <command.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <qemu_fw_cfg.h>
|
#include <qfw.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This function prepares kernel for zboot. It loads kernel data
|
* This function prepares kernel for zboot. It loads kernel data
|
||||||
|
@@ -20,7 +20,7 @@ CONFIG_CMD_DHCP=y
|
|||||||
# CONFIG_CMD_NFS is not set
|
# CONFIG_CMD_NFS is not set
|
||||||
CONFIG_CMD_PING=y
|
CONFIG_CMD_PING=y
|
||||||
CONFIG_CMD_TIME=y
|
CONFIG_CMD_TIME=y
|
||||||
CONFIG_CMD_QEMU_FW_CFG=y
|
CONFIG_CMD_QFW=y
|
||||||
CONFIG_CMD_BOOTSTAGE=y
|
CONFIG_CMD_BOOTSTAGE=y
|
||||||
CONFIG_CMD_EXT2=y
|
CONFIG_CMD_EXT2=y
|
||||||
CONFIG_CMD_EXT4=y
|
CONFIG_CMD_EXT4=y
|
||||||
|
@@ -142,6 +142,6 @@ config QFW
|
|||||||
bool
|
bool
|
||||||
help
|
help
|
||||||
Hidden option to enable QEMU fw_cfg interface. This will be selected by
|
Hidden option to enable QEMU fw_cfg interface. This will be selected by
|
||||||
either CONFIG_CMD_QEMU_FW_CFG or CONFIG_GENERATE_ACPI_TABLE.
|
either CONFIG_CMD_QFW or CONFIG_GENERATE_ACPI_TABLE.
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
@@ -43,4 +43,4 @@ obj-$(CONFIG_PCA9551_LED) += pca9551_led.o
|
|||||||
obj-$(CONFIG_RESET) += reset-uclass.o
|
obj-$(CONFIG_RESET) += reset-uclass.o
|
||||||
obj-$(CONFIG_FSL_DEVICE_DISABLE) += fsl_devdis.o
|
obj-$(CONFIG_FSL_DEVICE_DISABLE) += fsl_devdis.o
|
||||||
obj-$(CONFIG_WINBOND_W83627) += winbond_w83627.o
|
obj-$(CONFIG_WINBOND_W83627) += winbond_w83627.o
|
||||||
obj-$(CONFIG_QFW) += qemu_fw_cfg.o
|
obj-$(CONFIG_QFW) += qfw.o
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
#include <command.h>
|
#include <command.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
#include <qemu_fw_cfg.h>
|
#include <qfw.h>
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
#include <linux/list.h>
|
#include <linux/list.h>
|
||||||
|
|
Reference in New Issue
Block a user