Load ext2.sys driver too

svn path=/trunk/; revision=32294
This commit is contained in:
Hervé Poussineau 2008-02-11 16:46:24 +00:00
parent b9ec75f36e
commit f799562c4c
2 changed files with 5 additions and 1 deletions

View file

@ -40,7 +40,7 @@
#define BIOSCALLBUFOFFSET 0x0000 /* Buffer to store temporary data for any Int386() call */
#define FILESYSBUFFER 0x80000 /* Buffer to store file system data (e.g. cluster buffer for FAT) */
#define DISKREADBUFFER 0x90000 /* Buffer to store data read in from the disk via the BIOS */
#elif defined(_M_PPC) || defined(_M_ARM)
#elif defined(_M_PPC) || defined(_M_MIPS) || defined(_M_ARM)
extern PVOID FsStaticBufferDisk, FsStaticBufferData;
#define DISKREADBUFFER FsStaticBufferDisk
#define FILESYSBUFFER FsStaticBufferData

View file

@ -404,6 +404,10 @@ VOID RunLoader(VOID)
if (!LoadDriver(SourcePath, "fastfat.sys"))
return;
/* Load ext2.sys (could be loaded by the setup prog!) */
if (!LoadDriver(SourcePath, "ext2.sys"))
return;
/* Load additional files specified in txtsetup.inf */
if (InfFindFirstLine(InfHandle,
"SourceDisksFiles",