Re: [U-Boot] [PATCH v4 7/8] x86: qemu: adjust ramdisk load address

2016-01-03 Thread Bin Meng
Hi Miao, On Thu, Dec 31, 2015 at 10:55 AM, Miao Yan wrote: > By default, ramdisk load address is defined to 0200 in > env string. When loading bzImage to 10 (default address), there's The default load address is 100 (16MB). See CONFIG_LOADADDR in x86-common.h

[U-Boot] [PATCH v4 7/8] x86: qemu: adjust ramdisk load address

2015-12-30 Thread Miao Yan
By default, ramdisk load address is defined to 0200 in env string. When loading bzImage to 10 (default address), there's a chance that the ramdisk header would be overwritten by the kernel. Thus increase the gap and make ramdisk load at 0400 by default. Signed-off-by: Miao Yan

Re: [U-Boot] [PATCH v4 7/8] x86: qemu: adjust ramdisk load address

2015-12-30 Thread Simon Glass
Hi Miao, On 30 December 2015 at 19:55, Miao Yan wrote: > By default, ramdisk load address is defined to 0200 in > env string. When loading bzImage to 10 (default address), there's > a chance that the ramdisk header would be overwritten by > the kernel. Thus