search for: dmitest

Displaying 20 results from an estimated 55 matches for "dmitest".

2006 Aug 28
2
Extending dmitest to check for Long Mode (aka 64 versus 32 bit)
Hi Erwan, First off, many thanks for your wonderful addition to syslinux: dmitest.c32 and another thankyou to hpa for it's inclusion. I need to ask if you are missing a couple of definitions in dmi_processor.h, specifically, the "long mode" flag. I need to use this flag to determine whether a machine is 64-bit capable or not. There is a great web page explaining...
2012 Oct 19
3
[PATCH 0/3] elflink fixes
From: Matt Fleming <matt.fleming at intel.com> The first two patches in this series are fixes for bugs reported by someone in #syslinux. The third makes dmitest.c32 actually wait for user input. If no one has any objections/concerns, I'll pull this into the official elflink branch. Matt Fleming (3): core: Print error message if we don't load ldlinux.c32 Clean up $(GPLLIB) leak ldlinux: Use stdcon instead of rawcon for the console Makefile...
2014 Jun 04
3
lua and other modules in 6.03-pre
...Lua c32 modules in 6.03-pre*: cmenu.c32: cpu.c32: dhcp.c32: dmi.c32: lfs.c32: pci.c32: syslinux.c32: vesa.c32: I am wondering whether the following modules, which are _not_ new and are also included in 6.03-pre*, have _any_ relation either to the above list or to Lua: cpuid.c32: cpuidtest.c32: dmitest.c32: pcitest.c32: vesainfo.c32: TIA, Ady.
2015 Sep 20
1
[syslinux:master] com32/modules: Split build by architecture. Add dir.c32
...gt; diff --git a/com32/modules/Makefile b/com32/modules/Makefile > index 13cc63b..c01d633 100644 > --- a/com32/modules/Makefile > +++ b/com32/modules/Makefile > @@ -18,13 +18,22 @@ > VPATH = $(SRC) > include $(MAKEDIR)/elf.mk > > -MODULES = config.c32 ethersel.c32 dmitest.c32 cpuidtest.c32 \ > - disk.c32 pcitest.c32 elf.c32 linux.c32 reboot.c32 pmload.c32 \ > - meminfo.c32 sdi.c32 sanboot.c32 ifcpu64.c32 vesainfo.c32 \ > - kbdmap.c32 cmd.c32 vpdtest.c32 host.c32 ls.c32 gpxecmd.c32 \ > - ifcpu.c32 cpuid.c32 cat.c32...
2006 Aug 14
0
First attempt to use DMI in a com32 module
...le. 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 some more complicated messages dmitest.c The program that show how to use the dmi inside a com32 module. The way the API works : dmi_interate() tells if a DMI table is present or not. s_dmi is the structure that contains the dmi informations. parse_dmitable(&dmi) fills a dmi structure with the elements founds in the table. An...
2008 Oct 15
1
Syslinux Digest, Vol 67, Issue 10
...com32, years ago, I managed to write a com32 module to tell PXE users their MAC address, machine make, model and whether they were on a 32 or 64 bit processor. Users found this very useful when trying to re-image the 8,000 odd boxes spread round the globe. This was hugely based on Erwan Velu's dmitest.c circa 3.20. I decided I'd better update my com32 module and compile it against 3.7x but I found that the "lm" flag which I relied on to determine 32/64 bit was gone from dmi_processor.h. I then thought the solution was obviously to use the cpuid.h code which had the "lm"...
2012 Nov 01
1
Syslinux 4.06 and 5.00-pre9 Binary Sizes
...55 Nov 1 18:08 core/pxelinux.0 1 28496 Nov 1 18:08 com32/modules/elf.c32 1 28496 Nov 1 18:08 com32/modules/ethersel.c32 1 29200 Nov 1 18:08 com32/modules/pxechn.c32 1 32356 Nov 1 18:08 com32/modules/pcitest.c32 1 34140 Nov 1 18:08 com32/mboot/mboot.c32 1 36632 Nov 1 18:08 com32/modules/dmitest.c32 1 38568 Nov 1 18:08 com32/chain/chain.c32 1 40304 Nov 1 18:08 com32/sysdump/sysdump.c32 1 54624 Nov 1 18:09 dos/syslinux.com 1 55140 Nov 1 18:08 com32/menu/menu.c32 1 87040 Nov 1 18:09 win32/syslinux.exe 1 89882 Nov 1 18:08 gpxe/gpxelinux.0 1 90624 Nov 1 18:09 win64/syslinux64.exe...
2017 Jul 01
0
[PATCH] Add new hash.c32 module
...le b/com32/modules/Makefile --- syslinux-6.04-pre1/com32/modules/Makefile Fri Mar 04 02:09:01 2016 +++ b/com32/modules/Makefile Fri Jun 30 20:09:01 2017 @@ -25,9 +25,9 @@ # All-architecture modules MOD_ALL = cat.c32 cmd.c32 config.c32 cptime.c32 cpuid.c32 cpuidtest.c32 \ - debug.c32 dir.c32 dmitest.c32 hexdump.c32 host.c32 ifcpu.c32 \ - ifcpu64.c32 linux.c32 ls.c32 meminfo.c32 pwd.c32 reboot.c32 \ - vpdtest.c32 whichsys.c32 zzjson.c32 + debug.c32 dir.c32 dmitest.c32 hash.c32 hexdump.c32 host.c32 \ + ifcpu.c32 ifcpu64.c32 linux.c32 ls.c32 meminfo.c32 pwd.c32 \ + reboot.c32 vpdte...
2008 Dec 04
3
Patch: Allow args with spaces
...will result in args[]: ESPRIMO P5925 memdisk initrd=/dos/FSC-E5925.img raw instead of (current code): "ESPRIMO P5925" "memdisk initrd=/dos/FSC-E5925.img raw" What's that good for? Example code can be found in dmiselest.c32 (second patch). This c32 module uses code from dmitest to check the current hardware it's running on. You can specify a list of known "system names" and a command line to execute if the machine type matches. The test scripts is used to apply BIOS updates to different kinds of machines, without the need to select the correct image yoursel...
2019 Aug 16
2
Question on upgrading to syslinux 6.04?
On 16 Aug 2019 at 5:40, Ady Ady via Syslinux wrote: To: "syslinux at zytor.com" <syslinux at zytor.com> Date sent: Fri, 16 Aug 2019 05:40:45 +0000 Subject: Re: [syslinux] Question on upgrading to syslinux 6.04? From: Ady Ady via Syslinux <syslinux at syslinux.org> Send reply to: Ady Ady <ady-sf at hotmail.com> > > I've
2014 Aug 24
1
Library_modules (list of & wiki write permissions)
...odules | libcom32.c32 |cptime.c32 |com32/modules | libutil.c32 |cpuid.c32 |com32/modules | |cpuidtest.c32 |com32/modules | libgpl.c32 |debug.c32 |com32/modules | |disk.c32 |com32/modules | libgpl.c32 |dmitest.c32 |com32/modules | libgpl.c32 |elf.c32 |com32/modules | libcom32.c32 |ethersel.c32 |com32/modules | libcom32.c32 |gpxecmd.c32 |com32/modules | libcom32.c32 |hexdump.c32 |com32/modules | libcom32.c32 |host.c32...
2012 Nov 23
1
[PATCH] nictype.c32: PXELINUX module to display UNDI NIC bus type...
...2 files changed, 117 insertions(+), 1 deletion(-) create mode 100644 com32/modules/nictype.c diff --git a/com32/modules/Makefile b/com32/modules/Makefile index f110e58..10c6688 100644 --- a/com32/modules/Makefile +++ b/com32/modules/Makefile @@ -24,7 +24,8 @@ MODULES = config.c32 ethersel.c32 dmitest.c32 cpuidtest.c32 \ meminfo.c32 sdi.c32 sanboot.c32 ifcpu64.c32 vesainfo.c32 \ kbdmap.c32 cmd.c32 vpdtest.c32 host.c32 ls.c32 gpxecmd.c32 \ ifcpu.c32 cpuid.c32 cat.c32 pwd.c32 ifplop.c32 zzjson.c32 \ - whichsys.c32 prdhcp.c32 pxechn.c32 kontron_wdt.c32 ifmemdsk.c32 + w...
2012 Oct 03
1
[PATCH] pxedump.c32: Simple PXE cached packet dumping
...files changed, 242 insertions(+), 1 deletion(-) create mode 100644 com32/modules/pxedump.c diff --git a/com32/modules/Makefile b/com32/modules/Makefile index d8861c4..53bae4f 100644 --- a/com32/modules/Makefile +++ b/com32/modules/Makefile @@ -24,7 +24,7 @@ MODULES = config.c32 ethersel.c32 dmitest.c32 cpuidtest.c32 \ meminfo.c32 sdi.c32 sanboot.c32 ifcpu64.c32 vesainfo.c32 \ kbdmap.c32 cmd.c32 vpdtest.c32 host.c32 ls.c32 gpxecmd.c32 \ ifcpu.c32 cpuid.c32 cat.c32 pwd.c32 ifplop.c32 zzjson.c32 \ - whichsys.c32 pxechn.c32 + whichsys.c32 pxechn.c32 px...
2010 Jul 01
2
[PATCH] ifplop.c32: Detect if PLoP USB/CD INT13h hook is enabled/disabled
...changed, 167 insertions(+), 1 deletions(-) create mode 100644 com32/modules/ifplop.c diff --git a/com32/modules/Makefile b/com32/modules/Makefile index 79018df..f42ce96 100644 --- a/com32/modules/Makefile +++ b/com32/modules/Makefile @@ -22,7 +22,7 @@ MODULES = chain.c32 config.c32 ethersel.c32 dmitest.c32 cpuidtest.c32 \ disk.c32 pcitest.c32 elf.c32 linux.c32 reboot.c32 pmload.c32 \ meminfo.c32 sdi.c32 sanboot.c32 ifcpu64.c32 vesainfo.c32 \ kbdmap.c32 cmd.c32 vpdtest.c32 host.c32 ls.c32 gpxecmd.c32 \ - ifcpu.c32 cpuid.c32 cat.c32 pwd.c32 + ifcpu.c32 cpuid.c32 cat.c32 pw...
2009 Mar 20
0
isolinux problems with more than a bunch of files in the iso root
...://test.sdinet.de/isolinux/debian-etch-3.31.iso Iso-Image broken: http://test.sdinet.de/isolinux/debian-lenny-3.71.iso Iso-Image broken: http://test.sdinet.de/isolinux/git-18734bb0.iso These images were created with the script available at http://test.sdinet.de/isolinux/create_testiso and just use dmitest.c32 as the single target - as the problem happens very early the used target does not matter, I just chose something simple here. (Created using the same genisoimage 1.1.9 for building all of them) Screenshot (done with VMWare) for isolinux-git .iso with enabled debug messages and debug tracers:...
2006 Aug 14
0
[PATCH 1/1] : Adding a com32 module to handle DMI
...new com32 module named dmi. It can parse DMI Hanldes number 0,1,2,3,4. Using a very simple API, you can read the values of the following "Handles" - BIOS - CHASSIS - SYSTEM - BASE_BOARD - PROCESSOR It's possible and easy to extend to many other Handles. A sample code program called dmitest shows how you can use and display this structures. The codes is mainly taken from the Linux Kernel and the smartmontool projects. Both are GPL, my code too. Testing and feedback are welcomed. Signed-off-by:Erwan Velu <erwan.velu at free.fr> -------------- next part -------------- A non-t...
2010 Jul 06
0
patch syslinux DMI 4.01
Bonjour Erwan Juste pour me remettre, on a gagn? ensemble la petite finale baby foot ? Grenoble chez HP, fin 2009 ;-) J'ai commenc? ? jouer avec le module LUA de syslinux et suis tomb? sur des plantages sur les fonctions DMI M?me probl?me avec le module dmitest, mais pas avec HDT Probl?me plus ou moins aleatoire selon les hardware (bug plus souvent constat? en VMware, mais pas sur mon portable) En creusant un peu, j'ai identifi? le probleme : un manque dans l'initialisation des structures. HDT n'a pas le probleme car tu initialises globalemen...
2014 Jun 04
0
lua and other modules in 6.03-pre
...> dmi.c32: > lfs.c32: > pci.c32: > syslinux.c32: > vesa.c32: > > I am wondering whether the following modules, which are _not_ new and > are also included in 6.03-pre*, have _any_ relation either to the > above list or to Lua: > > cpuid.c32: > cpuidtest.c32: > dmitest.c32: > pcitest.c32: > vesainfo.c32: Ick. A naming collision waiting to happen. syslinux.c32 lacks a main so resembles a library. I'd guess the test are the same. --Gene
2009 Mar 16
1
menu.c32: CPU Fault on console 0
Hi, I hit a rather strange problem. I'm PXE booting an IBM Blade. It has a BMC which provides serial over LAN via the BladeCenter management module. Its BIOS has a "Console Redirection" option, which dumps its VGA console messages to a serial port. "Redirection after Boot" is disabled, but pxelinux runs "before boot", so everything arrives twice on the serial
2012 Nov 04
1
hexdump.c32 for Syslinux 5.00-pre9
...2 files changed, 247 insertions(+), 1 deletion(-) create mode 100644 com32/modules/hexdump.c diff --git a/com32/modules/Makefile b/com32/modules/Makefile index ee428e3..9cf4da8 100644 --- a/com32/modules/Makefile +++ b/com32/modules/Makefile @@ -24,7 +24,8 @@ MODULES = config.c32 ethersel.c32 dmitest.c32 cpuidtest.c32 \ meminfo.c32 sdi.c32 sanboot.c32 ifcpu64.c32 vesainfo.c32 \ kbdmap.c32 cmd.c32 vpdtest.c32 host.c32 ls.c32 gpxecmd.c32 \ ifcpu.c32 cpuid.c32 cat.c32 pwd.c32 ifplop.c32 zzjson.c32 \ - whichsys.c32 prdhcp.c32 pxechn.c32 kontron_wdt.c32 ifmemdsk.c32 + w...