Chameleon

Chameleon Commit Details

Date:2012-11-20 17:17:56 (11 years 5 months ago)
Author:Cosmosis Jones
Commit:2128
Parents: 2127
Message:merged a compile.diff from 10/23
Changes:
M/trunk/i386/libsa/libsa.h
M/trunk/i386/libsaio/fake_efi.c

File differences

trunk/i386/libsaio/fake_efi.c
22
33
44
5
5
66
77
88
......
172172
173173
174174
175
175
176176
177177
178178
......
282282
283283
284284
285
285
286286
287287
288288
/*
* Copyright 2007 David F. Elliott. All rights reserved.
*/
#include "saio_types.h"
#include "libsaio.h"
#include "boot.h"
#include "bootstruct.h"
struct fake_efi_pages *fakeEfiPages = (struct fake_efi_pages*)AllocateKernelMemory(sizeof(struct fake_efi_pages));
// Zero out all the tables in case fields are added later
bzero(fakeEfiPages, sizeof(struct fake_efi_pages));
//bzero(fakeEfiPages, sizeof(struct fake_efi_pages));
// --------------------------------------------------------------------
// Initialize some machine code that will return EFI_UNSUPPORTED for
struct fake_efi_pages *fakeEfiPages = (struct fake_efi_pages*)AllocateKernelMemory(sizeof(struct fake_efi_pages));
// Zero out all the tables in case fields are added later
bzero(fakeEfiPages, sizeof(struct fake_efi_pages));
//bzero(fakeEfiPages, sizeof(struct fake_efi_pages));
// --------------------------------------------------------------------
// Initialize some machine code that will return EFI_UNSUPPORTED for
trunk/i386/libsa/libsa.h
8484
8585
8686
87
88
8789
8890
8991
#ifndef bzero
extern void bzero(void * dst, size_t len);
#else
#error bzero is defined.
#endif
extern void * memset(void * dst, int c, size_t n);

Archive Download the corresponding diff file

Revision: 2128