Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/lkl/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ lib/liblkl.a: $(lib_objs) lib/lkl.o
$(AR) -rc $@ $^

lib/liblkl.so: $(lib_objs) lib/lkl.o
gcc -o $@ -shared $^
$(CC) -o $@ -shared $^

lib/lkl.o:
$(MAKE) -C ../.. ARCH=lkl defconfig
Expand Down
2 changes: 1 addition & 1 deletion tools/lkl/include/lkl.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ int lkl_disk_add(union lkl_disk_backstore backstore);
* @flags - mount flags
* @data - additional filesystem specific mount data
* @mnt_str - a string that will be filled by this function with the path where
* the filisystem has been mounted
* the filesystem has been mounted
* @mnt_str_len - size of mnt_str
* @returns - 0 on success, a negative value on error
*/
Expand Down