Displaying 2 results from an estimated 2 matches for "sysappend_set_fs_uuid".
2013 Nov 19
2
[PATCH] Add filesystem UUID to SYSAPPEND for FAT
...fs_ops->fs_uuid(this_fs);
+}
+
/*
* it will do:
* initialize the memory management function;
@@ -440,4 +448,8 @@ void fs_init(const struct fs_ops **ops, void *priv)
SectorShift = fs.sector_shift;
SectorSize = fs.sector_size;
+
+ /* Add FSUUID=... string to cmdline */
+ sysappend_set_fs_uuid();
+
}
diff --git a/core/fs/iso9660/iso9660.c b/core/fs/iso9660/iso9660.c
index fe58a5b..4756cf7 100644
--- a/core/fs/iso9660/iso9660.c
+++ b/core/fs/iso9660/iso9660.c
@@ -299,4 +299,5 @@ const struct fs_ops iso_fs_ops = {
.iget = iso_iget,
.readdir = iso_readdir,
.ne...
2015 Jul 03
4
boot... round 2
Hi,
Adam Williamson
> I think it would be better if someone else confirms there's actually
> something to fix.
There was indeed the shortcomming that byte values 128 to 255
were treated as whitespace and mapped to "_" resp. "".
This would affect non-ASCII characters of UTF-8 or old
ISO-8859.
But the reason why gcc 5 made a difference to gcc 4.9
is not found yet.