
The following error is observed on QEMU x86.
=> print ipaddr ipaddr=192.168.178.66 => ping 192.168.178.1 *** ERROR: `ipaddr' not set ping failed; host 192.168.178.1 is not alive
The issue was introduced in commit fd30563. Adding CMD_NET to defconfig resolves this. Also reorder the config options to match the order in Kconfig.
Signed-off-by: Bin Meng bmeng.cn@gmail.com ---
configs/qemu-x86_defconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configs/qemu-x86_defconfig b/configs/qemu-x86_defconfig index a5251b5..07b5176 100644 --- a/configs/qemu-x86_defconfig +++ b/configs/qemu-x86_defconfig @@ -1,9 +1,9 @@ CONFIG_X86=y CONFIG_VENDOR_EMULATION=y CONFIG_TARGET_QEMU_X86=y +CONFIG_GENERATE_PIRQ_TABLE=y +CONFIG_CMD_NET=y CONFIG_OF_CONTROL=y -CONFIG_OF_SEPARATE=y CONFIG_VIDEO_VESA=y CONFIG_FRAMEBUFFER_SET_VESA_MODE=y CONFIG_FRAMEBUFFER_VESA_MODE_111=y -CONFIG_GENERATE_PIRQ_TABLE=y