From e1eb61603d686c7518a590b167fac5a94063acda Mon Sep 17 00:00:00 2001 From: Michal Soltys Date: Sun, 8 Aug 2010 01:13:48 +0200 Subject: split chain into chain + iterator, expand iterators' code Patch: - splits chain into chain and iterator parts and moves them into their own com32/chain directory - extensively updates iterators' code - adjusts chain.c to use new iterators - fixes mbr/sect/hand/file allocation Signed-off-by: Michal Soltys --- com32/modules/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'com32/modules/Makefile') diff --git a/com32/modules/Makefile b/com32/modules/Makefile index 2d479132..e1b62b52 100644 --- a/com32/modules/Makefile +++ b/com32/modules/Makefile @@ -18,7 +18,7 @@ topdir = ../.. include ../MCONFIG -MODULES = chain.c32 config.c32 ethersel.c32 dmitest.c32 cpuidtest.c32 \ +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 \ -- cgit v1.2.1 From 984ece2a8024d24967797904222629f5ec319dbc Mon Sep 17 00:00:00 2001 From: Erwan Velu Date: Fri, 18 Mar 2011 22:41:15 +0100 Subject: zzjson: Adding sample module Note, this module is lacking of the reading test as the ungetc isn't available. At least, this first implementation consider that syslinux needs more the output stuff than the input one. --- com32/modules/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'com32/modules/Makefile') diff --git a/com32/modules/Makefile b/com32/modules/Makefile index 2d479132..8e061f73 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 ifplop.c32 whichsys.c32 + ifcpu.c32 cpuid.c32 cat.c32 pwd.c32 ifplop.c32 zzjson.c32 whichsys.c32 TESTFILES = -- cgit v1.2.1 From d7e6cfaa6a990eb8fe2eaabe7fad1d1c8367a7ee Mon Sep 17 00:00:00 2001 From: Matt Fleming Date: Thu, 7 Apr 2011 17:12:08 +0100 Subject: Makefile: Move Makefile fragments into mk/ Move the MCONFIG files into a mk/ directory and give them more descriptive names. This is purely a cosmetic change to make the 'include' directives a bit more coherent by making it obvious exactly which MCONFIG file we're including. For example, in com32/lua/src/Makefile we exchange the line, include ../../MCONFIG for the much more comprehensible, include $(MAKEDIR)/com32.mk Signed-off-by: Matt Fleming --- com32/modules/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'com32/modules/Makefile') diff --git a/com32/modules/Makefile b/com32/modules/Makefile index 2d479132..6951b928 100644 --- a/com32/modules/Makefile +++ b/com32/modules/Makefile @@ -16,7 +16,8 @@ ## topdir = ../.. -include ../MCONFIG +MAKEDIR = $(topdir)/mk +include $(MAKEDIR)/com32.mk MODULES = chain.c32 config.c32 ethersel.c32 dmitest.c32 cpuidtest.c32 \ disk.c32 pcitest.c32 elf.c32 linux.c32 reboot.c32 pmload.c32 \ -- cgit v1.2.1 From 32d48e29a2306f6951ff54bc6938f0a33a348479 Mon Sep 17 00:00:00 2001 From: Gene Cumm Date: Sun, 27 May 2012 09:23:07 -0400 Subject: pxechn.c32: PXE NBP chainloader Designed as a more versatile COM32-based alternative to pxechain.com. It can use the PXE RESTART or chain to the new NBP without the PXE stack. It also enables a user to boot Microsoft Windows Server 2008R2 Windows Deployment Services's wdsnbp.com from PXELINUX. Signed-off-by: Gene Cumm --- com32/modules/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'com32/modules/Makefile') diff --git a/com32/modules/Makefile b/com32/modules/Makefile index 1b2854f5..d8861c48 100644 --- a/com32/modules/Makefile +++ b/com32/modules/Makefile @@ -23,7 +23,8 @@ 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 whichsys.c32 + ifcpu.c32 cpuid.c32 cat.c32 pwd.c32 ifplop.c32 zzjson.c32 \ + whichsys.c32 pxechn.c32 TESTFILES = -- cgit v1.2.1 From 98bd851f6eb241c4303f3f27df1241651c112525 Mon Sep 17 00:00:00 2001 From: Gene Cumm Date: Sun, 18 Dec 2011 00:15:09 -0500 Subject: prdhcp.c32: Add to Makefile Signed-off-by: Gene Cumm --- com32/modules/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'com32/modules/Makefile') diff --git a/com32/modules/Makefile b/com32/modules/Makefile index d8861c48..35e297fe 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 prdhcp.c32 pxechn.c32 TESTFILES = -- cgit v1.2.1 From bdc83b0e517fbb662e8d8b02c5cf638c460dfffc Mon Sep 17 00:00:00 2001 From: Erwan Velu Date: Mon, 10 Sep 2012 17:05:03 +0200 Subject: kontron_wdt: Adding watchdog com32 module When using a Kontron ETX board, it's possible to initialize and start the watchdog during syslinux booting. This allow protecting a boot sequence with a defined timeout. Bootloader is starting, engage the watchdog and then start a default entry (typically a Linux image). If the loaded OS, feed or reinitalize the watchdog, nothing occurs unless the system will reboot Conflicts: com32/modules/Makefile --- com32/modules/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'com32/modules/Makefile') diff --git a/com32/modules/Makefile b/com32/modules/Makefile index d8861c48..30bf5252 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 kontron_wdt.c23 TESTFILES = -- cgit v1.2.1 From 5f6f0f9075b7de59bbbe420d549d3d0fc3e06587 Mon Sep 17 00:00:00 2001 From: Erwan Velu Date: Mon, 10 Sep 2012 20:21:33 +0200 Subject: kontron_wdt: Fixing makefile Typo. --- com32/modules/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'com32/modules/Makefile') diff --git a/com32/modules/Makefile b/com32/modules/Makefile index 30bf5252..0f618143 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 kontron_wdt.c23 + whichsys.c32 pxechn.c32 kontron_wdt.c32 TESTFILES = -- cgit v1.2.1 From 43432388cb7f3d6280066c142fd242195a652f8d Mon Sep 17 00:00:00 2001 From: Matt Fleming Date: Mon, 8 Oct 2012 15:45:46 +0100 Subject: com32: Add ifmemdsk.c32 to Makefile ... so that it actually gets built. This should have been added to the Makefile when ifmemdsk.c was created. Reported-by: Ady Signed-off-by: Matt Fleming --- com32/modules/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'com32/modules/Makefile') diff --git a/com32/modules/Makefile b/com32/modules/Makefile index 0f618143..24b7d283 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 kontron_wdt.c32 + whichsys.c32 pxechn.c32 kontron_wdt.c32 ifmemdsk.c32 TESTFILES = -- cgit v1.2.1