Daniel Hellstrom | c2f02da | 2008-03-28 09:47:00 +0100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2000 - 2002 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Francois Retief | 7a4fb11 | 2015-11-21 23:15:07 +0200 | [diff] [blame] | 5 | * (C) Copyright 2007, 2015 |
| 6 | * Daniel Hellstrom, Cobham Gaisler, daniel@gaisler.com. |
Daniel Hellstrom | c2f02da | 2008-03-28 09:47:00 +0100 | [diff] [blame] | 7 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
Daniel Hellstrom | c2f02da | 2008-03-28 09:47:00 +0100 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #ifndef __U_BOOT_H__ |
| 12 | #define __U_BOOT_H__ |
| 13 | |
Francois Retief | 7a4fb11 | 2015-11-21 23:15:07 +0200 | [diff] [blame] | 14 | /* Currently, this board information is not passed to |
Daniel Hellstrom | c2f02da | 2008-03-28 09:47:00 +0100 | [diff] [blame] | 15 | * Linux kernel from U-Boot, but may be passed to other |
| 16 | * Operating systems. This is because U-boot emulates |
| 17 | * a SUN PROM loader (from Linux point of view). |
Daniel Hellstrom | c2f02da | 2008-03-28 09:47:00 +0100 | [diff] [blame] | 18 | */ |
Francois Retief | 7a4fb11 | 2015-11-21 23:15:07 +0200 | [diff] [blame] | 19 | #include <asm-generic/u-boot.h> |
Francois Retief | e17c520 | 2015-10-28 14:29:32 +0200 | [diff] [blame] | 20 | |
Mike Frysinger | 476af29 | 2011-10-03 14:50:33 +0000 | [diff] [blame] | 21 | /* For image.h:image_check_target_arch() */ |
| 22 | #define IH_ARCH_DEFAULT IH_ARCH_SPARC |
| 23 | |
Francois Retief | 7a4fb11 | 2015-11-21 23:15:07 +0200 | [diff] [blame] | 24 | #endif |