search for: 4af037e

Displaying 1 result from an estimated 1 matches for "4af037e".

2013 Nov 19
2
[PATCH] Add filesystem UUID to SYSAPPEND for FAT
...a/core/fs/xfs/xfs.c +++ b/core/fs/xfs/xfs.c @@ -428,4 +428,5 @@ const struct fs_ops xfs_fs_ops = { .iget = xfs_iget, .next_extent = xfs_next_extent, .readlink = xfs_readlink, + .fs_uuid = NULL, }; diff --git a/core/include/core.h b/core/include/core.h index 127ac65..4af037e 100644 --- a/core/include/core.h +++ b/core/include/core.h @@ -81,6 +81,7 @@ extern void print_sysappend(void); extern const char *sysappend_strings[SYSAPPEND_MAX]; extern uint32_t SysAppends; extern void sysappend_set_uuid(const uint8_t *uuid); +extern void sysappend_set_fs_uuid(void); void...