aboutsummaryrefslogtreecommitdiff
path: root/include/linux/libfdt_env.h
AgeCommit message (Collapse)AuthorFilesLines
2015-04-29libfdt: add fdt type definitionsRob Herring1-0/+4
In preparation for libfdt/dtc update, add the new fdt specific types. Signed-off-by: Rob Herring <[email protected]> Cc: Russell King <[email protected]> Cc: Benjamin Herrenschmidt <[email protected]> Cc: Paul Mackerras <[email protected]> Cc: Michael Ellerman <[email protected]> Cc: [email protected] Cc: [email protected]
2012-07-23of/lib: Allow scripts/dtc/libfdt to be used from kernel codeDavid Daney1-0/+13
libfdt is part of the device tree support in scripts/dtc/libfdt. For some platforms that use the Device Tree, we want to be able to edit the flattened device tree form. We don't want to burden kernel builds that do not require it, so we gate compilation of libfdt files with CONFIG_LIBFDT. So if it is needed, you need to do this in your Kconfig: select LIBFDT And in the Makefile of the code using libfdt something like: ccflags-y := -I$(src)/../../../scripts/dtc/libfdt Signed-off-by: David Daney <[email protected]> Cc: [email protected] Cc: [email protected] Cc: Grant Likely <[email protected]> Cc: [email protected] Acked-by: Rob Herring <[email protected]> Signed-off-by: Ralf Baechle <[email protected]>