x86: zimage: Quieten down the zimage boot process
Much of the output is not very useful. The bootm command is quite a bit quieter. Convert some output to use log_debug(). Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Igor Opaniuk <igor.opaniuk@toradex.com>
This commit is contained in:
@@ -212,13 +212,13 @@ struct boot_params *load_zimage(char *image, unsigned long kernel_size,
|
|||||||
|
|
||||||
/* determine size of setup */
|
/* determine size of setup */
|
||||||
if (0 == hdr->setup_sects) {
|
if (0 == hdr->setup_sects) {
|
||||||
printf("Setup Sectors = 0 (defaulting to 4)\n");
|
log_warning("Setup Sectors = 0 (defaulting to 4)\n");
|
||||||
setup_size = 5 * 512;
|
setup_size = 5 * 512;
|
||||||
} else {
|
} else {
|
||||||
setup_size = (hdr->setup_sects + 1) * 512;
|
setup_size = (hdr->setup_sects + 1) * 512;
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("Setup Size = 0x%8.8lx\n", (ulong)setup_size);
|
log_debug("Setup Size = 0x%8.8lx\n", (ulong)setup_size);
|
||||||
|
|
||||||
if (setup_size > SETUP_MAX_SIZE)
|
if (setup_size > SETUP_MAX_SIZE)
|
||||||
printf("Error: Setup is too large (%d bytes)\n", setup_size);
|
printf("Error: Setup is too large (%d bytes)\n", setup_size);
|
||||||
@@ -226,7 +226,7 @@ struct boot_params *load_zimage(char *image, unsigned long kernel_size,
|
|||||||
/* determine boot protocol version */
|
/* determine boot protocol version */
|
||||||
bootproto = get_boot_protocol(hdr, true);
|
bootproto = get_boot_protocol(hdr, true);
|
||||||
|
|
||||||
printf("Using boot protocol version %x.%02x\n",
|
log_debug("Using boot protocol version %x.%02x\n",
|
||||||
(bootproto & 0xff00) >> 8, bootproto & 0xff);
|
(bootproto & 0xff00) >> 8, bootproto & 0xff);
|
||||||
|
|
||||||
version = get_kernel_version(params, image);
|
version = get_kernel_version(params, image);
|
||||||
@@ -420,7 +420,8 @@ static int do_zboot_load(struct cmd_tbl *cmdtp, int flag, int argc,
|
|||||||
struct boot_params *from = (struct boot_params *)state.base_ptr;
|
struct boot_params *from = (struct boot_params *)state.base_ptr;
|
||||||
|
|
||||||
base_ptr = (struct boot_params *)DEFAULT_SETUP_BASE;
|
base_ptr = (struct boot_params *)DEFAULT_SETUP_BASE;
|
||||||
printf("Building boot_params at 0x%8.8lx\n", (ulong)base_ptr);
|
log_debug("Building boot_params at 0x%8.8lx\n",
|
||||||
|
(ulong)base_ptr);
|
||||||
memset(base_ptr, '\0', sizeof(*base_ptr));
|
memset(base_ptr, '\0', sizeof(*base_ptr));
|
||||||
base_ptr->hdr = from->hdr;
|
base_ptr->hdr = from->hdr;
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user