b7b56dd8fb
supports fixed location files. Some parts are salvaged from the pre-commit version (esp. stage and payload creation), others are completely rewritten (eg. the main loop that handles file addition) Also adapt newconfig (we don't need cbfs/tools anymore) and fix some minor issues in the cbfstool-README. Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4630 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
29 lines
533 B
C
29 lines
533 B
C
// Common/Alloc.h
|
|
|
|
#ifndef __COMMON_ALLOC_H
|
|
#define __COMMON_ALLOC_H
|
|
|
|
#include <stddef.h>
|
|
|
|
void *MyAlloc(size_t size) throw();
|
|
void MyFree(void *address) throw();
|
|
|
|
#ifdef _WIN32
|
|
|
|
bool SetLargePageSize();
|
|
|
|
void *MidAlloc(size_t size) throw();
|
|
void MidFree(void *address) throw();
|
|
void *BigAlloc(size_t size) throw();
|
|
void BigFree(void *address) throw();
|
|
|
|
#else
|
|
|
|
#define MidAlloc(size) MyAlloc(size)
|
|
#define MidFree(address) MyFree(address)
|
|
#define BigAlloc(size) MyAlloc(size)
|
|
#define BigFree(address) MyFree(address)
|
|
|
|
#endif
|
|
|
|
#endif
|