From b92b89ab927650235e907733b2b81e7bf3a72564 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Sat, 30 Mar 2019 10:19:00 +0100 Subject: [PATCH] bios/main: print boot sequence only if sdr_ok --- litex/soc/software/bios/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litex/soc/software/bios/main.c b/litex/soc/software/bios/main.c index 5560444e..71b03a3e 100644 --- a/litex/soc/software/bios/main.c +++ b/litex/soc/software/bios/main.c @@ -443,10 +443,10 @@ int main(int i, char **c) printf("Memory initialization failed\n"); printf("\n"); - printf("--========== \e[1mBoot sequence\e[0m =============--\n"); if(sdr_ok) + printf("--========== \e[1mBoot sequence\e[0m =============--\n"); boot_sequence(); - printf("\n"); + printf("\n"); printf("--============= \e[1mConsole\e[0m ================--\n"); while(1) { -- 2.30.2