2008-03-28 08:47:00 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2000 - 2002
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*
|
2015-11-21 21:15:07 +00:00
|
|
|
* (C) Copyright 2007, 2015
|
|
|
|
* Daniel Hellstrom, Cobham Gaisler, daniel@gaisler.com.
|
2008-03-28 08:47:00 +00:00
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2008-03-28 08:47:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __U_BOOT_H__
|
|
|
|
#define __U_BOOT_H__
|
|
|
|
|
2015-11-21 21:15:07 +00:00
|
|
|
/* Currently, this board information is not passed to
|
2008-03-28 08:47:00 +00:00
|
|
|
* Linux kernel from U-Boot, but may be passed to other
|
2016-02-06 03:30:11 +00:00
|
|
|
* Operating systems. This is because U-Boot emulates
|
2008-03-28 08:47:00 +00:00
|
|
|
* a SUN PROM loader (from Linux point of view).
|
|
|
|
*/
|
2015-11-21 21:15:07 +00:00
|
|
|
#include <asm-generic/u-boot.h>
|
2015-10-28 12:29:32 +00:00
|
|
|
|
2011-10-03 14:50:33 +00:00
|
|
|
/* For image.h:image_check_target_arch() */
|
|
|
|
#define IH_ARCH_DEFAULT IH_ARCH_SPARC
|
|
|
|
|
2015-11-21 21:15:07 +00:00
|
|
|
#endif
|