Simon Glass | 744d985 | 2011-10-10 08:22:14 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
| 3 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 4 | * Marius Groeger <mgroeger@sysgo.de> |
| 5 | * |
| 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+ |
Simon Glass | 744d985 | 2011-10-10 08:22:14 +0000 | [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 | ******************************************************************** |
| 18 | */ |
| 19 | |
| 20 | #ifndef _U_BOOT_H_ |
| 21 | #define _U_BOOT_H_ 1 |
| 22 | |
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 23 | /* Use the generic board which requires a unified bd_info */ |
| 24 | #include <asm-generic/u-boot.h> |
Simon Glass | 744d985 | 2011-10-10 08:22:14 +0000 | [diff] [blame] | 25 | |
Simon Glass | 65bf1d3 | 2011-10-07 13:53:34 +0000 | [diff] [blame] | 26 | /* For image.h:image_check_target_arch() */ |
| 27 | #define IH_ARCH_DEFAULT IH_ARCH_SANDBOX |
| 28 | |
Simon Glass | 744d985 | 2011-10-10 08:22:14 +0000 | [diff] [blame] | 29 | #endif /* _U_BOOT_H_ */ |