Index: src/boot.c --- src/boot.c.orig +++ src/boot.c @@ -909,7 +909,7 @@ boot_cdrom(struct drive_s *drive) { if (! CONFIG_CDROM_BOOT) return; - printf("Booting from DVD/CD...\n"); + dprintf(1, "Booting from DVD/CD...\n"); int status = cdrom_boot(drive); if (status) { @@ -935,7 +935,7 @@ boot_cbfs(struct cbfs_file *file) { if (!CONFIG_COREBOOT_FLASH) return; - printf("Booting from CBFS...\n"); + dprintf(1, "Booting from CBFS...\n"); cbfs_run_payload(file); } @@ -943,7 +943,7 @@ boot_cbfs(struct cbfs_file *file) static void boot_rom(u32 vector) { - printf("Booting from ROM...\n"); + dprintf(1, "Booting from ROM...\n"); struct segoff_s so; so.segoff = vector; call_boot_entry(so, 0); @@ -983,11 +983,11 @@ do_boot(int seq_nr) struct bev_s *ie = &BEV[seq_nr]; switch (ie->type) { case IPL_TYPE_FLOPPY: - printf("Booting from Floppy...\n"); + dprintf(1, "Booting from Floppy...\n"); boot_disk(0x00, CheckFloppySig); break; case IPL_TYPE_HARDDISK: - printf("Booting from Hard Disk...\n"); + dprintf(1, "Booting from Hard Disk...\n"); boot_disk(0x80, 1); break; case IPL_TYPE_CDROM: