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.
38 lines
628 B
38 lines
628 B
/*
|
|
* libfdt - Flat Device Tree manipulation
|
|
* Copyright (C) 2012 David Gibson, IBM Corporation.
|
|
* SPDX-License-Identifier: GPL-2.0+ BSD-2-Clause
|
|
*/
|
|
#include "libfdt_env.h"
|
|
|
|
#include <fdt.h>
|
|
#include <libfdt.h>
|
|
|
|
#include "libfdt_internal.h"
|
|
|
|
int fdt_create_empty_tree(void *buf, int bufsize)
|
|
{
|
|
int err;
|
|
|
|
err = fdt_create(buf, bufsize);
|
|
if (err)
|
|
return err;
|
|
|
|
err = fdt_finish_reservemap(buf);
|
|
if (err)
|
|
return err;
|
|
|
|
err = fdt_begin_node(buf, "");
|
|
if (err)
|
|
return err;
|
|
|
|
err = fdt_end_node(buf);
|
|
if (err)
|
|
return err;
|
|
|
|
err = fdt_finish(buf);
|
|
if (err)
|
|
return err;
|
|
|
|
return fdt_open_into(buf, buf, bufsize);
|
|
}
|
|
|