- Create an empty configuration tree for Xbox machine, so that ReactOS-Xbox is able to boot further.

svn path=/trunk/; revision=31134
This commit is contained in:
Aleksey Bragin 2007-12-10 21:11:16 +00:00
parent 4529c9c1ff
commit f64694318d

View file

@ -19,9 +19,28 @@
#include <freeldr.h>
#define NDEBUG
#include <debug.h>
VOID
XboxHwDetect(VOID)
{
PCONFIGURATION_COMPONENT_DATA SystemKey;
DbgPrint((DPRINT_HWDETECT, "DetectHardware()\n"));
/* Create the 'System' key */
FldrCreateSystemKey(&SystemKey);
/* Set empty component information */
FldrSetComponentInformation(SystemKey,
0x0,
0x0,
0xFFFFFFFF);
/* TODO: Build actual xbox's hardware configuration tree */
DbgPrint((DPRINT_HWDETECT, "DetectHardware() Done\n"));
}
/* EOF */