diff options
author | Mark Salter <msalter@redhat.com> | 2014-02-04 11:11:10 -0500 |
---|---|---|
committer | Matt Fleming <matt.fleming@intel.com> | 2014-04-30 14:49:37 -0400 |
commit | adaf5687846c25613d58c0a2f5d9e024547cdbec (patch) | |
tree | 28826ee2dd8945ebd05e772f7d17cef7e5cafd55 /lib | |
parent | e33655a386ed3b26ad36fb97a47ebb1c2ca1e928 (diff) |
lib: add fdt_empty_tree.c
CONFIG_LIBFDT support does not include fdt_empty_tree.c which is
needed by arm64 EFI stub. Add it to libfdt_files.
Signed-off-by: Mark Salter <msalter@redhat.com>
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile | 3 | ||||
-rw-r--r-- | lib/fdt_empty_tree.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile index 0cd7b68e1382..74a32dc49a93 100644 --- a/lib/Makefile +++ b/lib/Makefile | |||
@@ -148,7 +148,8 @@ obj-$(CONFIG_GENERIC_NET_UTILS) += net_utils.o | |||
148 | 148 | ||
149 | obj-$(CONFIG_STMP_DEVICE) += stmp_device.o | 149 | obj-$(CONFIG_STMP_DEVICE) += stmp_device.o |
150 | 150 | ||
151 | libfdt_files = fdt.o fdt_ro.o fdt_wip.o fdt_rw.o fdt_sw.o fdt_strerror.o | 151 | libfdt_files = fdt.o fdt_ro.o fdt_wip.o fdt_rw.o fdt_sw.o fdt_strerror.o \ |
152 | fdt_empty_tree.o | ||
152 | $(foreach file, $(libfdt_files), \ | 153 | $(foreach file, $(libfdt_files), \ |
153 | $(eval CFLAGS_$(file) = -I$(src)/../scripts/dtc/libfdt)) | 154 | $(eval CFLAGS_$(file) = -I$(src)/../scripts/dtc/libfdt)) |
154 | lib-$(CONFIG_LIBFDT) += $(libfdt_files) | 155 | lib-$(CONFIG_LIBFDT) += $(libfdt_files) |
diff --git a/lib/fdt_empty_tree.c b/lib/fdt_empty_tree.c new file mode 100644 index 000000000000..5d30c58150ad --- /dev/null +++ b/lib/fdt_empty_tree.c | |||
@@ -0,0 +1,2 @@ | |||
1 | #include <linux/libfdt_env.h> | ||
2 | #include "../scripts/dtc/libfdt/fdt_empty_tree.c" | ||