summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2022-04-11 15:59:45 -0400
committerTom Rini <[email protected]>2022-04-11 15:59:45 -0400
commit7486c2ef9d296ad34be1567b8d26f978e683bece (patch)
treeea1d936131f54e322db5e52f1299fc0e9db29852 /tools
parent1583c87b1b813a04c95732ae8075d79b14a26eea (diff)
parentc3322a53f34f986ad9818df72707ebb59c9c8725 (diff)
Merge branch '2022-04-11-assorted-updates'
- Assorted fixes/updates including K3-J721s2 timer dts fix, assorted crypto improvements, led-pwm driver, improve handling of mtd partitions, align mkimage hash output buffers and backport a UBIFS bugfix from Linux.
Diffstat (limited to 'tools')
-rw-r--r--tools/mkimage.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/mkimage.h b/tools/mkimage.h
index 0d3148444c3..7652c8b001c 100644
--- a/tools/mkimage.h
+++ b/tools/mkimage.h
@@ -41,6 +41,9 @@ static inline ulong map_to_sysmem(void *ptr)
return (ulong)(uintptr_t)ptr;
}
+#define ARCH_DMA_MINALIGN 1
+#define DEFINE_ALIGN_BUFFER(type, name, size, alugn) type name[size]
+
#define MKIMAGE_TMPFILE_SUFFIX ".tmp"
#define MKIMAGE_MAX_TMPFILE_LEN 256
#define MKIMAGE_DEFAULT_DTC_OPTIONS "-I dts -O dtb -p 500"