software/bios: simplify banners
authorFlorent Kermarrec <florent@enjoy-digital.fr>
Fri, 11 Oct 2019 06:38:12 +0000 (08:38 +0200)
committerFlorent Kermarrec <florent@enjoy-digital.fr>
Fri, 11 Oct 2019 06:38:12 +0000 (08:38 +0200)
litex/soc/software/bios/boot.c
litex/soc/software/bios/main.c
litex/soc/software/libnet/microudp.c

index 559c495b75dcf043153a71ab4e6c9bc90b1465f8..af05c3c1de58322d040ed784a99549f58c61e0eb 100644 (file)
@@ -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);
index 2fa094acf0f12178347f08f21d88faad495b709b..9d47011b95e5875b814e0743bc6c75a434b7fc9c 100644 (file)
@@ -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");
        }
index cb4013df20b9bd9535d055a507dc3eb878d1b63c..5d40e7f073008ee947cc9c8d045b5a48285ae3fa 100644 (file)
@@ -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);