Chameleon

Chameleon Svn Source Tree

Root/branches/meklortOld/i386/util/bdmesg.c

Source at commit 1146 created 12 years 10 months ago.
By azimutz, Sync with trunk (r1145). Add nVidia dev id's, 0DF4 for "GeForce GT 450M" (issue 99) and 1251 for "GeForce GTX 560M" (thanks to oSxFr33k for testing).
1/*
2 * BooterLog Dump Tool, part of the Chameleon Boot Loader Project
3 *
4 * Copyright 2010 by Islam M. Ahmed Zaid. All rights reserved.
5 *
6 */
7
8#include <stdio.h>
9#include <stdint.h>
10#include <string.h>
11#include <stdlib.h>
12
13#include "IOKit/IOKitLib.h"
14
15
16int main(int argc, char *argv[])
17{
18io_registry_entry_t root = IORegistryEntryFromPath(kIOMasterPortDefault, "IOService:/");
19if (!root)
20{
21printf("IORegistryEntry \"IOIOService:/\" not found.\n");
22return 0;
23}
24
25CFTypeRef bootLog = IORegistryEntryCreateCFProperty(root, CFSTR("boot-log"), kCFAllocatorDefault, 0);
26if (!bootLog)
27{
28printf("\"boot-log\" property not found.\n");
29return 0;
30}
31//CFShow(bootLog);
32const UInt8 *msglog = CFDataGetBytePtr((CFDataRef)bootLog);
33if (msglog)
34printf("%s\n", msglog);
35
36return 0;
37}
38
39

Archive Download this file

Revision: 1146