diff options
| author | Valentin Longchamp <valentin.longchamp@keymile.com> | 2011-09-02 04:59:03 +0000 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-10-05 22:03:10 +0200 | 
| commit | ea3681a6e4f8367354092ff55b74441007319aad (patch) | |
| tree | 90c6da20f27babdda66490ebf63b6ef1d084d2cc /arch/arm/lib/board.c | |
| parent | 9558b48af006a34d3ab7f0bd13a76b97acd45e47 (diff) | |
| download | olio-uboot-2014.01-ea3681a6e4f8367354092ff55b74441007319aad.tar.xz olio-uboot-2014.01-ea3681a6e4f8367354092ff55b74441007319aad.zip | |
POST/arm: adaptations needed for POST on ARM to work
For post to run on ARM, 3 things are needed:
- post_log_word to be defined in gd
- a post.h include in arch/arm/lib/board.c
Signed-off-by: Valentin Longchamp <valentin.longchamp@keymile.com>
Signed-off-by: Holger Brunck <holger.brunck@keymile.com>
Cc: Mike Frysinger <vapier@gentoo.org>
Acked-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/arm/lib/board.c')
| -rw-r--r-- | arch/arm/lib/board.c | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c index 85320bc19..0efea66ba 100644 --- a/arch/arm/lib/board.c +++ b/arch/arm/lib/board.c @@ -48,6 +48,8 @@  #include <nand.h>  #include <onenand_uboot.h>  #include <mmc.h> +#include <post.h> +#include <logbuff.h>  #ifdef CONFIG_BITBANGMII  #include <miiphy.h> |