diff options
author | Lukasz Majewski <lukma@denx.de> | 2019-02-13 22:46:45 +0100 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2019-04-13 20:30:08 +0200 |
commit | 5f1588acc2a2888c7932a7ef2080497cd8174059 (patch) | |
tree | 9014fa75090c8eac8350c29cbe31673a87402db1 /board/phytec/pcm052/pcm052.c | |
parent | fea63a5d7df09968635562959f1fcb403a37d1c5 (diff) |
pcm052: board: vybrid: Update the board name for BK4 device
This commit provides distinction between PCM052 and BK4.
Signed-off-by: Lukasz Majewski <lukma@denx.de>
Diffstat (limited to 'board/phytec/pcm052/pcm052.c')
-rw-r--r-- | board/phytec/pcm052/pcm052.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/board/phytec/pcm052/pcm052.c b/board/phytec/pcm052/pcm052.c index 4e4b870304..5f2c9a9c12 100644 --- a/board/phytec/pcm052/pcm052.c +++ b/board/phytec/pcm052/pcm052.c @@ -573,7 +573,10 @@ int board_init(void) int checkboard(void) { +#ifdef CONFIG_TARGET_BK4R1 + puts("Board: BK4r1 (L333)\n"); +#else puts("Board: PCM-052\n"); - +#endif return 0; } |