diff options
author | andrew <andrew@FreeBSD.org> | 2014-12-14 15:33:45 +0000 |
---|---|---|
committer | andrew <andrew@FreeBSD.org> | 2014-12-14 15:33:45 +0000 |
commit | 35401942c2fcf22c7aa91c63263fae53a281f8a9 (patch) | |
tree | 6f87507a62957b0ebebea391d52ab8402440dc9f /sys/boot/uboot/lib/module.c | |
parent | 26961b254735317779a3c1c40e0f41700015ff77 (diff) | |
download | FreeBSD-src-35401942c2fcf22c7aa91c63263fae53a281f8a9.zip FreeBSD-src-35401942c2fcf22c7aa91c63263fae53a281f8a9.tar.gz |
MFC 273927:
Move the definitions of the fdt functions from a uboot header to a new fdt
header. There is nothing in the fdt spec that ties it to U-Boot.
While here sort and fix the signature of fdt_setup_fdtp.
MFC 273934:
Start to allow platforms other than U-Boot to use the FDT code in loader by
moving U-Boot specific code from libfdt.a to a new libuboot_fdt.a. This
needs to be a new library for linking to work correctly.
Differential Revision: https://reviews.freebsd.org/D1054
Reviewed by: ian, rpaulo (earlier version)
Diffstat (limited to 'sys/boot/uboot/lib/module.c')
-rw-r--r-- | sys/boot/uboot/lib/module.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/boot/uboot/lib/module.c b/sys/boot/uboot/lib/module.c index d9b3dc0..ed887b7 100644 --- a/sys/boot/uboot/lib/module.c +++ b/sys/boot/uboot/lib/module.c @@ -34,6 +34,10 @@ __FBSDID("$FreeBSD$"); #include <stand.h> #include <string.h> +#if defined(LOADER_FDT_SUPPORT) +#include <fdt_platform.h> +#endif + #include "bootstrap.h" #include "libuboot.h" |