Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-12-24 | fox format string; ok tedu@ | Otto Moerbeek | |
2008-11-28 | Make growfs refuse to run on a dirty filesystem, and set the filesystem to | Chris Kuethe | |
dirty on the way out so that users are forced to run fsck afterwards. The manpage politely suggested that the filesystem be checked after growing it; change it to say that fsck is required. | |||
2008-06-24 | Index: src/sbin/growfs/growfs.c | Igor Sobrado | |
=================================================================== RCS file: /cvs/src/sbin/growfs/growfs.c,v retrieving revision 1.23 diff -u -p -r1.23 growfs.c --- src/sbin/growfs/growfs.c 5 Oct 2007 13:56:14 -0000 1.23 +++ src/sbin/growfs/growfs.c 4 Jun 2008 10:10:32 -0000 @@ -2227,7 +2227,7 @@ usage(void) DBG_ENTER; - fprintf(stderr, "usage: growfs [-Ny] [-s size] special\n"); + fprintf(stderr, "usage: growfs [-Nqy] [-s size] special\n"); DBG_LEAVE; exit(1); | |||
2007-10-05 | check fgets return value | Charles Longeau | |
use strncmp instead of strcmp with help of ray@ "Looks OK" millert@ | |||
2007-09-02 | more malloc(n * m) -> calloc(n, m); from Igor Zinovik | Theo de Raadt | |
2007-07-17 | remove m68k gcc workaround now that the gcc fix is in; ok miod@ | Todd C. Miller | |
2007-07-09 | disable specific gcc optimization that triggers the gcc bug | Todd C. Miller | |
2007-07-09 | Use -O1 for m68k to work around a gcc optimizer bug | Todd C. Miller | |
2007-07-09 | remove -Wall | Todd C. Miller | |
2007-07-07 | Pull in ffs2 support and other updates from FreeBSD. OK deraadt@ | Todd C. Miller | |
2007-06-01 | ufs_daddr_t is a dead type. growfs is the only program that uses it, yet | Theo de Raadt | |
it is ffs1-aware only. therefore all the types are on disk, and thus, they are actually int32_t. ok pedro | |||
2007-05-31 | convert to new .Dd format; | Jason McIntyre | |
2007-05-29 | Updated disklabel format to support larger disks and partitions. We | Otto Moerbeek | |
free room in struct partition by packing fragment size and fragments/block more tighlty and use the resulting space to make offset and size 48 bits. For the disk part we use spare fields in struct disklabel. Kernel converts in-mem copy of the on-disk label if needed, disklabel(8) writes new version. We are careful to only change fields not used by bootloaders. Conception of basic scheme by deraadt. ok deraadt@ krw@ | |||
2007-04-23 | Remove 'cg_space' from 'struct cg'. Due to the alignment on 64-bit | Pedro Martelletto | |
architectures, CGSIZE() was returning something sligthly over one block. The 'new' fsck would round this value up to a fragment boundary, and end up trying to access memory beyond allocated space. From mickey@, okay pedro@, millert@ and otto@. | |||
2007-03-19 | Add FFS2 fields to the superblock, change file system tools to keep | Pedro Martelletto | |
accessing FFS1 fields, okay art@, quite some testing by ckuethe@, simon@ and thib@, thanks. | |||
2006-04-02 | use SEEK_* for lseek() | Theo de Raadt | |
2006-03-31 | Super block changes for FFS2, thanks to all who tested. | Pedro Martelletto | |
Silent okay after almost 3 weeks, hackers@. | |||
2006-01-14 | Add a -q flag to reduce output a la newfs, and print the raw device we are | Miod Vallat | |
operating on instead of ``growfs'' (a la newfs as well). ok millert@ pedro@ | |||
2005-12-19 | Add and use a few more constants and macros needed by UFS2 | Pedro Martelletto | |
No functional change | |||
2005-04-14 | handle snprintf out of range conditions; otto ok | Theo de Raadt | |
2004-07-28 | sort options, and fix a spurious list width; | Jason McIntyre | |
2004-03-15 | some small knf | Theo de Raadt | |
2003-11-08 | typos from Jonathon Gray; | Jason McIntyre | |
2003-10-28 | better partition finding. instead of groveling around looking for | Ted Unangst | |
a device, and then trying to guess what partition it is, use opendev(), fstat(), and DISKPART() to know what what's going on. most of the diff from Tom Cosgrove <tom.cosgrove at arches-consulting.com> | |||
2003-10-26 | fix partition selection to allow all partitions to be grown. | Ted Unangst | |
report by Mitja Muzenic <mitja at muzenic.net> | |||
2003-10-14 | getopt() returns int not char. ok pvalchev@ | Dale Rahn | |
2003-08-25 | rename struct dinode to ufs1_dinode. clears the namespace and makes | Ted Unangst | |
way for some future work. no function changes yet. help testing otto@ and markus@ | |||
2003-08-16 | more errx/warnx style \n errors; tom.cosgrove@arches-consulting.com | Theo de Raadt | |
2003-08-07 | add missing tags and make this compile with debug. | Federico G. Schwindt | |
2003-08-06 | ufs -> ffs as requested in pr3391. also rework part talking about | Ted Unangst | |
slices/partitions to have more openbsd flavor. ok jmc@ | |||
2003-08-05 | better wording for the -y option; | Jason McIntyre | |
ok fgsch@ tedu@ | |||
2003-08-04 | nuke paragraph about snapshots. we don't support them. | Federico G. Schwindt | |
henning millert ok. | |||
2003-08-04 | spelling, freebsd pr50979 via khalek on irc | Ted Unangst | |
2003-07-29 | more pretty | Ted Unangst | |
2003-07-29 | spaces | Theo de Raadt | |
2003-07-28 | tweak; | Jason McIntyre | |
ok tedu@ | |||
2003-07-28 | introducing growfs, compliments of freebsd. cleaned up slightly to obey knf. | Ted Unangst | |
requests/oks from many. |