mirror of
https://github.com/reactos/reactos.git
synced 2025-07-29 15:52:19 +00:00
Load ext2.sys driver too
svn path=/trunk/; revision=32294
This commit is contained in:
parent
b9ec75f36e
commit
f799562c4c
2 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue