replace 8devices/Caraboot version string with sysmocom

This commit is contained in:
Alexander Couzens 2015-04-04 17:30:14 +02:00
parent 38ad77b802
commit d6651043e2
1 changed files with 2 additions and 5 deletions

View File

@ -458,16 +458,13 @@ long int initdram(int board_type)
#ifdef COMPRESSED_UBOOT #ifdef COMPRESSED_UBOOT
int checkboard (char *board_string) int checkboard (char *board_string)
{ {
strcpy(board_string, "Caraboot "CARABOOT_RELEASE" (AR9331) U-boot"); strcpy(board_string, "sysmocom "CARABOOT_RELEASE" (AR9331) U-boot");
return 0; return 0;
} }
#else #else
int checkboard (void) int checkboard (void)
{ {
printf("=====================================\n"); printf("sysmcom "CARABOOT_RELEASE" (AR9331) U-boot\n");
printf("Caraboot "CARABOOT_RELEASE" (AR9331) U-boot\n");
printf("http://www.8devices.com/\n");
printf("-------------------------------------\n");
return 0; return 0;
} }
#endif /* #ifdef COMPRESSED_UBOOT */ #endif /* #ifdef COMPRESSED_UBOOT */