Re: get DMI information in kernel

2006-09-01 Thread m . ehinger
Doug Ambrisko [EMAIL PROTECTED] schrieb am 25.08.2006 01:46:17: You can look at the ipmi(4) driver. It gets the IPMI HW info via SMBIOS. There is also and smbios driver as well. I tried to load the smbios driver but i got an Unable to allocate memory resource error. I now have written my

Re: get DMI information in kernel

2006-08-24 Thread Adrian Steinmann
On Wed, Aug 23, 2006 at 02:48:10PM +0200, [EMAIL PROTECTED] wrote: I can get the System Informations [using smbios] , but how do i get OEM Strings? You can poke around in BIOS memory using bios_oem_strings() from sys/i386/i386/bios.c These two show you how it's done for Soekris, Advantech, and

Re: get DMI information in kernel

2006-08-24 Thread Doug Ambrisko
[EMAIL PROTECTED] writes: | Hello, | how do i get DMI Informations (stuff displayed by dmidecode) in a kernel module? | | I need some System Information like Vendor,Model and OEM String identifying hardware on a Thinkpad. | | Can anybody give me a hint on that? You can look at the ipmi(4)

Re: get DMI information in kernel

2006-08-23 Thread m . ehinger
Stefan Bethke [EMAIL PROTECTED] schrieb am 22.08.2006 21:22:31: kenv(2) has smbios entries; they're available through getenv() and getenv_type() in the kernel. See http://www.freebsd.org/cgi/ cvsweb.cgi/src/sys/boot/i386/libi386/smbios.c for the history. OK I can get the System

get DMI information in kernel

2006-08-22 Thread m . ehinger
Hello, how do i get DMI Informations (stuff displayed by dmidecode) in a kernel module? I need some System Information like Vendor,Model and OEM String identifying hardware on a Thinkpad. Can anybody give me a hint on that? Thanks in advance, Maik

Re: get DMI information in kernel

2006-08-22 Thread Stefan Bethke
Am 22.08.2006 um 14:45 schrieb [EMAIL PROTECTED]: How do i get DMI Informations (stuff displayed by dmidecode) in a kernel module? I need some System Information like Vendor,Model and OEM String identifying hardware on a Thinkpad. kenv(2) has smbios entries; they're available through