wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
| 3 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 4 | * Marius Groeger <mgroeger@sysgo.de> |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 5 | * |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 6 | * (C) Copyright 2002 |
| 7 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 8 | * Alex Zuepke <azu@sysgo.de> |
| 9 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 10 | * SPDX-License-Identifier: GPL-2.0+ |
Wolfgang Denk | f08abe3 | 2005-11-25 16:38:03 +0100 | [diff] [blame] | 11 | * |
| 12 | ******************************************************************** |
| 13 | * NOTE: This header file defines an interface to U-Boot. Including |
| 14 | * this (unmodified) header file in another file is considered normal |
| 15 | * use of U-Boot, and does *not* fall under the heading of "derived |
| 16 | * work". |
| 17 | ******************************************************************** |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 18 | */ |
| 19 | |
| 20 | #ifndef _U_BOOT_H_ |
| 21 | #define _U_BOOT_H_ 1 |
| 22 | |
Simon Glass | e424c15 | 2013-03-11 07:40:13 +0000 | [diff] [blame] | 23 | /* Use the generic board which requires a unified bd_info */ |
| 24 | #include <asm-generic/u-boot.h> |
Simon Glass | e424c15 | 2013-03-11 07:40:13 +0000 | [diff] [blame] | 25 | |
Mike Frysinger | 476af29 | 2011-10-03 14:50:33 +0000 | [diff] [blame] | 26 | /* For image.h:image_check_target_arch() */ |
| 27 | #define IH_ARCH_DEFAULT IH_ARCH_I386 |
| 28 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 29 | #endif /* _U_BOOT_H_ */ |