search for: pcitest

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

2009 Jul 19
0
[PATCH] pcitest: fix wrong statements about file locations
The module tries to access the files in the current directory. Signed-off-by: Sebastian Herbszt <herbszt at gmx.de> Index: syslinux-3.82-440-g6483c80/com32/modules/pcitest.c =================================================================== --- syslinux-3.82-440-g6483c80.orig/com32/modules/pcitest.c +++ syslinux-3.82-440-g6483c80/com32/modules/pcitest.c @@ -127,8 +127,7 @@ int main(int argc, char *argv[]) return_code = get_name_from_pci_ids(pci_domain, "pc...
2009 Sep 19
0
[RESEND][PATCH] pcitest: fix wrong statements about file locations
The module tries to access the files in the current directory. Signed-off-by: Sebastian Herbszt <herbszt at gmx.de> Index: syslinux-3.82-440-g6483c80/com32/modules/pcitest.c =================================================================== --- syslinux-3.82-440-g6483c80.orig/com32/modules/pcitest.c +++ syslinux-3.82-440-g6483c80/com32/modules/pcitest.c @@ -127,8 +127,7 @@ int main(int argc, char *argv[]) return_code = get_name_from_pci_ids(pci_domain, "pc...
2009 Nov 18
1
[RESEND][PATCH] pcitest: fix wrong statements about file locations
The module tries to access the files in the current directory. Signed-off-by: Sebastian Herbszt <herbszt at gmx.de> Index: syslinux-3.84-pre3/com32/modules/pcitest.c =================================================================== --- syslinux-3.84-pre3.orig/com32/modules/pcitest.c +++ syslinux-3.84-pre3/com32/modules/pcitest.c @@ -127,8 +127,7 @@ int main(int argc, char *argv[]) return_code = get_name_from_pci_ids(pci_domain, "pci.ids");...
2007 Mar 16
2
SYSLINUX 3.40-pre15 -- more library work, Linux-loading demo module
Hello all, I have done more work on the syslinux shuffle library. This is more higher-level work, in particular it is specific to loading Linux kernels. This stuff allows manipulating initramfs on the fly, if desired. As a demo, I have written up a module which loads a Linux kernel with all the usual stuff, but optionally adds the DHCP packet from the PXE stack into a file named
2008 Aug 01
0
[PATCH] pcitest: fix compile warnings
Fix "comparison between signed and unsigned" warnings. - Sebastian Index: syslinux-3.71-6-gb4bf076/com32/modules/pcitest.c =================================================================== --- syslinux-3.71-6-gb4bf076.orig/com32/modules/pcitest.c 2008-08-01 21:33:01.000000000 +0200 +++ syslinux-3.71-6-gb4bf076/com32/modules/pcitest.c 2008-08-01 21:35:03.000000000 +0200 @@ -60,7 +60,7 @@ } while (0); void disp...
2007 Aug 09
1
[PATCH 1/1]: Improving PCI collected informations
...from the boot device. Then it assign for each pci_device its linux kernel module. You just have to put this file in the root directory of your isolinux/pxelinux (i.e the root directory of your tfptboot server if you are using pxelinux). - Add a call to get_name_from_pci_ids() into the pcitest COM32 module - Add a call to get_module_name_from_pci_ids() into the pcitest COM32 module - Fixing typedef struct { ... } s_pci...; by struct pci... {}; - Improving comments With this patch, pcitest.c32 act like lspci plus a bonus by displaying the linux kernel module assiocated to each pci devi...
2014 Jun 04
3
lua and other modules in 6.03-pre
...es 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.
2008 Mar 08
1
[PATCH 1/1] : PCI detection code doesn't corrupt memory anymore
From : Erwan Velu <erwan.velu at free.fr> This patch fixes the pci detection stuff demo'd in pcitest.c32 - Fix a wrong type in malloc - Incorrect use of strdup This two fixes makes pcitest.c32 working far better, no more crash when running it twice. I'd like to thank Sebastian Herbszt for its reports and tests. This patch was made for 3.62-pre16 but applies fine on 3.63-pre1. Signed-off-b...
2008 Jun 24
2
Debugging
Hi! It's indeed better to open a new thread for this. So, here's my test session: $ qemu -fda extlinux.144 -s -S Then in another terminal: $ gdb extlinux.elf (gdb) set architecture i8086 (gdb) target remote localhost:1234 Remote debugging using localhost:1234 0x0000fff0 in ?? () at localboot.inc:68 68 jmp kaboom ; If we returned, oh boy... How does "jmp kaboom" get
2015 Sep 20
1
[syslinux:master] com32/modules: Split build by architecture. Add dir.c32
...s/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 pwd.c32 ifplop.c32 zzjson.c32 \ > - which...
2008 Aug 17
1
[PATCH] pci: rename get_module_name_from_pci_ids
...device*/ -void get_module_name_from_pci_ids(struct pci_device_list *pci_device_list) +void get_module_name_from_pcimap(struct pci_device_list *pci_device_list) { char line[MAX_LINE]; char module_name[21]; // the module name field is 21 char long Index: syslinux-3.71-12-ga19312b/com32/modules/pcitest.c =================================================================== --- syslinux-3.71-12-ga19312b.orig/com32/modules/pcitest.c 2008-08-16 19:39:52.000000000 +0200 +++ syslinux-3.71-12-ga19312b/com32/modules/pcitest.c 2008-08-16 19:40:37.000000000 +0200 @@ -109,7 +109,7 @@ get_name_from_pci_ids...
2009 Mar 22
2
[PATCH 1/3] pci: remove (void)cfgtype;
Remove "(void)cfgtype;" from com32/lib/pci/scan.c. - Sebastian Index: syslinux-3.74-pre11-2-g4fc8259/com32/lib/pci/scan.c =================================================================== --- syslinux-3.74-pre11-2-g4fc8259.orig/com32/lib/pci/scan.c +++ syslinux-3.74-pre11-2-g4fc8259/com32/lib/pci/scan.c @@ -441,7 +441,6 @@ struct pci_domain *pci_scan(void) int cfgtype;
2009 Jul 15
2
bug or user error - menu.c32 in syslinux-3.62-pre11
...EL ^b. hello.c32 KERNEL hello.c32 LABEL C localboot.c32 MENU LABEL ^c. localboot.c32 KERNEL localboot.c32 LABEL D meminfo.c32 MENU LABEL ^d. meminfo.c32 KERNEL meminfo.c32 LABEL E menu.c32 MENU LABEL ^e. menu.c32 KERNEL menu.c32 LABEL F pcitest.c32 MENU LABEL ^f. pcitest.c32 KERNEL pcitest.c32 LABEL G serialinfo.c32 MENU LABEL ^g. serialinfo.c32 KERNEL serialinfo.c32 LABEL H reboot.c32 MENU LABEL ^h. reboot.c32 KERNEL reboot.c32 1st, the working ones (output pasted from 3.62-pre1) : meminfo &am...
2008 Jul 13
4
[PATCH] pci: Introduce slot and function information
Introduce slot and function information to pci_device and fill them in pci_scan(). - Sebastian Index: syslinux-3.71-pre5-3-g852d962/com32/include/sys/pci.h =================================================================== --- syslinux-3.71-pre5-3-g852d962.orig/com32/include/sys/pci.h 2008-07-09 22:20:36.000000000 +0200 +++ syslinux-3.71-pre5-3-g852d962/com32/include/sys/pci.h 2008-07-09
2008 Jun 17
1
ldlinux: CurrentDir not set if syslinux.cfg is missing
If a syslinux floppy does not contain a config file (syslinux.cfg) modules are not being found unless specified with a directory prefix (e.g. /pcitest.c32). The reason is that CurrentDir is only set if there is a config file present. This is a possible regression since commit 68eefb79e2cbb590ebf958dd0c50ce00b941abd2. Before this change RootDir was used in searchdir and now it's CurrentDir unless the filename starts with '/'. Possible...
2008 Mar 08
0
[PATCH 1/1] : PCI detection code doesn't corrupt memory anymore (2nd try)
From : Erwan Velu <erwan.velu at free.fr> This patch fixes the pci detection stuff demo'd in pcitest.c32 - Fix a wrong type in malloc - Incorrect use of strdup - Replacing strncpy by strnlcpy (thx hpa) This two fixes makes pcitest.c32 working far better, no more crash when running it twice. I'd like to thank Sebastian Herbszt for its reports and tests. This patch was made for 3.62-pre16 but...
2020 Jan 22
0
[PATCH] com32/modules: introduce play module
...e b/com32/modules/Makefile index c01d6338..5e69a0d7 100644 --- a/com32/modules/Makefile +++ b/com32/modules/Makefile @@ -20,7 +20,7 @@ include $(MAKEDIR)/elf.mk # BIOS-specific modules MOD_BIOS = disk.c32 elf.c32 ethersel.c32 gpxecmd.c32 ifmemdsk.c32 ifplop.c32 \ - kbdmap.c32 kontron_wdt.c32 pcitest.c32 pmload.c32 poweroff.c32 \ + kbdmap.c32 kontron_wdt.c32 pcitest.c32 play.c32 pmload.c32 poweroff.c32 \ prdhcp.c32 pxechn.c32 sanboot.c32 sdi.c32 vesainfo.c32 # All-architecture modules diff --git a/com32/modules/play.c b/com32/modules/play.c new file mode 100644 index 00000000..68741b...
2008 Feb 13
1
menu.c32 empty label?
...y are probably about having 'LABEL' with nothing after it. I was trying to follow the example in menu.doc but somehow I'm doing it wrong. Please consider helping me figure out how to get the same resulting GUI menu without any error messages. I am using syslinux-3.61 By the way, the pcitest.c32 locks up hard on an IBM xSeries 345; I had to power-cycle the machine. It works on most of my normal desktop systems though. Maybe it doesn't work for Xeon machines? JGH -------------- next part -------------- A non-text attachment was scrubbed... Name: isolinux.cfg Type: application/oc...
2012 Nov 01
1
Syslinux 4.06 and 5.00-pre9 Binary Sizes
...rid 1 25884 Nov 1 18:08 memdisk/memdisk 1 25936 Nov 1 18:08 com32/modules/sdi.c32 1 26855 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/sy...
2016 Mar 26
2
Follow up to adding EFI boot?
...6.config bz4x4.6 bz4x4.6.config bz4x5.0 bz4x5.0.config cat.c32 COPYING cpuid.c32 cpuidtest.c32 disclaim display.c32 dmitest.c32 eltorito.sys failsafe.cfg hdt.c32 ldlinux.c32 libcom32.c32 libgpl.c32 libmenu.c32 libutil.c32 linux.c32 ls.c32 meminfo.c32 memtest menu.c32 menu.lst modules.pcimap pci.ids pcitest.c32 poweroff.c32 preimage reboot.c32 startup syslinux.cfg syslinux.dir test.png vesainfo.c32 vesamenu.c32 vpdtest.c32 Added Directory bootcd/isolinux/EFI: BOOT bootcd/isolinux/EFI/BOOT: cat.c32 cpuid.c32 cpuidtest.c32 display.c32 dmi.c32 efiboot.img hdt.c32 ldlinux.e32 libcom32.c32 libgpl.c32 li...