Chameleon

Chameleon Commit Details

Date:2010-07-20 16:12:53 (13 years 9 months ago)
Author:Tamás Kosárszky
Commit:188
Parents: 187
Message:Updated CHANGES and replaced caption "Loaded" with "Read" in file read functions.
Changes:
M/trunk/i386/libsaio/msdos.c
M/trunk/CHANGES
M/trunk/i386/libsaio/hfs.c

File differences

trunk/CHANGES
1
12
23
34
- Added displaying source device and partition number for file read operations.
- Increased boot2's maximum size from 383.5k to 447.5k.
Updated stage 1 loaders for handling the new size limit.
- Added alternate format for setting the default partition. The user can specify the selected
trunk/i386/libsaio/hfs.c
300300
301301
302302
303
303
304304
305305
306306
}
getDeviceStringFromBVR(ih, devStr);
verbose("Loaded HFS%s file: [%s/%s] %d bytes.\n",
verbose("Read HFS%s file: [%s/%s] %d bytes.\n",
(gIsHFSPlus ? "+" : ""), devStr, filePath, (uint32_t)length);
return length;
trunk/i386/libsaio/msdos.c
758758
759759
760760
761
761
762762
763763
764764
}
getDeviceStringFromBVR(ih, devStr);
verbose("Loaded FAT%d file: [%s/%s] %d bytes.\n",
verbose("Read FAT%d file: [%s/%s] %d bytes.\n",
msdosfatbits, devStr, filePath, (uint32_t)( toread<0 ) ? wastoread : wastoread-toread);
free (buf);
if (toread<0)

Archive Download the corresponding diff file

Revision: 188