[PATCH 2/3] libfdt: include fdt_addresses.c

2019-09-11 Thread AKASHI Takahiro
In the implementation of kexec_file_loaded-based kdump for arm64, fdt_appendprop_addrrange() will be needed. So include fdt_addresses.c in making libfdt. Signed-off-by: AKASHI Takahiro Cc: Rob Herring Cc: Frank Rowand --- lib/Makefile| 2 +- lib/fdt_addresses.c | 2 ++ 2 files

[PATCH 1/3] libfdt: define UINT32_MAX in libfdt_env.h

2019-09-11 Thread AKASHI Takahiro
In the implementation of kexec_file_load-based kdump for arm64, fdt_appendprop_addrrange() will be used, but fdt_addresses.c will fail to compile due to missing UINT32_MAX. So just define it in libfdt_env.h. Signed-off-by: AKASHI Takahiro Cc: Rob Herring Cc: Frank Rowand ---

[PATCH 0/3] arm64: kexec_file: add kdump

2019-09-11 Thread AKASHI Takahiro
This is the last piece of my kexec_file_load implementation for arm64. It is now ready for being merged as some relevant patch to dtc/libfdt[1] has finally been integrated in v5.3-rc1. (Nothing changed since kexec_file v16[2] except adding Patch#1 and #2.) Patch#1 and #2 are preliminary patches