Displaying 20 results from an estimated 776 matches for "dmi".
Did you mean:
dma
2012 Sep 19
1
[PATCH 1/1] lua: Cleaned up the dmi table structure in Lua.c32 and added all missing DMI subtables
From: Hung-chi Lihn <hlihn at google.com>
In the current Lua.c32 DMI implementation, it is a flat table with dotted
names in table entries. It also misses a number DMI sub-tables.
This patch, cleans up the DMI table structure using Lua's nested table
structure and adds all missing DMI sub-tables. If a DMI sub-table is not
supported by the hardware (not filled),...
2009 Apr 10
2
[RESEND][PATCH] gpllib: dmi: set default memory speed to "Unknown"
The speed value is available since version 2.3 of the SMBIOS specification.
Set the default speed string to "Unknown" for older versions.
- Sebastian
Index: syslinux-3.74-20-g3b80c26/com32/gpllib/dmi/dmi.c
===================================================================
--- syslinux-3.74-20-g3b80c26.orig/com32/gpllib/dmi/dmi.c
+++ syslinux-3.74-20-g3b80c26/com32/gpllib/dmi/dmi.c
@@ -496,6 +496,7 @@ void dmi_decode(struct dmi_header *h, ui
if (h->length < 0x15)...
2008 Jun 09
1
Cross-validation in R
...2184. The means are similar but SD are
different.
Questions are:
(1) how the $delta is computed in the cv.glm? In the home-made version, I
simply use ((Yobs - Ypred)^2)/n. The equation might be correct because the
mean is similar.
(2) in the cv.glm, I have the impression the system is using glm0.dmi that
was generated using all the data points whereas in my homemade version I
only use the "test" database. I am confused if the cv.glm generates new glm
models for each simulation of if it uses the one provided?
(3) is the cv.glm sampling using replacement = TRUE or not?
Thanks in adva...
2015 Feb 10
0
[PATCH 3/6] gpllib: fix sizeof(char *) misuse
...o take the length of the
buffer as a parameter.
Fixes the warning: argument to 'sizeof' in 'snprintf' call is the same
expression as the destination; did you mean to provide an explicit
length?
Signed-off-by: Jonathan Boeing <jonathan.n.boeing at gmail.com>
---
com32/gpllib/dmi/dmi.c | 24 ++++++++++++++----------
1 file changed, 14 insertions(+), 10 deletions(-)
diff --git a/com32/gpllib/dmi/dmi.c b/com32/gpllib/dmi/dmi.c
index ef84e1e..5a25b41 100644
--- a/com32/gpllib/dmi/dmi.c
+++ b/com32/gpllib/dmi/dmi.c
@@ -100,20 +100,20 @@ static const char *dmi_system_reset_boot...
2005 Aug 05
3
Survey: SYSLINUX: 2.13 works, 3.0x don't
Okay, this applies particularly to SYSLINUX, not ISO/PXE/EXTLINUX.
If you have a system on which 2.13 boots and 3.0x don't, I would like to
get as much information as possible about it. In particular, I would
like to know:
- What device are you booting from (floppy, USB, IDE harddrive...)
- Motherboard manufacturer/model
- CPU manufacturer/model (a dump of /proc/cpuinfo would
2006 Aug 14
0
First attempt to use DMI in a com32 module
This is a first attempt to make the DMI table accessible in a com32 module.
This patch applies to the latest syslinux (3.20-pre11).
It will add some headers in com32/include/dmi and three files in
com32/modules/.
dmi.c
This is the core program that makes the dmi tables accessible.
dmi_utils.c
Just a small util file to display...
2020 Sep 28
1
Failed to get udev device for syspath '/sys/devices/virtual/dmi/id'
Hi,
I'm facing an issue with libvirt and the LIBXL driver, failing when searching for DMI data in /sys.
info : libvirt version: 5.0.0, package: 4+deb10u1 (Guido Günther <agx@sigxcpu.org> Thu, 05 Dec 2019 00:22:14 +0100)
error : udevGetDMIData:1719 : internal error: Failed to get udev device for syspath '/sys/devices/virtual/dmi/id' or '/sys/class/dmi/id'
error : l...
2011 Oct 16
1
CentOS 6.0: panic installing i386 on old Acer Desktop
...if I can boot
this with output to a serial port.
I'll be checking that.
If someone has figured out how to capture the output in my situation
during initial system install, I'm all "ears".
The system still boots the old CentOS 4.8 (first boots in around a ...
year(?)) and I did dmidecode and a couple other short commnds that I
hope is enough for someone to offer further direction or suggestions.
Apologies for the size but it's been so long since I did any low-level
stuff I was afraid I'd snip something important.
I tried, based on *old* memories, adding kernel argum...
2014 Nov 22
3
Use z size specifier for printf-ing size_t variable
...mmap_type(amap, where, len) != SMT_FREE) {
- printf("Memory segment at 0x%08x (len 0x%08x) is unavailable\n",
+ printf("Memory segment at 0x%08x (len 0x%08zx) is unavailable\n",
where, len);
goto bail; /* Memory region unavailable */
}
diff --git a/com32/sysdump/dmi.c b/com32/sysdump/dmi.c
index ce25efa..7c39b7b 100644
--- a/com32/sysdump/dmi.c
+++ b/com32/sysdump/dmi.c
@@ -65,7 +65,7 @@ static void dump_smbios(struct upload_backend *be, size_t dptr)
struct smbios_header smx = *smb;
char filename[32];
- snprintf(filename, sizeof filename, "...
2008 Dec 10
0
[PATCH 2/2] COM32: lua - add dmi library
Hi again,
this is the second part of the patch extending lua. This time it adds
the dmi functions (com32/modules/dmi*) to lua:
dmi.supported(): returns true if DMI is supported
dmi.gettable(): returns array of key, value pairs containing system info
Sorry, but this patch does not apply cleanly if [PATCH 1/2] was applied
before. There's just one line to fix in com32/lua/src/li...
2013 Jul 12
1
Unable to boot with syslinux-5.1x from git
Hi,
Matt Fleming wrote:
> ld: libpng/pngrtran.o: warning: relocation against `png_do_read_filler' in readonly section `.text'.
> ld: warning: creating a DT_TEXTREL in object.
>
> Looks like your files aren't position-independent. What does,
>
> file com32/gpllib/dmi/dmi.o
>
> say?
# file com32/gpllib/dmi/dmi.o
com32/gpllib/dmi/dmi.o: ELF 32-bit LSB relocatable, Intel 80386,
version 1 (SYSV), not stripped
--
Regards,
Igor
2014 Sep 25
1
localboot.lua: a lua.c32 script that uses DMI data to decide between localboot/chainloading
...en BIOSes and won't
boot with the LOCALBOOT command, and need to be booted with chain.c32
instead. We also have encountered some computers where it works only the
other way - chainloading does not work, while LOCALBOOT works fine.
To solve this issue, we have written a Lua script that uses the DMI data
of the computer to decide whether it should be booted with LOCALBOOT or
chain.c32. The scripts defaults to LOCALBOOT, but has a list of
exceptions for computers that require chainloading. Over the past few
years, we've collected quite a few of these exceptions, and I thought
that other use...
2006 Jul 07
0
[RFC] [PATCH] HVM SMBIOS support 0/6
...This is
needed by many systems management applications, most often to get a
useful UUID inside of an HVM domU.
They have been tested on changeset
10486:5610d916ad1be231bd6b6c7ae26665374623a90c
of xen-unstable.
Any comments or help would be greatly appreciated.
Andrew
=====
sample output from dmidecode:
# dmidecode 2.7
SMBIOS 2.4 present.
10 structures occupying 256 bytes.
Table at 0x0009F01F.
Handle 0x0000, DMI type 0, 24 bytes.
BIOS Information
Vendor: Xen
Version: 3.0-unstable
Release Date: Not Specified
Address: 0xE8000
Runtime Size: 96 kB
ROM Size: 64 kB
Characteristics:
BIOS...
2010 Nov 01
0
Bug#602109: [linux-2.6] 1 multicall(s) failed: cpu 0
...Xen dom0 suppor
ii xen-hypervisor-4.0-i386 4.0.1-1~bpo50+1 The Xen Hypervisor on i386
ii xen-linux-system-2.6.32-bpo.5-xen-686 2.6.32-26~bpo50+1 Xen system with
Linux 2.6.32 on modern PCs (
ii xen-tools 4.1-1~bpo50+1 Tools to manage Debian XEN virtual servers
ii xen-utils-4.0 4.0.1-1~bpo50+1 XEN administrative tools
ii xen-utils-common 4.0.0-1~bpo50+1 XEN administrative tools ? common files
ii xenstore-utils 4.0.1-1~bpo50+1 Xenstore utilities for Xen
xen[1] and xen-common[2] are rebuild on lenny without any changes from
testing.
On an HP DL160G6 (with Adaptec 5405 and additional Intel PRO/1...
2015 Jan 25
0
Use z size specifier for printf-ing size_t variable
...ot;Memory segment at 0x%08x (len 0x%08x) is unavailable\n",
> + printf("Memory segment at 0x%08x (len 0x%08zx) is unavailable\n",
> where, len);
> goto bail; /* Memory region unavailable */
> }
> diff --git a/com32/sysdump/dmi.c b/com32/sysdump/dmi.c
> index ce25efa..7c39b7b 100644
> --- a/com32/sysdump/dmi.c
> +++ b/com32/sysdump/dmi.c
> @@ -65,7 +65,7 @@ static void dump_smbios(struct upload_backend *be, size_t dptr)
> struct smbios_header smx = *smb;
> char filename[32];
>
> - snpr...
2011 Feb 17
8
[Bug 34371] New: [natty] Video corruption on kernel 2.6.38-1-generic (and on -3) and nVidia Corporation GT216 [GeForce GT 230M] (rev a2)
...f video
acceleration.
DistroRelease: Ubuntu 11.04
Package: xorg 1:7.6~3ubuntu3
ProcVersionSignature: Ubuntu 2.6.38-1.28-generic 2.6.38-rc2
Uname: Linux 2.6.38-1-generic x86_64
Architecture: amd64
CompizPlugins: No value set for
`/apps/compiz-1/general/screen0/options/active_plugins'
DRM.card0.HDMI.A.1:
status: disconnected
enabled: disabled
dpms: Off
modes:
edid-base64:
DRM.card0.LVDS.1:
status: disconnected
enabled: disabled
dpms: Off
modes:
edid-base64:
DRM.card0.VGA.1:
status: disconnected
enabled: disabled
dpms: Off
modes:
edid-base64:
Date: Sat Feb 5 13:52:32 2011
Dis...
2014 Nov 10
1
pxelinux 6.03 lua module not loading syslinux.c32 dmi.c32 etc
I'm running pxelinux configured to use the path /bios on the tftp server for all the comboot files.
The problem is dmi,syslinux,vesa etc modules are not being loaded in lua.
Syslinux.version() returns not found in global index as does dmi.supported()
For k,v in pairs(package.loaded) do print (k,v) end; shows that these modules that are normally loaded by lua are not loading.
I got an idea to configure my syslinux...
2011 May 24
7
[Bug 37549] New: Dell Studio XPS 1340 - fails to enter suspend mode
...r a bit.
v2.6.35.12-maverick mainline kernel, with this kernel the system boots but when
trying to enter graphical mode becomes unresponsive, no keyboard, network ping
or display (screen is black).
Here is some relevant information on the system, please let me know if any more
tests are needed.
dmi.bios.date: 09/08/2009
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A11
dmi.board.name: 0K183D
dmi.board.vendor: Dell Inc.
dmi.board.version: A11
dmi.chassis.asset.tag: 1234567890
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: A11
dmi.modalias:
dmi:bvnDellInc.:bvrA11:bd09/08/...
2009 Nov 12
12
no memory entry in main menu
Ralf Carl a ?crit :
> Hello Erwan,
>
> i just want to inform you, that there is still no memory entry in the
> main menu (hdt_034 & hdt_035).
> Typing in DMI mode "show module 0" etc. the memory modules are listet.
You mean the menu mode isn't working whereas the cli mode works ?
Do you confirm this ,
IF yes, It seems the Type 6 (the only one you have as you lack of type
17) isn't present from the menu as the commit only add it to the...
2013 Aug 28
7
[PATCH] x86/apic: remove DMI checks in bigsmp driver for obsolete systems
The DMI checks that force the use of the bigsmp APIC driver are for
systems that are no longer supported by Xen (32-bit x86).
Signed-off-by: Matt Wilson <msw@amazon.com>
Cc: Keir Fraser <keir@xen.org>
Cc: Jan Beulich <jbeulich@suse.com>
Cc: Andrew Cooper <andrew.cooper3@citrix.com>...