upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
406 B
16 lines
406 B
#ifndef _LIBFDT_ENV_H
|
|
#define _LIBFDT_ENV_H
|
|
|
|
#include <stddef.h>
|
|
#include <linux/types.h>
|
|
#include <asm/byteorder.h>
|
|
#include <linux/string.h>
|
|
|
|
struct fdt_header *fdt; /* Pointer to the working fdt */
|
|
|
|
#define fdt32_to_cpu(x) __be32_to_cpu(x)
|
|
#define cpu_to_fdt32(x) __cpu_to_be32(x)
|
|
#define fdt64_to_cpu(x) __be64_to_cpu(x)
|
|
#define cpu_to_fdt64(x) __cpu_to_be64(x)
|
|
|
|
#endif /* _LIBFDT_ENV_H */
|
|
|