Chameleon

Chameleon Svn Source Tree

Root/tags/2.0/i386/util/bdmesg.c

Source at commit 1808 created 12 years 3 months ago.
By blackosx, Revise layout of package installer 'Welcome' file so it looks cleaner. Change the copyright notice to begin from 2009 as seen in the Chameleon 2.0 r431 installer. Should this date be set earlier?
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: 1808