Daniel Hellstrom | 9d7c6b2 | 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 | f7a9817 | 2015-11-21 23:15:07 +0200 | [diff] [blame] | 5 | * (C) Copyright 2007, 2015 |
| 6 | * Daniel Hellstrom, Cobham Gaisler, daniel@gaisler.com. |
Daniel Hellstrom | 9d7c6b2 | 2008-03-28 09:47:00 +0100 | [diff] [blame] | 7 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: GPL-2.0+ |
Daniel Hellstrom | 9d7c6b2 | 2008-03-28 09:47:00 +0100 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #ifndef __U_BOOT_H__ |
| 12 | #define __U_BOOT_H__ |
| 13 | |
Francois Retief | f7a9817 | 2015-11-21 23:15:07 +0200 | [diff] [blame] | 14 | /* Currently, this board information is not passed to |
Daniel Hellstrom | 9d7c6b2 | 2008-03-28 09:47:00 +0100 | [diff] [blame] | 15 | * Linux kernel from U-Boot, but may be passed to other |
Bin Meng | 7557405 | 2016-02-05 19:30:11 -0800 | [diff] [blame] | 16 | * Operating systems. This is because U-Boot emulates |
Daniel Hellstrom | 9d7c6b2 | 2008-03-28 09:47:00 +0100 | [diff] [blame] | 17 | * a SUN PROM loader (from Linux point of view). |
Daniel Hellstrom | 9d7c6b2 | 2008-03-28 09:47:00 +0100 | [diff] [blame] | 18 | */ |
Francois Retief | f7a9817 | 2015-11-21 23:15:07 +0200 | [diff] [blame] | 19 | #include <asm-generic/u-boot.h> |
Francois Retief | e3051d9 | 2015-10-28 14:29:32 +0200 | [diff] [blame] | 20 | |
Mike Frysinger | 5da0bed | 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 | f7a9817 | 2015-11-21 23:15:07 +0200 | [diff] [blame] | 24 | #endif |