Changeset 9644c69 in mainline


Ignore:
Timestamp:
2010-05-14T19:30:15Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f173404
Parents:
ba4a63b8
Message:

Do not print the warning if the compatible property does read as 'sun4u'.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/sparc64/src/main.c

    rba4a63b8 r9644c69  
    101101                 * an unknown value of the "compatible" property is encountered.
    102102                 */
    103                 printf("Warning: Unknown architecture, assuming sun4u.\n");
     103                if (str_cmp(compatible, "sun4u") != 0)
     104                        printf("Warning: Unknown architecture, assuming sun4u.\n");
    104105                arch = ARCH_SUN4U;
    105106        } else
Note: See TracChangeset for help on using the changeset viewer.