Copy mingw support for kconfig from coreboot to libpayload

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5463 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Patrick Georgi
2010-04-20 16:00:07 +00:00
parent 682ea3cc21
commit 01c2f5b0f2
5 changed files with 5473 additions and 7 deletions

View File

@@ -7,7 +7,9 @@
#include <stdlib.h>
#include <string.h>
#include <regex.h>
#ifndef WIN32
#include <sys/utsname.h>
#endif
#define LKC_DIRECT_LINK
#include "lkc.h"
@@ -46,19 +48,27 @@ void sym_add_default(struct symbol *sym, const char *def)
void sym_init(void)
{
struct symbol *sym;
#ifndef WIN32
struct utsname uts;
#endif
static bool inited = false;
if (inited)
return;
inited = true;
#ifndef WIN32
uname(&uts);
#endif
sym = sym_lookup("UNAME_RELEASE", 0);
sym->type = S_STRING;
sym->flags |= SYMBOL_AUTO;
#ifndef WIN32
sym_add_default(sym, uts.release);
#else
sym_add_default(sym, "");
#endif
}
enum symbol_type sym_get_type(struct symbol *sym)