Files I missed earlier

This commit is contained in:
Eric W. Biederman 2002-07-02 07:14:44 +00:00
commit 7bbfacd461
2 changed files with 68 additions and 1 deletions

62
src/lib/version.c Normal file
View file

@ -0,0 +1,62 @@
#include <version.h>
#define __STR(X) #X
#define STR(X) __STR(X)
#ifndef MAINBOARD_VENDOR
#error MAINBOARD_VENDOR not defined
#endif
#ifndef MAINBOARD_PART_NUMBER
#error MAINBOARD_PART_NUMBER not defined
#endif
#ifndef LINUXBIOS_VERSION
#error LINUXBIOS_VERSION not defined
#endif
#ifndef LINUXBIOS_BUILD
#error LINUXBIOS_BUILD not defined
#endif
#ifndef LINUXBIOS_COMPILE_TIME
#error LINUXBIOS_COMPILE_TIME not defined
#endif
#ifndef LINUXBIOS_COMPILE_BY
#error LINUXBIOS_COMPILE_BY not defined
#endif
#ifndef LINUXBIOS_COMPILE_HOST
#error LINUXBIOS_COMPILE_HOST not defined
#endif
#ifndef LINUXBIOS_COMPILER
#error LINUXBIOS_COMPILER not defined
#endif
#ifndef LINUXBIOS_LINKER
#error LINUXBIOS_LINKER not defined
#endif
#ifndef LINUXBIOS_ASSEMBLER
#error LINUXBIOS_ASSEMBLER not defined
#endif
#ifndef LINUXBIOS_EXTRA_VERSION
#define LINUXBIOS_EXTRA_VERSION
#endif
const char mainboard_vendor[] = STR(MAINBOARD_VENDOR);
const char mainboard_part_number[] = STR(MAINBOARD_PART_NUMBER);
const char linuxbios_version[] = STR(LINUXBIOS_VERSION);
const char linuxbios_extra_version[] = STR(LINUXBIOS_EXTRA_VERSION);
const char linuxbios_build[] = STR(LINUXBIOS_BUILD);
const char linuxbios_compile_time[] = STR(LINUXBIOS_COMPILE_TIME);
const char linuxbios_compile_by[] = STR(LINUXBIOS_COMPILE_BY);
const char linuxbios_compile_host[] = STR(LINUXBIOS_COMPILE_HOST);
const char linuxbios_compile_domain[] = STR(LINUXBIOS_COMPILE_DOMAIN);
const char linuxbios_compiler[] = STR(LINUXBIOS_COMPILER);
const char linuxbios_linker[] = STR(LINUXBIOS_LINKER);
const char linuxbios_assembler[] = STR(LINUXBIOS_ASSEMBLER);

View file

@ -1,3 +1,5 @@
#include <mem.h>
#include <part/sizeram.h>
#include <printk.h>
#include <arch/io.h>
#include <pciconf.h>
@ -59,6 +61,7 @@ led_off(int led)
void
mainboard_fixup(void)
{
struct mem_range *mem;
unsigned long ramsize;
int errors = 0;
struct pci_dev *pcidev;
@ -69,7 +72,9 @@ mainboard_fixup(void)
led_on(10);
beep_on();
ramsize = sizeram() * 1024;
/* FIXME this is not how sizeram is intened to be called! */
mem = sizeram();
ramsize = (mem[1].sizek + mem[1].basek) * 1024;
if (ramcheck(0x00100000, ramsize, 20) != 0) {
error("DRAM Test Error");
}