This website requires JavaScript.
Explore
Help
Register
Sign In
mirrors
/
u-boot
Watch
0
Star
0
Fork
0
You've already forked u-boot
mirror of
https://github.com/u-boot/u-boot.git
synced
2024-12-05 02:23:31 +08:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
3195840c94
u-boot
/
lib
/
libfdt
/
fdt_ro.c
3 lines
75 B
C
Raw
Normal View
History
Unescape
Escape
libfdt: move headers to <linux/libfdt.h> and <linux/libfdt_env.h> Thomas reported U-Boot failed to build host tools if libfdt-devel package is installed because tools include libfdt headers from /usr/include/ instead of using internal ones. This commit moves the header code: include/libfdt.h -> include/linux/libfdt.h include/libfdt_env.h -> include/linux/libfdt_env.h and replaces include directives: #include <libfdt.h> -> #include <linux/libfdt.h> #include <libfdt_env.h> -> #include <linux/libfdt_env.h> Reported-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2018-03-05 00:20:11 +08:00
#
include
<linux/libfdt_env.h>
libfdt: migrate fdt_ro.c to a wrapper of scripts/dtc/libfdt/fdt_ro.c There is no essential difference between scripts/dtc/libfdt/fdt_ro.c and lib/libfdt/fdt_ro.c Migrate to a simple wrapper like the other files. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
2020-04-16 17:30:16 +08:00
#
include
"../../scripts/dtc/libfdt/fdt_ro.c"
Reference in New Issue
Copy Permalink