History log of /src/usr.sbin/installboot/ext2fs.c |
Revision | | Date | Author | Comments |
1.9 |
| 23-Jun-2013 |
dholland | fsbtodb() -> FFS_FSBTODB(), EXT2_FSBTODB(), or MFS_FSBTODB() dbtofsb() -> FFS_DBTOFSB() or EXT2_DBTOFSB()
(Christos already did the lfs ones a few days back)
|
1.8 |
| 19-Jun-2013 |
dholland | Rename ambiguous macros: MAXDIRSIZE -> UFS_MAXDIRSIZE or LFS_MAXDIRSIZE NINDIR -> FFS_NINDIR, EXT2_NINDIR, LFS_NINDIR, or MFS_NINDIR INOPB -> FFS_INOPB, LFS_INOPB INOPF -> FFS_INOPF, LFS_INOPF blksize -> ffs_blksize, ext2_blksize, or lfs_blksize sblksize -> ffs_blksize
These are not the only ambiguously defined filesystem macros, of course, there's a pile more. I may not have found all the ambiguous definitions of blksize(), too, as there are a lot of other things called 'blksize' in the system.
|
1.7 |
| 22-Jan-2013 |
dholland | Stuff UFS_ in front of a few of ufs's symbols to reduce namespace pollution. Specifically: ROOTINO -> UFS_ROOTINO WINO -> UFS_WINO NXADDR -> UFS_NXADDR NDADDR -> UFS_NDADDR NIADDR -> UFS_NIADDR MAXSYMLINKLEN -> UFS_MAXSYMLINKLEN MAXSYMLINKLEN_UFS[12] -> UFS[12]_MAXSYMLINKLEN (for consistency)
Sort out ext2fs's misuse of NDADDR and NIADDR; fortunately, these have the same values in ext2fs and ffs.
No functional change intended.
|
1.6 |
| 14-Jan-2010 |
tsutsui | branches: 1.6.6; 1.6.12; Remove if defined(__RCSID) around __RCSID() macro. #include "nbtool_config.h" is enough for tools.
|
1.5 |
| 07-Jan-2010 |
tsutsui | Add a sectorsize parameter member in struct ib_params and use it where sector size (disk block size) is required, instead of DEV_BSIZE constant which means device I/O block size.
"Looks reasonable" from dholland@, and fixes tools installboot(8) on Cygwin where DEV_BSIZE != 512 as mentioned in PR toolchain/42555.
|
1.4 |
| 19-Oct-2009 |
bouyer | Remove closes 3 & 4 from my licence. Lots of thanks to Soren Jacobsen for the booring work !
|
1.3 |
| 12-Oct-2008 |
apb | Try to improve warning messages when stage2 bootstrap is not found in the root of the file systrem in which the installation is being performed.
Inspired by PR 39728 by der Mouse
|
1.2 |
| 28-Apr-2008 |
martin | Remove clause 3 and 4 from TNF licenses
|
1.1 |
| 02-Feb-2008 |
tsutsui | branches: 1.1.4; 1.1.6; Add a findstage2 function (which returns block numbers where the secondary boot is stored to embed them into the primary bootxx) for ext2fs.
Currently disabled because there is no primary boot block which supports ext2fs, but it might help someone in some day.
|
1.1.6.1 |
| 18-May-2008 |
yamt | sync with head.
|
1.1.4.2 |
| 23-Mar-2008 |
matt | sync with HEAD
|
1.1.4.1 |
| 02-Feb-2008 |
matt | file ext2fs.c was added on branch matt-armv6 on 2008-03-23 00:50:06 +0000
|
1.6.12.3 |
| 20-Aug-2014 |
tls | Rebase to HEAD as of a few days ago.
|
1.6.12.2 |
| 23-Jun-2013 |
tls | resync from head
|
1.6.12.1 |
| 25-Feb-2013 |
tls | resync with head
|
1.6.6.2 |
| 22-May-2014 |
yamt | sync with head.
for a reference, the tree before this commit was tagged as yamt-pagecache-tag8.
this commit was splitted into small chunks to avoid a limitation of cvs. ("Protocol error: too many arguments")
|
1.6.6.1 |
| 23-Jan-2013 |
yamt | sync with head
|