From 7dea9afd7dd0ee4f909dc3ada6120387e6f1c7e8 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Fri, 11 Oct 2019 08:38:12 +0200 Subject: [PATCH] software/bios: simplify banners --- litex/soc/software/bios/boot.c | 2 +- litex/soc/software/bios/main.c | 6 +++--- litex/soc/software/libnet/microudp.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/litex/soc/software/bios/boot.c b/litex/soc/software/bios/boot.c index 559c495b..af05c3c1 100644 --- a/litex/soc/software/bios/boot.c +++ b/litex/soc/software/bios/boot.c @@ -30,7 +30,7 @@ extern void boot_helper(unsigned long r1, unsigned long r2, unsigned long r3, un static void __attribute__((noreturn)) boot(unsigned long r1, unsigned long r2, unsigned long r3, unsigned long addr) { - printf("Executing booted program at 0x%08x\n", addr); + printf("Executing booted program at 0x%08x\n\n", addr); printf("--============= \e[1mLiftoff!\e[0m ===============--\n"); uart_sync(); irq_setmask(0); diff --git a/litex/soc/software/bios/main.c b/litex/soc/software/bios/main.c index 2fa094ac..9d47011b 100644 --- a/litex/soc/software/bios/main.c +++ b/litex/soc/software/bios/main.c @@ -566,7 +566,7 @@ int main(int i, char **c) printf(" Migen git sha1: "MIGEN_GIT_SHA1"\n"); printf(" LiteX git sha1: "LITEX_GIT_SHA1"\n"); printf("\n"); - printf("--============ \e[1mSoC info\e[0m ================--\n"); + printf("--=============== \e[1mSoC\e[0m ==================--\n"); printf("\e[1mCPU\e[0m: "); #ifdef __lm32__ printf("LM32"); @@ -596,7 +596,7 @@ int main(int i, char **c) sdr_ok = 1; #if defined(CSR_ETHMAC_BASE) || defined(CSR_SDRAM_BASE) - printf("--========= \e[1mPeripherals init\e[0m ===========--\n"); + printf("--========== \e[1mInitialization\e[0m ============--\n"); #ifdef CSR_ETHMAC_BASE eth_init(); #endif @@ -613,7 +613,7 @@ int main(int i, char **c) #endif if(sdr_ok) { - printf("--========== \e[1mBoot sequence\e[0m =============--\n"); + printf("--============== \e[1mBoot\e[0m ==================--\n"); boot_sequence(); printf("\n"); } diff --git a/litex/soc/software/libnet/microudp.c b/litex/soc/software/libnet/microudp.c index cb4013df..5d40e7f0 100644 --- a/litex/soc/software/libnet/microudp.c +++ b/litex/soc/software/libnet/microudp.c @@ -460,7 +460,7 @@ static void busy_wait(unsigned int ds) void eth_init(void) { - printf("Ethernet init..."); + printf("Ethernet init...\n"); #ifdef CSR_ETHPHY_CRG_RESET_ADDR ethphy_crg_reset_write(1); busy_wait(2); -- 2.30.2