Chameleon

Chameleon Commit Details

Date:2011-09-01 18:23:33 (12 years 7 months ago)
Author:Cosmosis Jones
Commit:1493
Parents: 1492
Message:applied fix from oleg @ insanelymac for facetime
Changes:
M/trunk/i386/libsaio/fake_efi.c

File differences

trunk/i386/libsaio/fake_efi.c
434434
435435
436436
437
438
437439
438440
439441
......
602604
603605
604606
607
608
609
610
611
612
613
614
615
616
617
605618
606619
607620
static const char const SYSTEM_TYPE_PROP[] = "system-type";
static const char const MODEL_PROP[] = "Model";
static const char const BOARDID_PROP[] = "board-id";
static const char const BOOT_UUID_PROP[] = "boot-uuid";
static char uuidStr[64];
/*
* Get an smbios option string option to convert to EFI_CHAR16 string
// Fill /efi/device-properties node.
setupDeviceProperties(node);
//Facetime fix start
Node *ChoosenNode;
if (gBootVolume->fs_getuuid && gBootVolume->fs_getuuid (gBootVolume, uuidStr) == 0)
{
ChoosenNode = DT__FindNode("/chosen", false);
DT__AddProperty(ChoosenNode, BOOT_UUID_PROP, 64, uuidStr);
}
//Facetime fix end
}
/*

Archive Download the corresponding diff file

Revision: 1493