42409146f2
Since libfdt support overlay application on FDT blobs, provide a command line tool that applies an arbitrary number of overlays, one after another to a base fdt blob and output the result in the given file. Signed-off-by: Pantelis Antoniou <pantelis.antoniou@konsulko.com> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
30 lines
455 B
Makefile
30 lines
455 B
Makefile
#
|
|
# This is not a complete Makefile of itself. Instead, it is designed to
|
|
# be easily embeddable into other systems of Makefiles.
|
|
#
|
|
|
|
FDTDUMP_SRCS = \
|
|
fdtdump.c \
|
|
util.c
|
|
|
|
FDTDUMP_OBJS = $(FDTDUMP_SRCS:%.c=%.o)
|
|
|
|
|
|
FDTGET_SRCS = \
|
|
fdtget.c \
|
|
util.c
|
|
|
|
FDTGET_OBJS = $(FDTGET_SRCS:%.c=%.o)
|
|
|
|
|
|
FDTPUT_SRCS = \
|
|
fdtput.c \
|
|
util.c
|
|
|
|
FDTPUT_OBJS = $(FDTPUT_SRCS:%.c=%.o)
|
|
|
|
FDTOVERLAY_SRCS = \
|
|
fdtoverlay.c \
|
|
util.c
|
|
|
|
FDTOVERLAY_OBJS = $(FDTOVERLAY_SRCS:%.c=%.o)
|