search for: sysappend_max

Displaying 2 results from an estimated 2 matches for "sysappend_max".

2013 Nov 19
2
[PATCH] Add filesystem UUID to SYSAPPEND for FAT
...sysappend.h +++ b/com32/include/syslinux/sysappend.h @@ -53,6 +53,7 @@ enum syslinux_sysappend { SYSAPPEND_BIOSVENDOR, /* BIOS vendor */ SYSAPPEND_BIOSVERSION, /* BIOS version string */ SYSAPPEND_SYSFF, /* System form factor */ + SYSAPPEND_FSUUID, /* Boot filesystem UUID */ SYSAPPEND_MAX /* Total number of strings */ }; diff --git a/core/fs/btrfs/btrfs.c b/core/fs/btrfs/btrfs.c index 16386cc..dfa9ad7 100644 --- a/core/fs/btrfs/btrfs.c +++ b/core/fs/btrfs/btrfs.c @@ -674,5 +674,6 @@ const struct fs_ops btrfs_fs_ops = { .next_extent = btrfs_next_extent, .readdir...
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') >