blob: 4c4527eb38cdc45e23472c0e25b8e39b5964021a [file] [log] [blame]
wdenk2262cfe2002-11-18 00:14:45 +00001/*
2 * (C) Copyright 2002
3 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
4 * Marius Groeger <mgroeger@sysgo.de>
wdenk8bde7f72003-06-27 21:31:46 +00005 *
wdenk2262cfe2002-11-18 00:14:45 +00006 * (C) Copyright 2002
7 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8 * Alex Zuepke <azu@sysgo.de>
9 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020010 * SPDX-License-Identifier: GPL-2.0+
Wolfgang Denkf08abe32005-11-25 16:38:03 +010011 *
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 ********************************************************************
wdenk2262cfe2002-11-18 00:14:45 +000018 */
19
20#ifndef _U_BOOT_H_
21#define _U_BOOT_H_ 1
22
Simon Glasse424c152013-03-11 07:40:13 +000023/* Use the generic board which requires a unified bd_info */
24#include <asm-generic/u-boot.h>
Simon Glass6862b502017-05-17 08:22:49 -060025#include <asm/u-boot-x86.h>
Simon Glasse424c152013-03-11 07:40:13 +000026
Mike Frysinger476af292011-10-03 14:50:33 +000027/* For image.h:image_check_target_arch() */
28#define IH_ARCH_DEFAULT IH_ARCH_I386
29
wdenk2262cfe2002-11-18 00:14:45 +000030#endif /* _U_BOOT_H_ */