diff options
author | Zhihao Cheng <chengzhihao1@huawei.com> | 2024-11-11 16:36:44 +0800 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2024-11-11 10:32:45 +0100 |
commit | 146888d3da3cd1ba39b7805a7686fde6adf7549a (patch) | |
tree | ad813b6e093f4c30ca03356cc7624e2ae9f34d7d /ubifs-utils/Makemodule.am | |
parent | ee8ab98a736c742308b4941f1f897095db77cacc (diff) |
ubifs-utils: Add linux kernel memory allocation implementations
Add linux kernel memory allocation implementations, because there are many
memory allocations(eg. kmalloc, kzalloc) used in UBIFS linux kernel libs.
This is a preparation for replacing implementation of UBIFS utils with
linux kernel libs.
Signed-off-by: Zhihao Cheng <chengzhihao1@huawei.com>
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'ubifs-utils/Makemodule.am')
-rw-r--r-- | ubifs-utils/Makemodule.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ubifs-utils/Makemodule.am b/ubifs-utils/Makemodule.am index 69192ff..13171b7 100644 --- a/ubifs-utils/Makemodule.am +++ b/ubifs-utils/Makemodule.am @@ -2,6 +2,8 @@ common_SOURCES = \ ubifs-utils/common/compiler_attributes.h \ ubifs-utils/common/linux_types.h \ ubifs-utils/common/linux_err.h \ + ubifs-utils/common/kmem.h \ + ubifs-utils/common/kmem.c \ ubifs-utils/common/defs.h \ ubifs-utils/common/crc16.h \ ubifs-utils/common/crc16.c \ |