#
4d65a7c6 |
| 24-Nov-2023 |
Warner Losh <imp@FreeBSD.org> |
usr.sbin: Automated cleanup of cdefs and other formatting
Apply the following automated changes to try to eliminate no-longer-needed sys/cdefs.h includes as well as now-empty blank lines in a row.
usr.sbin: Automated cleanup of cdefs and other formatting
Apply the following automated changes to try to eliminate no-longer-needed sys/cdefs.h includes as well as now-empty blank lines in a row.
Remove /^#if.*\n#endif.*\n#include\s+<sys/cdefs.h>.*\n/ Remove /\n+#include\s+<sys/cdefs.h>.*\n+#if.*\n#endif.*\n+/ Remove /\n+#if.*\n#endif.*\n+/ Remove /^#if.*\n#endif.*\n/ Remove /\n+#include\s+<sys/cdefs.h>\n#include\s+<sys/types.h>/ Remove /\n+#include\s+<sys/cdefs.h>\n#include\s+<sys/param.h>/ Remove /\n+#include\s+<sys/cdefs.h>\n#include\s+<sys/capsicum.h>/
Sponsored by: Netflix
show more ...
|
Revision tags: release/14.0.0 |
|
#
1d386b48 |
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
Remove $FreeBSD$: one-line .c pattern
Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
|
Revision tags: release/13.2.0, release/12.4.0, release/13.1.0 |
|
#
58862c0b |
| 01-Feb-2022 |
John Baldwin <jhb@FreeBSD.org> |
fstyp: Remove __packed from struct exfat_de_label.
This fixes a -Waddress-of-packed-member warning about a possibly unaligned pointer from GCC 9 when calling convert_label().
__packed has to be rem
fstyp: Remove __packed from struct exfat_de_label.
This fixes a -Waddress-of-packed-member warning about a possibly unaligned pointer from GCC 9 when calling convert_label().
__packed has to be removed from struct exfat_dirent as well to fix an alignment warning when casting from a struct exfat_dirent pointer to a struct exfat_de_label pointer.
Reviewed by: cem Differential Revision: https://reviews.freebsd.org/D32144
show more ...
|
Revision tags: release/12.3.0 |
|
#
3513df4b |
| 02-Nov-2021 |
Ed Maste <emaste@FreeBSD.org> |
fstyp: fix build WITHOUT_ICONV
Reported by: Michael Dexter, Build Option Survey Sponsored by: The FreeBSD Foundation
|
Revision tags: release/13.0.0 |
|
#
ddf61156 |
| 17-Jan-2021 |
Conrad Meyer <cem@FreeBSD.org> |
fstyp(8): fix exfat detection
In the presence of high-level errors (spec violations, bad boot blocks checksum), report non-detection instead of detection.
PR: 252787 (related, but does not fully ad
fstyp(8): fix exfat detection
In the presence of high-level errors (spec violations, bad boot blocks checksum), report non-detection instead of detection.
PR: 252787 (related, but does not fully address)
show more ...
|
Revision tags: release/12.2.0, release/11.4.0 |
|
#
5ab1cb52 |
| 23-Dec-2019 |
Conrad Meyer <cem@FreeBSD.org> |
fstyp(8): Fix WITHOUT_ICONV build
Reported by: olivier
|
#
85b4c344 |
| 22-Dec-2019 |
Conrad Meyer <cem@FreeBSD.org> |
fstyp(8): Show exFAT volume labels with -l flag
exfat is fundamentally the same design as fat32. The superblock differs marginally, and there are some additional optional features irrelevant to fst
fstyp(8): Show exFAT volume labels with -l flag
exfat is fundamentally the same design as fat32. The superblock differs marginally, and there are some additional optional features irrelevant to fstype(8); the structure of dirents has changed slightly to enable, among other things, larger files; the directory entries are no longer DOS 8.3 ASCII or local 8-bit encoding, but instead explicitly UCS-2-LE.
(As a result, this change uses iconv to convert a found exfat volume label to the user's locale.)
Locating the volume label is identical to FAT32: locate the root directory and walk through dirents until you find a volume label. Like FAT32, follow the FAT chain between root directory clusters as necessary.
PR: 242225 Reported by: Victor Sudakov <vas AT sibptus.ru>
show more ...
|
Revision tags: release/12.1.0, release/11.3.0, release/12.0.0, release/11.2.0, release/10.4.0, release/11.1.0 |
|
#
d370fd1c |
| 14-Jan-2017 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r311940 through r312200.
|
#
e2660756 |
| 13-Jan-2017 |
Conrad Meyer <cem@FreeBSD.org> |
fstyp(8): Detect exFAT filesystems
Simply detect the exFAT filesystem name in the Volume Boot Record (superblock).
PR: 214908 Reported by: <vermaden at interia.pl>
|