Displaying 2 results from an estimated 2 matches for "sysappend_str".
2013 Nov 19
2
[PATCH] Add filesystem UUID to SYSAPPEND for FAT
...t = 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 __cdecl core_intcall(uint8_t, const com32sys_t *, com32sys_t *);
void __cdecl core_farcall(uint32_t, const com32sys_t *, com32sys_t *);
diff --gi...
2015 Jul 02
1
boot... round 2
On 02.07.2015 11:10, Thomas Schmitt wrote:
> Hi,
>
> poma wrote:
>> - if (c <= ' ' || c == '\x7f') {
>> + if (c <= ' ' && c == '\x7f') {
>
> As Geert Stappers pointed out (and can be verified by a
> simple test program), the reinstated term
> (c <= ' ' && c == '\x7f')
>