diff --git a/reactos/boot/freeldr/freeldr/arch/i386/xboxhw.c b/reactos/boot/freeldr/freeldr/arch/i386/xboxhw.c index f310a47febf..7ac6f2622e5 100644 --- a/reactos/boot/freeldr/freeldr/arch/i386/xboxhw.c +++ b/reactos/boot/freeldr/freeldr/arch/i386/xboxhw.c @@ -19,9 +19,28 @@ #include +#define NDEBUG +#include + 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 */